gnutella

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

Upload: networkingcentral

Post on 15-May-2015

726 views

Category:

Documents


5 download

TRANSCRIPT

Page 1: Gnutella

Gnutella & Searching Algorithms in Unstructured Peer-to-Peer Networks

CS780-3 Lecture Notes

In Courtesy of David Bryan

Page 2: Gnutella

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

Page 3: Gnutella

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

Page 4: Gnutella

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

Page 5: Gnutella

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

Page 6: Gnutella

TTL/Hops Example

TTL = 7Hops = 0

TTL = 6Hops = 1

TTL = 5Hops = 2

TTL = 4Hops = 3

TTL = 3Hops = 4

Page 7: Gnutella

Horizon exampleTTL = 1TTL = 2TTL = 4TTL = 3TTL = 5TTL = 6TTL = 7

Page 8: Gnutella

More about TTL and Hops

• In general, you greatly increase the nodes you can connect to as you broaden your horizon

hopsn

i

ihosts dn

1

)1(

• Where nhosts is the number of hosts reachable, nhops is the number of hops, and d is the average number of hosts reachable from each host (degree of connectivity) (assumes acyclic graph)

Page 9: Gnutella

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)

Page 10: Gnutella

Ping/Pong Example

Page 11: Gnutella

Ping/Pong Example

Page 12: Gnutella

Ping/Pong Example

PING

Page 13: Gnutella

Ping/Pong Example

PING

PING

PING

Page 14: Gnutella

Ping/Pong Example

PINGPING

PING

PING

Page 15: Gnutella

Ping/Pong Example

Page 16: Gnutella

Ping/Pong Example

PONG

PONG

Page 17: Gnutella

Ping/Pong Example

PONG

PONG

Page 18: Gnutella

Ping/Pong Example

PONG

Page 19: Gnutella

Ping/Pong Example

Page 20: Gnutella

Ping/Pong Example

Page 21: Gnutella

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

Page 22: Gnutella

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

Page 23: Gnutella

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

Page 24: Gnutella

Ping/Pong Example w/Caching

PING

Page 25: Gnutella

Ping/Pong Example w/Caching

PONG

PONGPONG

PONGPONG

PONG

Page 26: Gnutella

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

Page 27: Gnutella

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

Page 28: Gnutella

Query Example

I need a

guitar song

Query Message Query Hit Message

File is requested .

Page 29: Gnutella

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

Page 30: Gnutella

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

Page 31: Gnutella

Firewalls and PushClient 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…

QUERY

PING

QUERY

PUSH

GET

PINGPING

PUSH

PUT

Page 32: Gnutella

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

Page 33: Gnutella

Bye

• Message to tell other clients you have terminated

• Not required, but recommended

• Should include a reason code. Loosely defined in the protocol

Page 34: Gnutella

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

Page 35: Gnutella

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

Page 36: Gnutella

Alternatives to Flood Query

• Iterative Deepening

• Directed BFS

• Local Indices

• Random Walkers

Page 37: Gnutella

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

Page 38: Gnutella

Iterative Deepening Example

Page 39: Gnutella

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

Page 40: Gnutella

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

Page 41: Gnutella

Efficient Iterative Deepening Example

Send out the packets, but keep them for now.

If response, delete after a timeout

Page 42: Gnutella

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.

Page 43: Gnutella

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

Page 44: Gnutella

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

Page 45: Gnutella

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

Page 46: Gnutella

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 forwardWhen 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.

Page 47: Gnutella

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

Page 48: Gnutella

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

Page 49: Gnutella

Random Walks

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

hop

Page 50: Gnutella

TTL = 7, 6, 5, 4, 3

Page 51: Gnutella

Random Walks (cont.)

• Advantage: cut message overhead (av. #msg. per node)

• Disadvantage: increase query searching delay(#hops)

Page 52: Gnutella

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.

Page 53: Gnutella

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

To reach 10 nodes2 walkers need 5 steps.

Page 54: Gnutella

To reach 10 nodes1 walkers need 10 steps

TTL = 7, 6, 5, 4, 3 ……….

Page 55: Gnutella

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

Page 56: Gnutella

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

Page 57: Gnutella

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

Page 58: Gnutella

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

Page 59: Gnutella

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?

Page 60: Gnutella

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

Page 61: Gnutella

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

Page 62: Gnutella

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

Page 63: Gnutella

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

Page 64: Gnutella

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

Page 65: Gnutella

References

[1] Gnutella RFC (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)

[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)

[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)

[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)