Skip to content

Commit 3282d05

Browse files
committed
Update text after review
1 parent 3ba0c3f commit 3282d05

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

doc/reference/reference_lua/box_info/synchro.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,27 @@ box.info.synchro
1919

2020
* ``queue``:
2121

22-
- ``owner`` -- ID of the replica that owns the synchronous transaction queue.
23-
Once an owner instance appears, all other instances become read-only.
24-
If the ``owner`` field is ``0``, then every instance is writeable,
22+
- ``owner`` (since version :doc:`2.10.0 </release/2.10.0>`) -- ID of the replica that owns the synchronous
23+
transaction queue. Once an owner instance appears, all other instances become read-only.
24+
If the ``owner`` field is ``0``, then every instance may be writeable,
2525
but they can't create any synchronous transactions.
2626
To claim or reclaim the queue, use :ref:`box.ctl.promote() <box_ctl-promote>` on the instance that you want
2727
to promote.
28-
With elections enabled, the instance runs ``box.ctl.promote()`` automatically after winning the elections.
29-
Since version :doc:`2.10.0 </release/2.10.0>`.
28+
With elections enabled, the instance runs ``box.ctl.promote()`` command automatically after winning the elections.
3029

31-
- ``term`` -- current queue term.
30+
- ``term`` (since version :doc:`2.10.0 </release/2.10.0>`) -- current queue term.
3231
It contains the term of the last ``PROMOTE``.
3332
Usually it is equal to :ref:`box.info.election.term <box_info_election>`.
3433
However, the queue term value may be less than the corresponding one in the election term.
3534
It can happen when a new round of elections started, but no one has promoted yet.
36-
Since version :doc:`2.10.0 </release/2.10.0>`.
3735

3836
- ``len`` -- current number of entries that are waiting in the queue.
3937

40-
- ``busy`` -- the boolean value is set to ``true`` if there is a synchronous transaction in progress.
41-
Until the active transaction is complete, any other incoming synchronous transactions will be delayed.
42-
Since version :doc:`2.10.0 </release/2.10.0>`.
38+
- ``busy`` (since version :doc:`2.10.0 </release/2.10.0>`) -- the boolean value is ``true``
39+
when the instance is processing or writing some system request that modifies the queue
40+
(for example, ``PROMOTE``, ``CONFIRM``, or ``ROLLBACK``).
41+
Until the request is complete, any other incoming synchronous transactions and system requests
42+
will be delayed.
4343

4444
* ``quorum`` -- evaluated value of the
4545
:ref:`replication_synchro_quorum <cfg_replication-replication_synchro_quorum>` configuration option.

0 commit comments

Comments
 (0)