swarm v3.4.0 Swarm.Tracker
This module implements the distributed tracker for process registrations and groups.
It is implemented as a finite state machine, via :gen_statem
.
Each node Swarm runs on will have a single instance of this process, and the trackers will replicate data between each other, and/or forward requests to remote trackers as necessary.
Link to this section Summary
Functions
Adds some metadata to the given process (pid). This is primarily used for tracking group membership
Returns a specification to start this module under a supervisor
Hand off all the processes running on the given worker to the remaining nodes in the cluster. This can be used to gracefully shut down a node. Note that if you don’t shut down the node after the handoff a rebalance can lead to processes being scheduled on it again. In other words the handoff doesn’t blacklist the node for further rebalances
Removes metadata from the given process (pid)
Tracks a process (pid) with the given name. Tracking processes with this function will not restart the process when its parent node goes down, or shift the process to other nodes if the cluster topology changes. It is strictly for global name registration
Tracks a process created via the provided module/function/args with the given name.
The process will be distributed on the cluster based on the implementation of the configured distribution strategy.
If the process’ parent node goes down, it will be restarted on the new node which owns its keyspace.
If the cluster topology changes, and the owner of its keyspace changes, it will be shifted to
the new owner, after initiating the handoff process as described in the documentation.
A track call will return an error tagged tuple, {:error, :no_node_available}
, if there is no node available to start the process.
Provide a timeout value to limit the track call duration. A value of :infinity
can be used to block indefinitely
Stops tracking the given process (pid)
Authoritatively looks up the pid associated with a given name
Link to this section Functions
Adds some metadata to the given process (pid). This is primarily used for tracking group membership.
Returns a specification to start this module under a supervisor.
See Supervisor
in Elixir v1.6+.
Hand off all the processes running on the given worker to the remaining nodes in the cluster. This can be used to gracefully shut down a node. Note that if you don’t shut down the node after the handoff a rebalance can lead to processes being scheduled on it again. In other words the handoff doesn’t blacklist the node for further rebalances.
Removes metadata from the given process (pid).
Tracks a process (pid) with the given name. Tracking processes with this function will not restart the process when its parent node goes down, or shift the process to other nodes if the cluster topology changes. It is strictly for global name registration.
Tracks a process created via the provided module/function/args with the given name.
The process will be distributed on the cluster based on the implementation of the configured distribution strategy.
If the process’ parent node goes down, it will be restarted on the new node which owns its keyspace.
If the cluster topology changes, and the owner of its keyspace changes, it will be shifted to
the new owner, after initiating the handoff process as described in the documentation.
A track call will return an error tagged tuple, {:error, :no_node_available}
, if there is no node available to start the process.
Provide a timeout value to limit the track call duration. A value of :infinity
can be used to block indefinitely.
Stops tracking the given process (pid).
Authoritatively looks up the pid associated with a given name.