Slashdot Mirror


P2P Web searches

prostoalex writes "Researchers at UCLA are looking for easier ways to implement Web searches by using peer-to-peer techniques to decrease the workload. 'Queries need to be passed along only a few links rather than flooded throughout the network, which keeps search-related traffic low,' reports Technology Research News."

29 of 80 comments (clear)

  1. If it's P2P... by thebudgie · · Score: 5, Insightful

    The searching load on servers might be reduced i suppose. But from my experiences with P2P searches are long and slow. How would this help exactly?

    1. Re:If it's P2P... by A1kmm · · Score: 3, Interesting

      From the article...
      > In this last step, all of the initially queried
      > nodes percolate the query throughout the network
      > so that the query is guaranteed to reach a core
      > sub-network of highly-connected nodes. "Since a
      > copy of the query is in one of the nodes in the
      > core network, and since the content list of a
      > node is cached at one of these high-degree
      > nodes, one is guaranteed to find the content as
      > long as at least one node in the network has
      > it," said Roychowdhury.
      So in other words, the "major sharers", i.e. nodes which are "high degree", i.e. have a lot of connections, form the "core network", and collectively host the entire index. However, this is starting to lose the advantages of being a peer-to-peer network. Obviously, you can't have it both ways.

      --
      X-Has-Sig: yes
  2. I foresee.. by Gentlewhisper · · Score: 5, Interesting

    Maybe in future Google will implement a small server in our "Gmail notifier" application, and each time we search for something on google, it will cache some of the results, and should anyone close by ask for it, just forward the old results to them.

    Save the server load on the main google server!

    **Plus maybe some smart guy will figure out how to trade mp3s over the GoOgLe-P2p network! :D

    1. Re:I foresee.. by LostCluster · · Score: 4, Insightful

      Save the server load on the main google server!

      Error 404: No such main server found.

      Google is such a distributed computing network that when a single computer in a cluster fails, they've discovered that it'd cost them more to go to the broken node and repair it than the vaule of the computing resources they've lost. Google just lets such failed computers sit useless, and waits until there are enough downed computers to justify sending in the repair people.

      Besides, P2P services to respond to your Google query would mean that your query would end up in the hands of a dreaded "untrusted third party", and I don't think anybody here wants all of their searches available to their next door neighbor.

    2. Re:I foresee.. by Phleg · · Score: 2, Informative

      Google is such a distributed computing network that when a single computer in a cluster fails, they've discovered that it'd cost them more to go to the broken node and repair it than the vaule of the computing resources they've lost.

      This is nothing more than just a myth. They continually have job postings looking for Data Center Technicians, whose entire job is to crawl through their massive cluster and repair downed nodes. I should know, I interviewed for the position just a month or two ago.

      --
      No comment.
    3. Re:I foresee.. by jackbird · · Score: 2, Informative
      Sad to see it gone.

      me too.

    4. Re:I foresee.. by mrogers · · Score: 3, Interesting

      Actually, I'd rather have my next door neighbour know what I was searching for (and vice versa) than have any single person know what *everyone* was searching for. Power corrupts.

  3. Last time I checked, by rasafras · · Score: 4, Funny

    Google still works.

    Results 1 - 10 of about 6,290,000 for p2p [definition]. (0.19 seconds)

    1. Re:Last time I checked, by LostCluster · · Score: 4, Informative

      Not to mention, Google is often better at searching a given website than the search untility a site tries to provide on its own. TechTV host Leo Laporte used to frequently searching Google with the "Site:techtv.com" marker included to find deeply-hidden articles on the site, because it'd be easier to search that way than using TechTV's own search boxes.

      Google's even encuraging this behavior by linking their free websearch feature with their AdSense service, and giving publishers a share of the AdWords revenue when a search that came from their site results in an ad click.

  4. Re:Too many people trying to use p2p by Bryan+Gividen · · Score: 2

    The old ways of doing things still work.

    Which is why I still prefer walking everywhere, using chalk and slate for taking notes, and refuse to use a zipper...

    In other words, wtf?!?!

  5. UCLA discovers ultrapeers! by Magila · · Score: 5, Interesting

    From a quick read of the article it sounds like what they've done is implemented a slightly more sophistcated/less deterministic version of the ultrapeer/hub system already in use by Gnutella/G2 Basicaly quereies are routed such that they are guarenteed to reach a "highly-connected node" which is the equivalent of an ultrapeer/hub node. The main difference is the folks at UCLA have come up with a novel method of picking ultrapeers, but the end result isn't much different.

    1. Re:UCLA discovers ultrapeers! by shadowmatter · · Score: 4, Interesting

      Not quite... Note: I'm about to karma whore here.

      About a year ago, right before starting my senior year at UCLA, I was offered an opportunity to work on this P2P project. At the time it was called "Gnucla," and was being developed by the UCLA EE department's Complex Networks Group. I turned it down, because I had already committed to working on a p2p system in the CS department. But since in all honesty their research was more novel than ours (and my friend was in their group), I subscribed to their mailing list and kept informed on what they were doing.

      What they've done isn't find a novel way of picking ultrapeers. Let's review what motivated ultrapeers -- in the beginning, there was Gnutella. Gnutella was a power-law based network. What this meant is that there was no real "topology" to it, unlike peer to peer networks that were emerging and based on Distributed Hash Tables (such as Chord, Pastry, Kademlia [on which Coral is based]). It had nice properties: a low diameter, and very resilient to attacks common on p2p networks. (Loads of peers dropping simultaneously could not partition the network, unlike, say, in Pastry -- unless they are high degree nodes.) But the big problem was that to search the network, you had to flood it. And that generated so much traffic that the network eventually tore itself apart under its own load.

      So someone thought that maybe if only a few, select, high-capacity nodes participated in the power-law network, it wouldn't tear itself apart because they could handle the load. These would become the ultrapeers. The nodes that couldn't handle the demands of a flooding, power-law network would connect to ultrapeers and let the ultrapeers take note of their shared files, and handle search requests for them. Thus, when a peer searches, no peer connected to an ultrapeer ever sees the search unless they have the file being searched for, because the searching happens at a level above them. Between low-capacity nodes and ultrapeers, it's much like a client-server model. Between ultrapeers, it's still a power-law network.

      But the ultrapeer network has problems in itself, so this group sought to find a way to search a power-law based network, such as Gnutella, without flooding. They exploited the fact that, in a power-law network, select nodes have very high degree connectivity. If you take a random walk on a power-law based network (meaning, starting from your own PC, randomly jump to a node connected to you, randomly jump to a node connected to that node, etc...) you'll end up at or passing through a node with very high connectivity. Thus, they were a natrual spot rendezvous point for clients wishing to share files, and clients wishing to download files. Perhaps, in this sense, they are an "ultrapeer," but we haven't separated the network into two different architectures like before. The network is still entirely power-law based, and retains all its wonderful properties.

      But that's not the entire story, just the gist of it. There are other neat tricks to it... Trust me, this is really good stuff we're talking about here. They recently won Best Paper Award at the 2004 IEEE International Conference on Peer-to-Peer Computing. (See paper here.)

      "Brunet," as they call it, is designed to be a framework for any peer-to-peer application that could exploit the percolation search outlined above. Google-like searching is just one possible approach (and perhaps a little unrealistic...). Right now I can tell you that they have a chat program in the works, and it is working well. The framework should be released when it's ready.

      Please don't flood me with questions -- remember, I'm not actually in their research group :)

      - sm

  6. The Ask Slashdot section by Man+of+E · · Score: 5, Funny
    P2P searching? The Ask Slashdot section does P2P searching already (in a less fancy-schmancy way), moreso than some would like :-)

    Q: What is $search_term and how does it work?
    A: A simple google search shows that $search_term is $blahblah and you use it like $this (repeated a hundred times)

    Add another hundred replies about how the poster should search before submitting, and how AskSlashdot is degenerating into AskPeopleToGoogleForYou, and there you have it. P2P searching in all its glory.

    --
    Ceci n'est pas une sig
  7. islands of users by bodrell · · Score: 2, Informative

    That wouldn't solve the problem of local areas of users that are disconnected from everyone but themselves. I know this is an issue with other p2p apps. You can only connect to someone who's in your area, and sometimes that just isn't good enough. I know China is in many respects isolated from the rest of the internet.

    --
    Si la vida me da palo, yo la voy a soportar Si la vida me da palo, yo la voy a espabilar
  8. Re:Too many people trying to use p2p by Anonymous Coward · · Score: 2, Funny

    Which is why I still prefer walking everywhere, using chalk and slate for taking notes, and refuse to use a zipper...

    And why I like using my RPN calculator to change the TV station...

  9. Re:Too many people trying to use p2p by Anonymous Coward · · Score: 2, Interesting

    No, they won't. You need tons of server hardware to cope with the bandwidth of anything even remotely popular. Thus free services tend to be spoiled with ads and whatnot.

    The magic of p2p is that you can build the same out of 'thin air'. There are no expensive server rooms and gigabit lines but just a bunch of nodes that are slightly more complicated than simple clients. You use it, you provide it. Fair game and you get exactly the kind of service you want without strings attached. At least theoretically - the reality still seems to be something different.

  10. This was already tried... by shodson · · Score: 4, Interesting

    Infrasearch was working on this, until Sun paid $8M for the company, them had them work on something else, then Gene Kan committed suicide. Be careful what you work on.

  11. Huh? by Ars-Fartsica · · Score: 2, Insightful
    Aren't searches sent to, and derived by, single search engine domains?

    Google, Yahoo etc of course crawl the web at large, but even if you want to throw a peer network at crawling, aren't you mitigating freshness?

    What I can see is a DNS-like system for propogating metadata in to the interior of the network, and maybe a caching mechanism as a result...not sure if this is what they mean.

  12. There already is distributed crawling by Anonymous Coward · · Score: 3, Interesting

    It's called grub.

  13. An alternative idea for complete indexing.... by i_want_you_to_throw_ · · Score: 4, Interesting

    Feel free to shoot full of holes as needed....

    Every website has DNS servers so what if that same company that ran the DNS servers indexed the pages of the sites that it hosted? Daily?

    Wouldn't that then provide a complete index of the web?

    Start a search and somehow get the results back through that distributed method. Haven't figure that out yet...... but if you can...
    PROFIT!!!!!

    1. Re:An alternative idea for complete indexing.... by timealterer · · Score: 2, Interesting

      So, under this theory... everybody indexes their own content? Implying, everybody would provide legitimate "indexes" and not simply provide whatever is most likely to bring in search engine visitors? "Look, here's my index! My site has a MILLION pages of free porn warez!!" Indexing needs to be done by a third party, that's just the way it is.

      --
      - Allen Pike
      Altering time, one time at a time.
    2. Re:An alternative idea for complete indexing.... by otisg · · Score: 2, Informative

      This, or something akeen to this has already been tried years ago with Harvest and its SOIF records (I think that was the name). The idea was to index locally, while being a part of a larger index network. Obviously, it never worked.

      There is a mailing list for people involved with writing and running web crawlers (aka spider or robots), and several years ago there was a lot of talk about making crawling and indexing more efficient by enchancing the 'robot exclusion protocol' (i.e. robots.txt) by creating a system in which sites would advertize what pages have changed, so that web crawlers could do less crawling and poking around (read wasting time, bandwidth, CPU power, electricity, etc.) and just pick up the pages that needed to be (re)indexed. That was never realized either.

      Over time corporations that run search engines have become more and more closed and protective of their propriatory technology and practices, which gives them the edge in our highly competitive world. Who can blame them. As the result, it is more and more difficult to enhance things like 'robots exclusion protocol', as it requires open talk, agreements, etc.

      Ah.... this makes me said, I'll stop reminiscing.

      --
      Simpy
  14. another senseless Slashdot story title by Bert690 · · Score: 3, Interesting
    This is some pretty cool research, but this really has pretty much nothing to do with the web.

    It's an ariticle describing a new p2p query routing method. Nothing more. There's already a lot of such algorithms out there. This one seems to exhibit some nice completness properties that hold in idealized scale free networks. But I'm not convinced such a theoretical property would hold in the real world. While p2p networks tend to be roughly scale free, the "roughly" and "tend to be" qualifiers are what make such theoretical properties unlikely to hold in practice.

    Nice to see they plan to release some software based on the technique though.

  15. Ants p2p Impliments A Distributed search engine by microbrewer · · Score: 4, Interesting

    A peer to peer program Ants P2P has just implimented a Distributed Search Engine .Ants P2P is Based on Ant Routing Anlgorithms so it needed a solution to finding files on its network it found a solution that works .The Network also has a HTTP tunneling feature and its developer Roberto Rossi is creating a search solution based on simmilar methoods to search Web Pages published on the network .

    Ants P2P is designed to protect the identity of its users by using a series of middle-men nodes to transfer files from the source to destination. As additional security, transfers are Point to Point secured and EndPoint to EndPoint secured.

    1. Distributed search Engine - Each node performs periodic random queries over the network and keeps an indexed table of the results it gets. When you do a query you will get files with or without sources. If you get files simply indexed (without a source), you can schedule the download. As soon as Ants finds a valid source, it will begin the download. This will also solve the problem of unprocessed queries. This way you will get almost all the files in the network that match your query with a single search.

    http://sourceforge.net/projects/antsp2p/

  16. Re:Too many people trying to use p2p by Bert690 · · Score: 3, Insightful
    True, at some point networks and machines will be so congested with various p2p protocals, that everyone will jump back to centralized servers.

    If you'd take some time to actually read the article, you'd see that the story is about research that addresses congestion problems with existing p2p methods.

    Besides, much if not most traffic from p2p networks is from file downloads, not query routing. Moving files to a centralized server isn't going to reduce that traffic at all. In fact, the bottlenecks that result can make congestion even worse.

    Moving files to central servers only seems to help congestion because central servers with anything interesting to download tend to be shut down quickly.

  17. P2P is a cheap excuse for a system.. by Turn-X+Alphonse · · Score: 3, Interesting

    I'm so sick of companies wanting to push off their crap onto us. If I want something from them they should offer it me on terms I find acceptable.

    In this case a couple of text links which may intrest me (Google refrence : check).

    I don't want to have to share my bandwith with 50 other people so they can do the same. If you want to run a service, website or game server you should pay for it. Don't start passing off the bandwith bill onto us users.

    Either get used to the heat (price) or get out of the kitchen (market).

    --
    I like muppets.
  18. Re:Too many people trying to use p2p by cbiltcliffe · · Score: 5, Insightful
    I'm sick of all this hype about p2p. Its a good technology but its not like we have to use it for everything. The old ways of doing things still work.

    You're right, but consider this:

    The entertainment industry is trying very hard to convince the US government that all P2P can be used for is copyright infringement, so it should be banned completely.
    Any non-infringing use obviously proves them wrong, no matter how out there it is.

    Right now, I think we need as many off-the-wall uses as possible for P2P, even if it's not the most efficient way to accomplish the task.
    Calling mass attention to these uses wouldn't hurt, either.
    --
    "City hall" in German is "Rathaus" Kinda explains a few things......
  19. Re:Too many people trying to use p2p by farble1670 · · Score: 2, Interesting

    ?

    the point is that new technologies are adopted when they improve on an existing method. we already have super-fast, super robust, complete search technologies that are not p2p ... so what problem are they trying to solve? an academic exercise? well, that's okay ... but let's call it what it is.

    google is already so fast as i would not notice it is if were any faster. the best a p2p search technology could achieve would be equivalent speed with the addition of the consumption of my bandwidth.

  20. Mmm, buzzwords. by trawg · · Score: 3, Insightful

    Step 1) Find established technology which is working more or less happily as-is
    Step 2) Add the word 'p2p' in front of it.
    Step 3) ???
    Step 4) Profit

    I assume Step 3) is now as simple as "show name of new product with 'p2p' in the subject and explain how its NOT related to pirating movies or music" (to increase investor confidence they're not going to get taken to town by the RIAA/MPAA), then its just sit back and watch the fat investment/grant dollars roll in!