Brendan Ang

Search

Search IconIcon to open search

Distributed Hash Table

Last updated Jan 19, 2023 Edit Source

# Distributed Hash Table

A DHT is a distributed P2P database.

# Hash Table

500

# Distributed (assigning keys to peers)

Pairs are evenly distributed among peers, with each peer only knowing a small number of other peers. To resolve a query, a small number of messages are exchanged to obtain the value. 500

# Circular DHT

Each peer is only aware of its immediate successor and predecessor. Average of $N/2$ messages needed.

# Shortcuts

# Peer churn