ipfs-cluster/api/rest
Hector Sanjuan d3d1f960f5 Feat: Enable DHT-based peer discovery and routing for cluster peers
This uses go-libp2p-kad-dht as routing provider for the Cluster Peers.

This means that:

* A cluster peer can discover other Cluster peers even if they are
not in their peerstore file.
* We remove a bunch of code sending and receiving peers multiaddresses
when a new peer was added to the Cluster.
* PeerAdd now takes an ID and not a multiaddress. We do not need to
ask the new peer which is our external multiaddress nor broadcast
the new multiaddress to everyone. This will fix problems when bootstrapping
a new peer to the Cluster while not all the other peers are online.
* Adding a new peer does not mean to open connections to all peers
anymore. The number of connections will be made according to the DHT
parameters (this is good to have for future work)

The that detecting a peer addition in the watchPeers() function does
no longer mean that we have connected to it or that we know its
multiaddresses. Therefore it's no point to save the peerstore in these
events anymore.

Here a question opens, should we save the peerstore at all, and should we
save multiaddresses only for cluster peers, or for everyone known?
Currently, the peerstore is only updated on clean shutdown,
and it is updated with all the multiaddresses known, and not limited to
peer IDs in the cluster, (because, why not).

License: MIT
Signed-off-by: Hector Sanjuan <code@hector.link>
2018-07-24 15:33:41 +02:00
..
client Feat: Enable DHT-based peer discovery and routing for cluster peers 2018-07-24 15:33:41 +02:00
test Issue #162: Add tests for rest.Config 2017-10-19 20:49:18 +02:00
config_test.go Config: provide utility to parse duration arguments. Use it. 2018-03-16 14:22:11 +01:00
config.go Fix: some govet warnings 2018-05-11 19:59:10 +02:00
restapi_test.go Feat: Enable DHT-based peer discovery and routing for cluster peers 2018-07-24 15:33:41 +02:00
restapi.go Feat: Enable DHT-based peer discovery and routing for cluster peers 2018-07-24 15:33:41 +02:00