Files
scylladb/docs/kb/seed-nodes.rst
Anna Stuchlik dbbf9e19e4 doc: remove the outdated info on seeds-info
This commit removes the outdated information about seed nodes.
We no longer need it in the docs, as a) the documentation is versioned,
and b) the ScyllaDB Open Source 4.3 and ScyllaDB Enterprise 2021.1 versions
mentioned in the docs are no longer supported.

In addition, some clarification has been added to the existing sections.

Fixes https://github.com/scylladb/scylladb/issues/22400

Closes scylladb/scylladb#23282
2025-03-17 13:53:48 +03:00

17 lines
799 B
ReStructuredText

===================
ScyllaDB Seed Nodes
===================
A ScyllaDB seed node is a node specified with the ``seeds`` configuration parameter in ``scylla.yaml``. It is used by new node joining as the first contact point.
It allows nodes to discover the cluster ring topology on startup (when joining the cluster). This means that any time a node is joining the cluster, it needs to learn the cluster ring topology, meaning:
- What are the IPs of the nodes in the cluster are
- Which token ranges are available
- Which nodes will own which tokens when a new node joins the cluster
**Once the nodes have joined the cluster, the seed node has no function.**
The first node in a new cluster must be a seed node. In typical scenarios,
there's no need to configure more than one seed node.