Tagged Questions
The dht tag has no wiki summary.
14
votes
5answers
688 views
Distributed Storage of BLOBs for .NET?
I am looking for a reasonably well tested library+server to store a persistent distributed hash table.
I am hesistant to use SQL-based solutions as the data is highly document oriented, consisting ...
12
votes
4answers
3k views
Simple enough explanation of a Distributed Hash Table (DHT)
Could any one give an explanation on how a DHT works.
Nothing too heavy, just the basics.
10
votes
4answers
3k views
How does a DHT in a Bittorent client get “bootstrapped”?
If I have a torrent w/o any trackers in it, and I just started a bittorent client so I have no peers yet...how do I know who to first connect with in the DHT? It seems like I would have to know at ...
9
votes
9answers
4k views
java distributed cache for low latency, high availability
I've never used distributed caches/DHTs like memcached, jboss cache, ehcache, etc. I'm wondering which, if any, is appropriate for my use.
First, I'm not doing web applications (as most of these ...
5
votes
2answers
2k views
The easiest DHT to implement
Which Distributed Hash Table (DHT) is easiest to implement in Python? Any good example that is not bloated?
I not am looking for a definition of DHT because I am more oriented and focused on design ...
4
votes
1answer
239 views
How the DHT protocol works ? Are my thoughts correct?
Im trying to understand how the DHT protocol works, specially on the file-sharing-torrent world. I read many articles, but im still confused with the filename-value hash generation.
My thoughs how ...
4
votes
1answer
182 views
How to use a DHT for a social trading environment
I'm trying to understand if a DHT can be used to solve a problem I'm working on:
I have a trading environment where professional option traders can get an increase in their risk limit by requesting ...
4
votes
4answers
4k views
How does DHT in torrents work?
I'm coding a p2p implementation that I would like to make decentralized however I'm having some trouble grasping how DHT in protocols like bittorrent work. How does the client know where the peers are ...
3
votes
1answer
73 views
P2P overlay networks since 2001?
What has been happening with the four big P2P distributed hash table (DHT) overlay networks — Pastry, CAN, Chord, and Tapestry — since they all came out in 2001?
I know that academic projects ...
3
votes
2answers
462 views
Simple open source DHT implementation in Java for learning purposes
I'm looking for recommendations for a simple open source implementation of a Distributed Hash Table in Java to play around with. No fancy features, just for learning purposes, no production ...
3
votes
1answer
255 views
Operations on Python hashes
I've got a rather strange problem. For a Distributed Hash Table I need to be able to do some simple math operations on MD5 hashes. These include a sum (numeric sum represented by the hash) and a ...
3
votes
4answers
2k views
Persistent Binary Tree / Hash table in .Net
I need a pure .Net persistent hashtable/binarytree, functionally similar to berkeley-db Java edition.
Functionally it should opperate in a similar maner to a DHT such memcached and velocity etc but ...
2
votes
1answer
213 views
Torrent DHT udp
Im trying to get access to a Torrent DHT network, and im having a hard time figuring out howto get access to the "entry" node in DHT.
How does a DHT in a Bittorent client get ...
2
votes
1answer
276 views
The most efficient DHT
What is the most efficient DHT? I am looking for name and/or some kind of implementation or related work, but I am not looking for the one that is most used.
Efficient in terms of CPU execution ...
2
votes
1answer
464 views
Which Python 2.x DHT implementation is going to be easiest to port to Python 3.x?
Previously I asked which DHT implementations are compatible with Python 3.x - StackOverflow's answer confirmed my worst fear: So far nobody has released a Python 3.x compatible Distributed Hash Table ...
2
votes
3answers
747 views
how to build one to many rows in tokyo cabinet?
i quote from the tokyo cabinet docs...
As for database of hash table, each key must be unique within a database,
so it is impossible to store two or more records with a key overlaps.
or does ...
2
votes
3answers
380 views
.Net implementation of DHT
Are there any open-source .Net implementations of distributed hash tables such as Chord, Pastry, Tapestry?
1
vote
1answer
35 views
Is it possible to create a DHT without any static IPs?
I want to use a distributed hash table in an application but I don't want to have a central server as entry point. Is there a way to implement this?
1
vote
2answers
192 views
DHT: BitTorrent vs kademlia vs clones (python)
I'm in the middle of implementing my own dht for internal cluster. Since it will be used in file-sharing program like bittorrent, "Mainline DHT" was the first thing I was look at. After that I found ...
1
vote
0answers
63 views
how does DHT works?
I grabbed the basic idea about DHT from wiki:
Store Data:
In a DHT-network, every node is responsible for a specific range of key-space. To store a file in the DHT, first, hash the file's name to ...
1
vote
1answer
157 views
Distributed System Topology
Trying to implement an electronic voting system as a college project and just faced the most important step towards my aim < the system architecture >
Multi-Server/Multi-Client , MUST really be ...
1
vote
1answer
171 views
p2p simulation and distributed hash table
I am learning the p2p architecture through a simulation within a single machine. For that I was told that I can use named pipes. I am in the design phase of the simulation. Here is how I plan to move ...
1
vote
1answer
149 views
Consistent Hashing: what about rehashing?
As you may know, consistent hashing is a great idea when dealing with DHT. The main idea is to not suffer too much when a new node is added or deleted.
From the original Paper:
When a machine is ...
1
vote
1answer
115 views
P2P for chat and/or broadcasting messages
So basically I want to be write a P2P-software that is able to send text messages to all nodes, kind of like IRC. What kind of network am I adviced to use? I've looked some into DHT Kademlia, and it ...
1
vote
1answer
511 views
How does consistent hashing work?
I am trying to understand how consistent hashing works. This is the article which I am trying to follow but not able to follow, to start with my questions are:
I understand, servers are mapped into ...
1
vote
2answers
194 views
Looking for information about DHT algorithem used by bittorrent (Mainline DHT)
I'm curies how trackerless torrent tracking works.
Tried to search for information (presentation of something) about the DHT torrent protocol but couldn't find valuable resources.
Could someone ...
1
vote
1answer
255 views
Which DHT algorithm to use (if I want to join two separate DHTs)?
I've been looking into some DHT systems, specially Pastry and Chord. I've read some concerns about Chord's reaction to churn, though I believe that won't be a problem for the task I have at hands. I'm ...
1
vote
2answers
127 views
users authentication and dht
Lets say that I have only DHT (distributed hash table) implemented (in Python), and I want to build authentication service over P2P network, but without introducing centralized authentication server ...
0
votes
2answers
35 views
Similar to hash values but something that returns an int
Using the hash function MD5 on a string creates a very long value, and it creates the same value for the same string every time. Now, my question is: is there a way to do something similar, like give ...
0
votes
1answer
15 views
Chord protocol. Distribuited Hash Table (DHT). Peer to peer. (P2P)
I'm trying to implement this protocol: http://en.wikipedia.org/wiki/Chord_(peer-to-peer)
What i understood from it is that each node that joins the "circle" is placed in a random place inside the ...
0
votes
1answer
30 views
Is it allowed to run several different DHT nodes behind the same ip:port pair in Mainline DHT?
Is it allowed to run several different DHT nodes behind the same ip:port pair in Mainline DHT?
And which node should reply on the DHT query message?
All or one of them?
Thank you in advance.
0
votes
1answer
87 views
Mainline DHT bootstrap process
Can somebody clarify me the statement from the specification of mainline DHT?
Upon inserting the first node into its routing table and when starting up thereafter, the node should attempt to find ...
0
votes
1answer
44 views
What is the maximum size of the udp packet which is sent by the mainline DHT node for the get_peers query?
What is the maximum size of the udp packet which is sent by the mainline DHT node for the get_peers query?
How does the node response when it store 3000 peers? (the packet is very large in that case).
...
0
votes
1answer
79 views
mainline DHT routing table in peer lookups
What is the role of the Mainline DHT routing table in peer lookup requests?
As I understand the first lookup request is sent to the node which is the closest one in the routing table to the info hash ...
0
votes
1answer
48 views
Bittorrent MDHT responses
What does the 'v' key value correspond to in Bittorrent Mainline DHT (MDHT) responses?
Here's an example buncoded response:
{'y': b'r',
'r': {'id': ...
0
votes
1answer
171 views
libtorrent dht peer request?
Ive been playing around with the python bindings for libtorrent/rasterbar.
What I wanted to do was generate a new 'node-id' and reannounce it to the other nodes.
I read that a 'bencoded dicionary' ...
0
votes
3answers
131 views
Getting a torrent title from metadata or torrent file
Is it possible to extract the torrent title from the meta data loaded from DHT or the file downloaded from some server like TPB? any api,lib any language would do
0
votes
0answers
100 views
Kademlia DHT xor metric and lookup algorithm
Could you explain what algorithm is using with kademlia lookup?
All examples i saw are only for 4-5 bit space. How to make XOR of two binary strings ( for example two SHA1 strings ) with more than 32 ...
0
votes
2answers
260 views
C++ implementation of DHT
I am looking for opensource implementations of Kademlia DHT in C/C++. It must be lightweight and crossplatform (win/linux/mac).
It must be able to post information to DHT and retrieve it.
0
votes
0answers
73 views
Hello World for an existing DHT
I am familiar with the theory of how a Distributed Hash Table (DHT) works. Is it possible to write a program that stores data to an existing DHT (such as Kademlia or Mainline DHT) ? Is there a simple ...
0
votes
1answer
72 views
How do you prevent DHT spill with Bittorrent?
I have a small network that I want to serve with a Bittorent tracker. It's important, though, that information shared in this network doesn't accidentally spill out with Distributed Hash Tables, ...
0
votes
1answer
97 views
DHT Node ID Generation?
I just start studying DHT implementation and theory and stuck on on part, how generates node id when node startup and connect to network. I read that ID is random hash from some hashes range but, is ...
0
votes
1answer
248 views
Could a Distributed Hash Table (DHT) be used for a dynamic web application? Another P2P design?
Could a Distributed Hash Table be used for a two-way web app with a pub/sub type application?
I'm investigating building a forum type application but with a DHT architecture and P2P (although a ...
0
votes
2answers
156 views
Easiest way to find the correct kademlia bucket
In the Kademlia protocol node IDs are 160 bit numbers. Nodes are stored in buckets, bucket 0 stores all the nodes which have the same ID as this node except for the very last bit, bucket 1 stores all ...
0
votes
1answer
213 views
0
votes
2answers
394 views
Recommendations for a data processing (MapReduce / DHT?) framework
I have a need to perform distributed searching across a largish set of small files (~10M) with each file being a set of key: value pairs. I have a set of servers with a total of 56 CPU cores ...
0
votes
1answer
516 views
Which DHT implementations are compatible with Python 3.x?
Following on from this question about DHTs in Python, my question is the same except that I'm developing on Python 3.x - I only want to know about implementations of the DHT concept which are known to ...
0
votes
1answer
246 views
Any examples of DHT based business app?
I would be interested in creating distributed business systems without a central server. A Distributed Hash Table as used in p2p programs looks like the most promising storage solution. Are there ...