Presentation is loading. Please wait.

Presentation is loading. Please wait.

Gnutella & Searching Algorithms in Unstructured Peer-to-Peer Networks CS780-3 Lecture Notes In Courtesy of David Bryan.

Similar presentations


Presentation on theme: "Gnutella & Searching Algorithms in Unstructured Peer-to-Peer Networks CS780-3 Lecture Notes In Courtesy of David Bryan."— Presentation transcript:

1

2 Gnutella & Searching Algorithms in Unstructured Peer-to-Peer Networks CS780-3 Lecture Notes In Courtesy of David Bryan

3 Serv What is Gnutella? Gnutella is a fully decentralized peer-to-peer protocol for locating resources Standard, not a program. There are many implementations of Gnutella (BearShare, LimeWire, Morpheus) Each member of the network may act as a client, looking for data, or a server, sharing that data CliententServer

4 Overlay Networks and Gnutella A network on top of a network Used only for the search aspect of Gnutella Actual transfer of files is not performed with the overlay network

5 Connecting to the Network When you start the application, need to first connect to a node - bootstrapping No set way to do this. Protocol is silent on the issue –Node Cache – contact a well known node that maintains a list of nodes –Node Web Page – lists locations of nodes to bootstrap and get started

6 A bit about TTL and Hops TTL and Hops are fields in a Gnutella message that are used to control the diameter or horizon of queries Except when used as a flag in special cases, as you move forward, you decrement TTL and increase Hops

7 TTL/Hops Example TTL = 7 Hops = 0 TTL = 6 Hops = 1 TTL = 5 Hops = 2 TTL = 4 Hops = 3 TTL = 3 Hops = 4

8 Horizon example TTL = 1TTL = 2TTL = 4TTL = 3TTL = 5TTL = 6TTL = 7

9 More about TTL and Hops In general, you greatly increase the nodes you can connect to as you broaden your horizon Where n hosts is the number of hosts reachable, n hops is the number of hops, and d is the average number of hosts reachable from each host (degree of connectivity) (assumes acyclic graph)

10 Ping and Pong After knowing where to go to join a network, a servent uses Ping and Pong to locate other nodes to connect to Originally, Ping message sent to the node connected to, which forwarded to all neighbors All those servents willing to connect to the sender respond with Pong Pongs convey IP, Port, Files shared, and distance (hops)

11 Ping/Pong Example PONG

12 Ping/Pong Example PONG

13 Ping/Pong Example PONG PING

14 Ping/Pong Example PONG PING

15 Ping/Pong Example PONG PING

16 Ping/Pong Example PONG

17 Ping/Pong Example PONG

18 Ping/Pong Example PONG

19 Ping/Pong Example PONG

20 Ping/Pong Example

21

22 Pong Caching Problem with this approach was traffic – broadcasting causes too much traffic Newer standard uses “Pong Caching”. Servents keep information about nearby nodes, and send this when Pinged Protocol suggests one method for how to maintain the cache, but doesn’t require that it be used

23 Pong Caching, Continued Use modified TTL and Hops –TTL=1, Hops=0 is a probe – servent only responds about itself –TTL=2, Hops=0 is a crawler – servent responds with pongs from immediate neighbors only

24 Pong Caching, Continued –TTL=7, Hops=0 is a probe – servent replies about any nearby nodes Protocol suggests 10 pongs should be returned – those 10 that have most recently been received Must be good pongs (recent responses, well behaved servents) Servents should send every 3 seconds, but responses come from other’s cache, so bandwidth is claimed to be low

25 Ping/Pong Example w/Caching PONG PING

26 Ping/Pong Example w/Caching PONG

27 Queries in Gnutella Queries work very much like the original Ping/Pong scheme Send a Query to neighbors, with TTL=7 and Hops=0 This defines the default “horizon” for reaching servents. As TTL increases, so does the horizon, and the number of hosts that can be reached, improving odds of a hit

28 Queries in Gnutella, Continued Send Query to neighbors, who send to their neighbors Decrement TTL, increase Hops when you receive Continue forwarding while TTL != 0 If you have the requested file, return a Query Hit message Generates lots of messages. Called “flood” search

29 Query Example PONG I need a guitar song Query Message Query Hit Message File is requested.

30 Transferring Data When a file is located using the Gnutella protocol, the Query Hit message returns a host/port to contact to obtain the file –The connection to get data is made using HTTP –Usually (but not always) same host/port as used for Gnutella traffic Problems occur when servent is behind firewall

31 Firewalls and Push Gnutella protocol can usually pass through firewalls if servents send/receive on same ports – Ping/Pong mechanism will keep pinholes open Problem comes with direct connections from remote host

32 Firewalls and Push Client connects to outside host. Sends from same port Gnutella traffic will be received on. Mapping from inside host to outside host now allows return traffic, so Gnutella traffic to this host is allowed. Remote client uses Gnutella protocol to search for file. Finds file on the host behind firewall. Messages searching arrive, since they pass through the nodes which have firewall mappings. Return message follows same path, so passes through firewall. Client uses Ping and Pong mechanism to find and connect to several other servents. Firewall mappings are created to these servents as well. The firewall mappings are refreshed by the periodic Ping messages used to keep Ping caches updated If remote client now attempts a direct HTTP connection to retrieve, the connection will be blocked. Since the firewalled servent never contacted the requesting host, there is no mapping in firewall. The Push message instructs the remote machine to send the file using HTTP to the requestor. It is routed through the Gnutella network. Of course, if both ends are behind firewalls and not peers… QUERYPINGQUERYPUSH GET PING PUSH PUT

33 Flow Control In order to control network traffic, Gnutella suggests a very simple flow control method –Servents create a FIFO output queue –When half full, enter flow control mode, stay as long as more than one quarter full Drop all input Sort queue to send responses before requests Long traveling responses gain priority, Long traveling requests lose priority

34 Bye Message to tell other clients you have terminated Not required, but recommended Should include a reason code. Loosely defined in the protocol

35 Format and Style of Gnutella Messages Connections are made via TCP Classic HTTP style text triple handshake – CONNECT, replied to with 200, replied to with 200 After this, Gnutella messages are exchanged –Gnutella messages are binary Each requests uses a semi-unique ID number

36 Problems with Flood Query Traditional Gnutella flood query has a number of problems –Very large number of packets generated to fulfill queries Study [2] indicates that most searches on Gnutella can be satisfied with a search that visits fewer nodes –Essentially, just a Breadth First Search (BFS) –Some proposals [3,4] attempt to address this with alternate schemes for searching

37 Alternatives to Flood Query Iterative Deepening Directed BFS Local Indices Random Walkers

38 Iterative Deepening Essentially, idea is multiple, sequential breadth-first searches First, search to a shallow depth If no results are returned, repeat search, but go to deeper depth

39 Iterative Deepening Example

40 Iterative Deepening To implement more efficiently, [3] proposed the following –Assume message depth tried first is a, followed by b, then finally c if needed –Nodes that receive search at depth a store the search temporarily –If originating node is satisfied, it doesn’t resend, nodes at depth a will delete the message after a time

41 Iterative Deepening –If needed, search is repeated after a delay, TTL is set to a. Nodes on the way to a recognize the repeat message and ignore Upon reaching depth a, the message is forwarded with TTL of b – a Search is saved at level b now Gnutella ID used to track packets –Finally, if it needs to be repeated again, new packets go out from b. All nodes on the way to depth b ignore. Since c is final level, no need to save on this third iteration –This requires knowledge by nodes of the policy

42 Efficient Iterative Deepening Example Send out the packets, but keep them for now. If response, delete after a timeout

43 On the final iteration (maximum depth), searches are not stored. Efficient Iterative Deepening Example If no response, server will resend. Intermediate nodes ignore, packets reach the stored level. Stored packets are deleted and sent to next depth in the policy, where they will be stored. In further iterations, all nodes between the source and the new stored level will ignore.

44 Directed BFS Directed BFS works by selecting a subset of the neighbors, and sending to these You are trying to guess who is most likely to respond That neighbor may pass on using standard BFS, or the neighbor may use Directed BFS to further limit its messages Trick is finding a good way to select neighbors

45 Selection Strategies in BFS Random? Highest # results for recent queries Results w/low hop counts High message count Short message queue (flow control) Returns results quickly Has most neighbors Shortest latency

46 Local Indices Idea is that a node maintains information about what files neighbors, and possibly neighbor’s neighbors store. “radius of knowledge” All nodes know about radius, and know about policy –Policy lists which levels will respond and which will ignore messages –Servents look at TTL/Hops to determine if they process or ignore

47 Local Indices Example … … … … … Each node has a radius of 2 – knows about the files on its neighbors and neighbor’s neighbors Policy is that levels 1, 4 and 7 respond … Nodes at level 1 respond with information about levels 1, 2 and 3, and forward to next level Searches move to levels 2 and 3, which ignore and forward When search reaches level 4, it responds with information about levels 4, 5, and 6, then forwards the messages. Layers 5 and 6 simply ignore and forward. Finally, level 7 responds with its own data, and terminates the query.

48 Local Indices Memory issue of maintaining lists –Size is far below a megabyte for radius < 5 Network issue of building list –Hit from extra packets

49 Random Walkers Quite a different approach –Doesn't use TTLs in same way One or a few messages are sent out a random link, if the object is found, return a hit, otherwise send to a different node Choice of where to go next is essentially random Periodically, when a node receives a query, it checks with source to see if query has been satisfied

50 Random Walks Basic random walk (one walker) –Choose a random neighbor at each step –“Walker” carries the query to search for each hop

51 TTL = 7, 6, 5, 4, 3

52 Random Walks (cont.) Advantage: cut message overhead (av. #msg. per node) Disadvantage: increase query searching delay(#hops)

53 Multiple Parallel Random Walks (K Walker) To decrease delay, increase walkers Multiple Walkers –K walkers, T steps = 1 walker, k*T steps therefore cut the delay by factor of k.

54 TTL = 7, 6, 5, 4, 3, 2, 1 To reach 10 nodes 2 walkers need 5 steps.

55 To reach 10 nodes 1 walkers need 10 steps TTL = 7, 6, 5, 4, 3 ……….

56 How to terminate the walkers? –TTL? No Terminate after certain number of hops Runs into the TTL selection issue too – checking? YES Walker checks with request node frequently Checking once at every fourth step along the way is usually good

57 TTL = 7, 6, 5, 4, 3, 2, 1

58 One improvement: State Keeping Each query has a unique ID and All its K walkers are tagged with that ID For each ID, a node only forwards the query to a neighbor who is new to this query

59 Issues Several alternatives (Local Indices, Iterative Deepening) require a global policy to be understood by all nodes Sharing information about file index (Local Indices) or even statistics (Directed BFS) leads to possible security risks Most, require at least some modification to the servents

60 Evaluating Techniques Do the results suffer? –Most of these assume a request to be satisfied with a number of hits – typically 50-100. –Time for those results? What sort of network traffic does this add? What sort of processing is needed? What sort of memory is needed? Local state and increased client complexity?

61 Iterative Deepening Savings depend on how long to wait between iterations, depth of each search –80% bandwidth, 60% processing for wait of 8 seconds between iterations A policy with depths of 5, 6, 7 and 6 second delays optimal –Saves 70% bandwidth, 50% processing –Adds only ~30% to time to satisfy Some state needed for knowing policy, storing packets

62 Directed BFS Using neighbors with greatest number of results and lowest avg. response time worked best –Past performance is an indicator of future performance Both had probability of satisfying >85% of a BFS About 70% less bandwidth and processing Higher cost than iterative deepening, but slightly faster

63 Local Indices Same results claimed as BFS No timing results, since simulated on existing data Traffic is reduced by 60%, processing by 50% for a radius of 1 Index size is a factor – radius of 1 71KB, but 7 is 21MB! Bandwidth actually increases for large r – too much traffic to maintain indices

64 Random Walkers Can have large gain in efficiency if –State to prevent duplicates –Good policy to terminate once satisfied (not TTL based) –Very good results obtained for low number of hops (as low as 8, which is similar to depth used for floods) –Looks like a promising area of research, perhaps combined with some metrics used in Directed BFS to select nodes

65 Conclusion Almost all improve, but trade-offs –Most need to maintain state, increased coding complexity –Usually less results, slower performance –Security implications of more information sharing Good deal of research left to be done in this area, although most work appears to be a year or more old

66 References [1] Gnutella RFC (http://rfc-gnutella.sourceforge.net/src/rfc-0_6- draft.html)http://rfc-gnutella.sourceforge.net/src/rfc-0_6- draft.html [2] Yang and Garcia-Molina, Comparing Hybrid Peer-to-Peer Systems, Technical Report (http://dbpubs.stanford.edu:8090/pub/2000-35)http://dbpubs.stanford.edu:8090/pub/2000-35 [3] Yang and Garcia-Molina, Improving Search in Peer-to-Peer Networks, in Proc. of the 22nd International Conference on Distributed Computing Systems (ICDCS’02), June 2002 (http://dbpubs.stanford.edu:8090/pub/2002-28)http://dbpubs.stanford.edu:8090/pub/2002-28 [4] Q. Lv, P. Cao, E. Cohen, K. Li and S. Shenker, Search and Replication in Unstructured Peer-to-Peer Networks, in Proc. Of the ACM ICS, 2002 (http://parapet.ee.princeton.edu/~sigm2002/papers/p258-lv.pdf)http://parapet.ee.princeton.edu/~sigm2002/papers/p258-lv.pdf [5] Yang and Garcia-Molina, Improving Search in Peer-to-Peer Networks, Technical Report Version of [3] (http://dbpubs.stanford.edu:8090/pub/2001-47)http://dbpubs.stanford.edu:8090/pub/2001-47


Download ppt "Gnutella & Searching Algorithms in Unstructured Peer-to-Peer Networks CS780-3 Lecture Notes In Courtesy of David Bryan."

Similar presentations


Ads by Google