nym
nym copied to clipboard
Lower bandwidth used for topology refresh
Prevents re-pulling node descriptors that are already known while using the TopologyRefresher
What does this do
- Adds an endpoint to the Nym API that allows pulling batches of node descriptors by
node_id - Creates a
TopologyProviderthat caches topologies and only goes to network if the known topology is older than the configured cache ttl. - When refreshing the Topology we compare the node IDs in the cache to the node IDs in the refreshed layer assignments.
- If the epoch has not changed no descriptors are pulled
- if the epoch has changed layer assignments are pulled and updated in the cached topology
- Only descriptors for node IDs in the new layer assignments that are NOT in the known topology cache are pulled.
- Adds a
Performancefield to the storedRoutingNodein the Cached topology. This way the cache contains all node descriptors and queries simply filter based on the stored performance, as opposed to filtering before storing and downloading more descriptors.
What does this not do
- Each created
MixnetClientstill uses an independentTopologyProviderand cached topology. This PR does not create a shared topology provider that can be used for every new connection. - The first refresh pulls the full topology. This PR does not pre-cache or add any topology serialization deserialization that would prevent the initial pull.
- This PR does not change the stage at which the initial topology is pulled. As is the
TopologyRefresheris created as aMixnetCientis starting up. This means that the initial topology pull doesn't happen until we have already started the process of connecting to the mixnet. - This does not effect the Topology information used by the VPN client. That is a different API with different data and happens in the VPN client repo.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
| Name | Status | Preview | Comments | Updated (UTC) |
|---|---|---|---|---|
| nym-explorer-v2 | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Mar 13, 2025 9:47pm |
2 Skipped Deployments
| Name | Status | Preview | Comments | Updated (UTC) |
|---|---|---|---|---|
| docs-nextra | ⬜️ Ignored (Inspect) | Visit Preview | Mar 13, 2025 9:47pm | |
| nym-next-explorer | ⬜️ Ignored (Inspect) | Visit Preview | Mar 13, 2025 9:47pm |