40
Other Structured P2P Systems CAN, BATON Lecture 4 1

Other Structured P2P Systems CAN, BATON Lecture 4 1

Embed Size (px)

Citation preview

Page 1: Other Structured P2P Systems CAN, BATON Lecture 4 1

Other Structured P2P Systems

CAN, BATON

Lecture 4

1

Page 2: Other Structured P2P Systems CAN, BATON Lecture 4 1

CAN

A Scalable Content Addressable Network

2

Page 3: Other Structured P2P Systems CAN, BATON Lecture 4 1

3

CAN (content-addressable network) hash value is viewed as a point in a D-dimensional cartesian space each node responsible for a D-dimensional “cube” in the space nodes are neighbors if their cubes “touch” at more than just a point (more formally, nodes s & t are neighbors when

s contains some

[<n1, n2, …, ni, …, nj, …, nD>, <n1, n2, …, mi, …, nj, … nD>] and t contains

[<n1, n2, …, ni, …, nj+δ, …, nD>, <n1, n2, …, mi, …, nj+ δ, … nD>])

• Example: D=2

• 1’s neighbors: 2,3,4,6

• 6’s neighbors: 1,2,4,5

• Squares “wrap around”, e.g., 7 and 8 are neighbors

• expected # neighbors: O(D)

1 6 5

4

3

2

78

Page 4: Other Structured P2P Systems CAN, BATON Lecture 4 1

4

CAN routing

To get to <n1, n2, …, nD> from <m1, m2, …, mD> choose a neighbor with smallest cartesian distance from

<m1, m2, …, mD> (e.g., measured from neighbor’s center)

1 6 5

4

3

2

78

• e.g., region 1 needs to send to node covering X

• checks all neighbors, node 2 is closest

• forwards message to node 2

• Cartesian distance monotonically decreases with each transmission

• expected # overlay hops: (DN1/D)/4X

Page 5: Other Structured P2P Systems CAN, BATON Lecture 4 1

5

CAN node insertion

To join the CAN: find some node in the CAN (via

bootstrap process) choose a point in the space uniformly at

random using CAN, inform the node that

currently covers the space that node splits its space in half

1st split along 1st dimension if last split along dimension i < D, next

split along i+1st dimension e.g., for 2-d case, split on x-axis, then y-

axis keeps half the space and gives other half

to joining node

1 6 5

4

3

2

78

X

Observation: the likelihood of a rectangle being selected is proportional to it’s size, i.e., big rectangles chosen more frequently

910

Page 6: Other Structured P2P Systems CAN, BATON Lecture 4 1

6

CAN node removal

Underlying cube structure should remain intact

i.e., if the spaces covered by s & t were not formed by splitting a cube, then they should not be merged together

Sometimes, can simply collapse removed node’s portion to form bigger rectangle

e.g., if 6 leaves, its portion goes back to 1 Other times, requires juxtaposition of nodes’

areas of coverage e.g., if 3 leaves, should merge back into

square formed by 2,4,5 cannot simply collapse 3’s space into 4 and/or

5 one solution: 5’s old space collapses into 2’s

space, 5 takes over 3’s space

1 6

54

3

2

1 6

54

3

24 2

5

Page 7: Other Structured P2P Systems CAN, BATON Lecture 4 1

7

CAN (recovery from) removal process

View partitioning as a binary tree of leaves represent regions covered by overlay nodes (labeled by node that covers

the region) intermediate nodes represent “split” regions that could be “reformed”, i.e., a leaf

can appear at that position siblings are regions that can be merged together (forming the region that is

covered by their parent)

1 6

54

3

27

89

10

11

12

13 14

109

8

7

2

4

5

3

13

12

14

11

61

Page 8: Other Structured P2P Systems CAN, BATON Lecture 4 1

8

CAN (recovery from) removal process

Repair algorithm when leaf s is removed Find a leaf node t that is either

s’s sibling descendant of s’s sibling where t’s sibling is also a leaf node

t takes over s’s region (moves to s’s position on the tree) t’s sibling takes over t’s previous region

Distributed process in CAN to find appropriate t w/ sibling: current (inappropriate) t sends msg into area that would be covered by a sibling if sibling (same size region) is there, then done. Else receiving node becomes t &

repeat

109

8

7

2

4

5

3

13

12

14

11

61

X

1 6

54

3

2

Page 9: Other Structured P2P Systems CAN, BATON Lecture 4 1

BATON

A Balanced Tree Structure for Peer-to-Peer Networks

9

Page 10: Other Structured P2P Systems CAN, BATON Lecture 4 1

Overlay Networks

Add additional routing protocol on top of network routing (i.e. TCP/IP)

Need to be resilient to node failures, intermittent connectivity

Redundancy in data and metadata Most popular is Distributed Hash Table (DHT)

Pastry Chord

Page 11: Other Structured P2P Systems CAN, BATON Lecture 4 1

Chord Overview

Randomly assign each peer an ID between 0 and 2m

Hash key to find ID for an item Next peer after ID (mod 2m)is responsible for storing item Each peer has routing table to subsequent peers Table is used for incremental routing

Page 12: Other Structured P2P Systems CAN, BATON Lecture 4 1

Chord Routing Example (m = 6)

Figures poached from Stoica et al., “Chord: A Scalable Peer-to-peer Lookup Service for Internet Applications,” SIGCOMM 2001.

Page 13: Other Structured P2P Systems CAN, BATON Lecture 4 1

DHTs: The Good, the Bad and the Ugly

Good Efficient routing algorithms Easy to understand Simple replication methods

Bad Load balancing depends on good choice of hash function

Ugly Can only do exact ID lookups, since items are clustered in key

space Would like to do range and prefix searches

Page 14: Other Structured P2P Systems CAN, BATON Lecture 4 1

Related Work

P-Grid (CoopIS’01) Based on a binary prefix tree structure.

Can not guarantee log N search step boundary

P-Tree (WebDB’04) Based on B+-tree structure and uses CHORD as overlay framework Each node maintains a branch of the B+tree

Expensive cost to keep consistence knowledge among nodes

Multi-way tree (DBISP2P’04) Each node maintains links to its parent, its siblings, its neighbors,

and its children

Can not guarantee log N search step boundary

Page 15: Other Structured P2P Systems CAN, BATON Lecture 4 1

BATON Architecture

Binary Balanced Tree Index Architecture

BATON: BAlanced Tree Overlay Network Definition: A tree is balanced if and only if at any node in

the tree, the height of its two subtrees differ by at most one.

Page 16: Other Structured P2P Systems CAN, BATON Lecture 4 1

Theorems

Theorem 1: The tree is a balanced tree if every node in the tree that has a child also has both its left and right routing tables full (*).

Theorem 2: If a node, say x, contains a link to another node, say y, in its left or right routing tables, parent node of x must also contain a link to parent node of y unless the same node is parent of both x and y.

(*) A routing table is full if none of the valid links is NULL.

Page 17: Other Structured P2P Systems CAN, BATON Lecture 4 1

Node join

Example: new node u joins the network

a

ih kj ml on

fd ge

b c

p q r s

u

u

Page 18: Other Structured P2P Systems CAN, BATON Lecture 4 1

Node join

Cost of finding a node to join: O(log N) When a node accepts a new node as its child

Split half of its content (its range of values) to its new child

Update adjacent links of itself and its new child Notify both its neighbor nodes and its new child’s

neighbor nodes to update their knowledge Cost: 6 log N

Page 19: Other Structured P2P Systems CAN, BATON Lecture 4 1

Node departure

When a node wishes to leave the network If it is a leaf node and there is no neighbor node having children, it

can leave the network Transfer its content to the parent node, and update correspondence adjacent link Notify its neighbor nodes and its parent’s neighbor nodes to update their

knowledge Cost: 4 log N

If it is a leaf node and there is a neighbor node having children, it needs to find a leaf node to replace it by sending a FINDREPLACEMENTNODE request to a child of that neighbor node

If it is an intermediate node, it needs to find a leaf node to replace it by sending a FINDREPLACEMENTNODE to one of its adjacent nodes

Page 20: Other Structured P2P Systems CAN, BATON Lecture 4 1

Node departure

Example: existing node b leaves the network

a

ih kj ml on

fd ge

c

p q s ut

b

r

r

Page 21: Other Structured P2P Systems CAN, BATON Lecture 4 1

Node departure

Cost of finding a leaf node to replace: O(log N) When a node comes to replace a leave node

Notify its parent and its neighbor nodes as in case of leaf node leaving: 4 log N

Notify its new parent node, its new neighbor nodes, and the parent’s neighbor nodes: 4 log N

Total cost: 8 log N

Page 22: Other Structured P2P Systems CAN, BATON Lecture 4 1

Fault tolerance

Node failure Nodes discovering failure of a node report to that node’s parent. The failure’s parent node will take responsibility for finding a leaf

node to replace if necessary. Routing information of the failure node can be recovered by

contacting its neighbor nodes via routing information of its parent.

Fault tolerance: failure node can be passed by two ways Through routing tables (similar to CHORD) - horizontal axis Through parent-child and adjacent links - vertical axis Specifically, even if all nodes at the same level fail, the tree is not

partitioned

Page 23: Other Structured P2P Systems CAN, BATON Lecture 4 1

Network restructuring

Necessary in case of forced join or forced leave that is used in load balancing scheme

Network restructuring is triggered when the condition in the theorem 1 is violated

Network restructuring is done by shifting nodes via adjacent links

No data movement is required Each shifted node requires O(log N) effort to update routing tables

Page 24: Other Structured P2P Systems CAN, BATON Lecture 4 1

Forced join

Example 1: network restructure is triggered as a forced join

Page 25: Other Structured P2P Systems CAN, BATON Lecture 4 1

Forced leave

Example 2: network restructuring is triggered as a forced leave

Page 26: Other Structured P2P Systems CAN, BATON Lecture 4 1

Index construction

Each node is assigned a range of values The range of values directly managed by a node is

Greater than the range managed by its left adjacent node Smaller than the range managed by its right adjacent node

Page 27: Other Structured P2P Systems CAN, BATON Lecture 4 1

Exact match query

Example: node h wants to search data belonged to node c, say 74

a

ih kj ml on

fd ge

b c

p q r ts

[0-5) [8-12) [17-23) [34-39) [51-54) [61-68) [75-81) [89-93)

[5-8) [23-29) [54-61) [81-85)

[12-17) [72-75)

[45-51)

[29-34) [39-45) [68-72) [85-89) [93-100)

Page 28: Other Structured P2P Systems CAN, BATON Lecture 4 1

Range query

Process similar to exact match query First, find an intersection with searched range Second, follow adjacent links to retrieve all results

Cost Exact match query: O(log N) Range query: O(log N + X) where X is the total number of nodes

containing searched results

Page 29: Other Structured P2P Systems CAN, BATON Lecture 4 1

Data insertion and deletion

Insertion Follow the exact match query process to find the node where data

should be inserted except that If it is the left most node and the inserted value is still less than its lower bound,

or if it is the right most node and the inserted value is still greater than its upper bound, it expands its range of values to accept the new inserted value.

In this case, additional log N cost is needed for updating routing tables

Deletion Follow the exact match query process to find the node containing

data which should be deleted

Cost: similar to exact match query process O(log N) for both insertion and deletion

Page 30: Other Structured P2P Systems CAN, BATON Lecture 4 1

Load balancing

Load balancing process is initialized when a node is overloaded or under loaded due to insertion or deletion

2 load balancing schemes Do load balancing with adjacent nodes An overloaded node finds a lightly loaded node to share work load

(only if the overloaded / under loaded node is a leaf node) A lightly loaded node is found by traveling through neighbor nodes within

O(logN) steps. Once found, the lightly loaded node transfers its content to one of its adjacent

nodes, forced leaves its current position, and forced joins as a child of the overloaded node.

Network restructuring is triggered if necessary Similar process is applied to under loaded nodes

Cost: O(log N) for each node attending load balancing process

Page 31: Other Structured P2P Systems CAN, BATON Lecture 4 1

Load balancing

Example: node g is an overloaded node while node f is a lightly loaded node

Page 32: Other Structured P2P Systems CAN, BATON Lecture 4 1

Experimental study

Experimental setup Test the network with different number of nodes N from 1000 to

10000. For a network of size N, 1000 x N data values in the domain of [1,

1000000000) are inserted in batches 1000 exact queries, and 1000 range queries are executed CHORD and Multi-way tree are used to compare

Page 33: Other Structured P2P Systems CAN, BATON Lecture 4 1

Join and leave operations

Cost of finding join node and replacement node

Cost of updatingrouting tables

Page 34: Other Structured P2P Systems CAN, BATON Lecture 4 1

Insert and delete operations

Cost of insert and delete operations

Page 35: Other Structured P2P Systems CAN, BATON Lecture 4 1

Search operations

Cost of exact match query Cost of range query

Page 36: Other Structured P2P Systems CAN, BATON Lecture 4 1

Access load

Access load for nodes at different levels

Page 37: Other Structured P2P Systems CAN, BATON Lecture 4 1

Effect of load balancing

Average messages of load balancing operation

Size of load balancing process

Page 38: Other Structured P2P Systems CAN, BATON Lecture 4 1

Effect of network dynamics

Network Dynamics

Page 39: Other Structured P2P Systems CAN, BATON Lecture 4 1

Conclusion

BATON The first P2P overlay network based on a balanced tree structure Strengths

Incur less cost of updating routing tables compared to other systems Support both exact match query and range query efficiently Flexible and efficient load balancing scheme Scalability (NOT bounded by network size or ID space before hand)

Page 40: Other Structured P2P Systems CAN, BATON Lecture 4 1

Thank youQ & A