Chord(分布式哈希表)

发布于 2025-01-06 08:41:03 字数 177 浏览 0 评论 0原文

我想为 P2P 文件共享创建自己的 Chord 实现 我关注了一篇文章,其中解释了每个节点都有它的 ID(例如 IP 的哈希值),

我的问题是:

  • 新客户端如何加入网络?必须有一个服务器来管理它。正确的?
  • 你如何为新客户设置手指表?

I want to create my own Chord implementation for P2P file sharing
I followed an article which explained that every node has it's ID (hash of the IP for example)

my questions are:

  • how a new client join the network? there must be a server to manage it. right?
  • how you set for the new client the finger table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷爱 2025-01-13 08:41:03

Chord 作者发布了自己的实现:

http://pdos.csail.mit.edu/chord /#downloads

您可以查看他们如何处理这些问题。

Chord authors have their own implementation published:

http://pdos.csail.mit.edu/chord/#downloads

You can check how they manage those questions.

彩虹直至黑白 2025-01-13 08:41:03
how a new client join the network?

通过向其他同行宣传其存在。

there must be a server to manage it. right?

对等点可以获取其他对等点的 IP 地址的服务器或位置 (URL)。该位置由同行自己用新数据更新。

如果您深入研究这个问题,您将面临 NAT 穿越问题。

how you set for the new client the finger table?

通过了解/获取其他节点的 ID 并计算“手指”顺序。

how a new client join the network?

By advertising its presence to other peers.

there must be a server to manage it. right?

Either a server or a location (URL) where peers can fetch IP addresses of other peers. This location is updated by peers themselves with fresh data.

If you dig deeper in this issue, you'll face the NAT traversal issue.

how you set for the new client the finger table?

By knowing/fetching other peers' id and computing the 'finger' order.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文