Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: auto dial discovered peers #349

Merged
merged 15 commits into from
Apr 11, 2019
Merged

feat: auto dial discovered peers #349

merged 15 commits into from
Apr 11, 2019

Conversation

jacobheun
Copy link
Contributor

@jacobheun jacobheun commented Apr 4, 2019

This PR leverages the strategies detailed at #349 (comment) to implement auto dial in libp2p. This should improve our ability to maintain an appropriate level of connections based on the min and max peers configured for the ConnectionManager.

Applications leveraging libp2p should ensure they are not dialing discovered peers when using this update. Applications that do wish to handle all dialing can disable autoDial in the config.

Depends on libp2p/js-libp2p-switch#325

@ghost ghost assigned jacobheun Apr 4, 2019
@ghost ghost added the status/in-progress In progress label Apr 4, 2019
@alanshaw
Copy link
Member

alanshaw commented Apr 5, 2019

That's interesting - can you foresee any strategies other than low and all?

@jacobheun
Copy link
Contributor Author

jacobheun commented Apr 5, 2019

After thinking through this a bit more I put together some notes. The main take away would be to change the behavior of libp2p to:

  1. auto dial discovered peers under the low watermark
  2. allow this to be disabled
  3. applications should not dial on discovery unless they have disabled this.

Scenarios

In any scenario, if a peer is discovered it should be added to the PeerBook. This ensures that
even if we don't dial to a node when we discover it, we know about it in the event that it
becomes known as a provider for something we need.

1. Joining the network

The node is new and needs to join the network. It currently has 0 peers.
Discovery Mechanisms: Ambient Discovery

Action to take

Connect to discovered peers. This should have some degree of concurrency limiting. While the case should be low, if we immediately discover more peers than our high watermark we should avoid dialing them all.

2. Connected to some

The node is connected to other nodes. The current number of connections is less than the desired low watermark.
Discovery Mechanisms: Ambient Discovery and Active Discovery

Action to take

Connect to discovered peers. This should have some degree of concurrency limiting. The concurrency may need to be modified to reflect the current number of peers connected. The more peers we have, the lower the concurrency may need to be.

3. Connected to enough

Discovery Mechanisms: Ambient Discovery and Active Discovery

Action to take

None. If we are connected to enough peers, the low watermark, we should not connect to discovered peers. As other peers discover us, they may connect to us based on their current scenario.

For example, a long running node with adequate peers is on an MDNS network. A new peer joins the network and both become aware of each other. The new peer should be the peer that dials, as it has too few peers. The existing node has no reason to dial the new peer, but should keep a record of it in case it later becomes an important node due to its contents/capabilities.

Avoiding dials above the low watermark also allows for a pool of connections to be reserved for application specific actions, such as connecting to a specific content provider via a DHT query to find that content (ipfs-bitswap).

4. Connected to too many

The node has more connections than it wants. The current number of connections is greater than the high watermark.

WIP Connection Manager v2 spec
Discovery Mechanisms: Ambient Discovery and Active Discovery

Discovery Mechanisms

Means of which a libp2p node discovers other peers.

Active Discovery

Through active use of the libp2p network, a node may discovery peers.

  • Content/Peer routing (DHT, delegated, etc) provider and peer queries
  • DHT random walk
  • Rendezvous servers

Ambient Discovery

Leveraging known addresses, or network discovery mechanisms, a node may discover peers outside of the bounds of the libp2p network.

  • Bootstrap
  • MDNS
  • proximity based (bluetooth, sound, etc)

Thoughts

  • All peers discovered should be emitted via peer:discovery as applications may wish to do something with that information.
  • Libp2p should default to automatically connecting to new peers, when under the low watermark.
    • Applications should be able to disable this, and handle connections themselves.
    • Applications who have not disabled this should never connect on peer discovery.

@jacobheun jacobheun changed the base branch from fix/remove-put to master April 5, 2019 12:29
@dirkmc
Copy link
Contributor

dirkmc commented Apr 8, 2019

This sounds like a good approach 👍

A few questions:

  1. Should we make any distinction between inbound / outbound / duplex connections?
  2. Do the LOW / ALL discovery strategies still apply in this second set of concepts?
  3. Should the dial queue have a priority assigned to dials? (eg low for discovered peers, high for peers that are actively dialed by libp2p clients)

@jacobheun
Copy link
Contributor Author

Should we make any distinction between inbound / outbound / duplex connections?

There may be value in doing so in the future. I think the first step here will be improving how inbound connections are being handled in the switch and adding the appropriate tags to the connections, which is something the connection manager needs.

Do the LOW / ALL discovery strategies still apply in this second set of concepts?

No, we shouldn't need the discovery strategies anymore. I pushed up the latest code I have (tests need to be fixed). This changes things over to a configurable autoDial approach.

Should the dial queue have a priority assigned to dials? (eg low for discovered peers, high for peers that are actively dialed by libp2p clients)

Yes, I think they should. Doing auto dialing makes this a lot easier to know where things are coming from so deprioritizing these calls becomes a lot easier.

@vasco-santos
Copy link
Member

Thanks for clearly exposing this problem and your ideas in this regard @jacobheun ! 🙌

Totally agree with the following reasoning 👍 :

  1. Automatic dial when below the low watermark
  2. Don't dial when higher than the low watermark. We need to keep dial queues ready for application specific actions and the applications should be able to connect if they want to.
  3. Behaviors configurable from outside for applications being able overwrite

@jacobheun jacobheun changed the title [WIP][RFC] feat: support discovery strategies [WIP][RFC] feat: auto dial discovered peers Apr 8, 2019
@alanshaw
Copy link
Member

alanshaw commented Apr 9, 2019

👍 thanks for putting so much thought into this @jacobheun - this sounds like a good way forward to limit the number of dials we're doing.

@alanshaw
Copy link
Member

alanshaw commented Apr 9, 2019

Can we add your documentation here to the README?

@jacobheun
Copy link
Contributor Author

Since there's a good amount of info there I created a separate readme with the peer discovery / auto dial information. I also updated some language in the main readme and linked to the new readme.

README.md Outdated Show resolved Hide resolved
src/index.js Outdated Show resolved Hide resolved

if (!this.isStarted()) return

this.emit('peer:discovery', peerInfo)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why no discovery event if not started?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It keeps a record of those peers and will emit them on startup. This avoids the scenario where you disable autoDial and get a bootstrap or mdns peer discovered result before libp2p starts. If you try to dial and libp2p hasn't finished starting it will fail. This just makes libp2p take care of the logic internally.

src/index.js Outdated
this.emit('peer:discovery', peerInfo)
this._maybeConnect(peerInfo)
})
})
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to unregister this on stop?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should really run anytime the node starts. It will get run multiple times if the node is started again, though. I can just register this in the constructor to avoid the need to remove and re-add it on a restart.

src/index.js Outdated Show resolved Hide resolved
src/index.js Outdated Show resolved Hide resolved
* All peers discovered are emitted via `peer:discovery` so applications can take any desired action.
* Libp2p defaults to automatically connecting to new peers, when under the [ConnectionManager](https://github.com/libp2p/js-libp2p-connection-manager) low watermark (minimum peers).
* Applications can disable this via the `peerDiscovery.autoDial` config property, and handle connections themselves.
* Applications who have not disabled this should **never** connect on peer discovery, unless performing a specific action.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe elaborate on what "performing a specific action" is. This is not just "dial with a protocol", you can cold call but it should be in response to some user action.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thinking through this more, I don't think there's any reason for a connect to ever happen on peer discovery with auto dial on. peer:connect would be a more appropriate event to take action on.

PEER_DISCOVERY.md Outdated Show resolved Hide resolved
PEER_DISCOVERY.md Show resolved Hide resolved
@jacobheun jacobheun changed the title [WIP][RFC] feat: auto dial discovered peers feat: auto dial discovered peers Apr 10, 2019
@jacobheun jacobheun marked this pull request as ready for review April 10, 2019 09:08
@jacobheun jacobheun requested a review from alanshaw April 10, 2019 09:08
Copy link
Contributor

@dirkmc dirkmc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A couple of nits, otherwise LGTM 👍

src/index.js Outdated Show resolved Hide resolved
src/index.js Outdated Show resolved Hide resolved
src/index.js Show resolved Hide resolved
Copy link
Member

@alanshaw alanshaw left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code LGTM, I would like to see how this performs (just haven't had time this week), but we can always iterate if you want to get this merged.

@jacobheun jacobheun requested a review from dirkmc April 10, 2019 17:02
Copy link
Member

@vasco-santos vasco-santos left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@jacobheun jacobheun merged commit 01aa447 into master Apr 11, 2019
@ghost ghost removed the status/in-progress In progress label Apr 11, 2019
@jacobheun jacobheun deleted the feat/disco-strategies branch April 11, 2019 10:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants