Skip to content

Commit b189d5f

Browse files
committed
3.0 configuration: update per TW review
1 parent 8aedebc commit b189d5f

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

doc/how-to/replication/repl_bootstrap.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Master-replica: manual failover
66

77
**Example on GitHub**: `manual_leader <https://github.com/tarantool/doc/tree/latest/doc/code_snippets/snippets/replication/instances.enabled/manual_leader>`_
88

9+
This tutorial shows how to configure a replica set with manual failover.
10+
911

1012
.. _replication-tt-env:
1113

@@ -236,7 +238,7 @@ To check that a replica (``instance002``) gets all updates from the master, foll
236238
237239
.. NOTE::
238240

239-
Note that a ``vclock`` value might include the 0-th component that is related to local space operations and might differ for different instances in a replica set.
241+
Note that a ``vclock`` value might include the ``0`` component that is related to local space operations and might differ for different instances in a replica set.
240242

241243
.. vclock_0th_component_note_end
242244
@@ -298,7 +300,8 @@ Starting an instance
298300
Reloading configuration
299301
~~~~~~~~~~~~~~~~~~~~~~~
300302

301-
After adding ``instance003`` to the configuration and starting it, configurations on all instances should be reloaded to allow ``instance001`` and ``instance002`` to get data from the new instance in case it becomes a master:
303+
After you added ``instance003`` to the configuration and started it, you need to reload configurations on all instances.
304+
This is required to allow ``instance001`` and ``instance002`` to get data from the new instance in case it becomes a master.
302305

303306
1. Connect to ``instance003`` using ``tt connect``:
304307

doc/how-to/replication/repl_bootstrap_auto.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Master-replica: automated failover
55

66
**Example on GitHub**: `auto_leader <https://github.com/tarantool/doc/tree/latest/doc/code_snippets/snippets/replication/instances.enabled/auto_leader>`_
77

8+
This tutorial shows how to configure a replica set with automated failover.
9+
810

911
.. _replication-automated-failover-tt-env:
1012

@@ -178,7 +180,7 @@ Checking a replica set status
178180
...
179181
180182
4. Execute ``box.info.replication`` to check a replica set status.
181-
Make sure that ``upstream.status`` and ``downstream.status`` are ``follow`` for ``instance002`` and ``instance003``.
183+
Make sure that ``upstream.status`` and ``downstream.status`` are ``follow`` for ``instance001`` and ``instance003``.
182184

183185
.. code-block:: console
184186
@@ -227,7 +229,7 @@ Checking a replica set status
227229
Adding data
228230
~~~~~~~~~~~
229231

230-
To check that replicas (``instance001`` and ``instance003``) get all updates from the master(``instance002``), follow the steps below:
232+
To check that replicas (``instance001`` and ``instance003``) get all updates from the master (``instance002``), follow the steps below:
231233

232234
1. Connect to ``instance002`` using ``tt connect``:
233235

@@ -241,7 +243,7 @@ To check that replicas (``instance001`` and ``instance003``) get all updates fro
241243

242244
3. Use the ``select`` operation on ``instance001`` and ``instance003`` to make sure data is replicated.
243245

244-
4. Check that the 1-st component of :ref:`box.info.vclock <box_introspection-box_info>` values are the same on all instances:
246+
4. Check that the ``1`` component of :ref:`box.info.vclock <box_introspection-box_info>` values are the same on all instances:
245247

246248
- ``instance001``:
247249

@@ -368,7 +370,7 @@ To test how automated failover works if the current master is stopped, follow th
368370
Choosing a leader manually
369371
--------------------------
370372

371-
1. Make sure that :ref:`box.info.vclock <box_introspection-box_info>` values (excluding the 0-th components) are the same on all instances:
373+
1. Make sure that :ref:`box.info.vclock <box_introspection-box_info>` values (except the ``0`` components) are the same on all instances:
372374

373375
- ``instance001``:
374376

doc/how-to/replication/repl_bootstrap_master_master.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Master-master
55

66
**Example on GitHub**: `master_master <https://github.com/tarantool/doc/tree/latest/doc/code_snippets/snippets/replication/instances.enabled/master_master>`_
77

8+
This tutorial shows how to configure a replica set with master-master configuration.
9+
810

911
.. _replication-master-master-tt-env:
1012

0 commit comments

Comments
 (0)