You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get information about the :ref:`Tarantool garbage collector <configuration_persistence_garbage_collector>`.
14
12
The garbage collector compares vclock (:ref:`vector clock <replication-vector>`)
15
13
values of users and checkpoints, so a look at ``box.info.gc()`` may show why the
16
14
garbage collector has not removed old WAL files, or show what it may soon remove.
17
15
18
-
* **gc().consumers** -- a list of users whose requests might affect the garbage collector.
19
-
* **gc().checkpoints** -- a list of preserved checkpoints.
20
-
* **gc().checkpoints[n].references** -- a list of references to a checkpoint.
21
-
* **gc().checkpoints[n].vclock** -- a checkpoint's vclock value.
22
-
* **gc().checkpoints[n].signature** -- a sum of a checkpoint's vclock's components.
23
-
* **gc().checkpoint_is_in_progress** -- true if a checkpoint is in progress, otherwise false
24
-
* **gc().vclock** -- the garbage collector's vclock.
25
-
* **gc().signature** -- the sum of the garbage collector's checkpoint's components.
26
-
* **gc().wal_retention_vclock** -- a vclock value of the oldest write-ahead log file protected from removing by the garbage collector by using the :ref:`wal.retention_period <configuration_reference_wal_retention_period>` option.
16
+
* ``consumers`` -- a list of users whose requests might affect the garbage collector.
17
+
* ``checkpoints`` -- a list of preserved checkpoints.
18
+
* ``checkpoints[n].references`` -- a list of references to a checkpoint.
19
+
* ``checkpoints[n].vclock`` -- a checkpoint's vclock value.
20
+
* ``checkpoints[n].signature`` -- a sum of a checkpoint's vclock's components.
21
+
* ``checkpoint_is_in_progress`` -- true if a checkpoint is in progress, otherwise false
22
+
* ``vclock`` -- the garbage collector's vclock.
23
+
* ``signature`` -- the sum of the garbage collector's checkpoint's components.
24
+
* ``wal_retention_vclock`` -- a vclock value of the oldest write-ahead log file protected from removing by the garbage collector by using the :ref:`wal.retention_period <configuration_reference_wal_retention_period>` option.
0 commit comments