n2n/doc/Federation.md

40 lines
3.3 KiB
Markdown
Raw Permalink Normal View History

# Supernode Federation
2020-12-24 14:56:43 +01:00
## Idea
2021-01-07 11:15:04 +01:00
To enhance resilience in terms of backup and fail-over, also for load-balancing, multiple supernodes can easily interconnect and form a special community, called **federation**.
2020-12-24 14:56:43 +01:00
## Using Multiple Supernodes
### Form a Federation
2021-08-08 14:16:38 +02:00
2021-10-24 09:24:33 +02:00
To form a federation, multiple supernodes need to be aware of each other. To get them connected, an additional `-l` option from command line is required at the supernode.
2020-12-24 14:56:43 +01:00
2021-10-24 09:24:33 +02:00
This option takes the IP address (or name) and the UDP port of another known supernode, e.g. `-l 192.168.1.1:1234`.
2020-12-24 14:56:43 +01:00
### Use a Federation
2021-08-08 14:16:38 +02:00
Federated supernodes take care of propagating their knowledge about other supernodes to all other supernodes and the edges.
2021-10-24 09:24:33 +02:00
So, in the first place, edges only need to connect to one supernode (called anchor supernode) using `-l` option. This supernode needs to be present at start-up.
2021-08-08 14:16:38 +02:00
2021-10-24 09:24:33 +02:00
Optionally, more anchor supernodes of the same federation can be provided to an edge using several `-l` options. This will counter scenarios with reduced assured initial supernode availability.
2020-12-24 14:56:43 +01:00
## How It Works
2021-01-07 11:15:04 +01:00
2021-10-24 09:24:33 +02:00
Supernodes should be able to communicate among each other as regular edges already do. For this purpose, a special community called federation was introduced. The federation feature provides some mechanisms to inter-connect the supernodes of the network enhancing backup, fail-over and load-sharing, without any visible behavioral change.
2021-01-07 11:15:04 +01:00
2021-10-24 09:24:33 +02:00
The default name for the federation is `*Federation`. Internally, a mandatory special character is prepended to the name: that way, an edge won't be able to provide a regular community with the same name of the federation. Optionally, a user can choose a federation name (same on all supernodes) and provide it via `-F mySecretFed` option to the supernode. Alternatively, the federation name can be passed through the environment variable `N2N_FEDERATION`.
2021-01-07 11:15:04 +01:00
2021-10-24 09:24:33 +02:00
Federated supernodes register to each other using REGISTER_SUPER message type. The answer, REGISTER_SUPER_ACK, contains a payload with information about other supernodes in the network.
2020-12-24 14:56:43 +01:00
2021-10-24 09:24:33 +02:00
This specific mechanism is also used during the registration process taking place between edges and supernodes, so edges are able to learn about other supernodes.
2021-01-07 11:15:04 +01:00
2021-10-24 09:24:33 +02:00
Once edges have received this information, it is up to them choosing the supernode they want to connect to. Each edge pings supernodes from time to time and receives information about them inside the answer. We decided to implement a work-load based selection strategy because it is more in line with the idea of keeping the workload low on supernodes. Moreover, this way, the entire network load is evenly distributed among all available supernodes.
2020-12-24 14:56:43 +01:00
2021-10-24 09:24:33 +02:00
An edge connects to the supernode with the lowest work-load and it is re-considered from time to time, with each re-registration. We use a stickyness factor to avoid too much jumping between supernodes.
2020-12-24 14:56:43 +01:00
2021-08-08 14:16:38 +02:00
Thanks to this feature, n2n is now able to handle security attacks such as DoS against supernodes and it can redistribute the entire load of the network in a fair manner between all the supernodes.
To serve scenarios in which an edge is supposed to select the supernode by round trip time, i.e. choosing the "closest" one, the `--select-rtt` command line option is available at the edge. Note, that workload distribution among supernodes might not be so fair then.