box.stat.vinyl()
-
box.stat.
vinyl
()¶ Shows vinyl-storage-engine activity, for example
box.stat.vinyl().tx
has the number of commits and rollbacks.Example:
tarantool> box.stat.vinyl().tx.commit -- one item of the vinyl table
---
- 1047632
...
The vinyl regulator decides when to take or delay actions for disk IO, grouping activity in batches so that it is consistent and efficient. The regulator is invoked by the vinyl scheduler, once per second, and updates related variables whenever it is invoked.
box.stat.vinyl().regulator.dump_bandwidth
is the estimated average rate at which dumps are done. Initially this will appear as 10485760 (10 megabytes per second). Only significant dumps (larger than one megabyte) are used for estimating.box.stat.vinyl().regulator.dump_watermark
is the point when dumping must occur. The value is slightly smaller than the amount of memory that is allocated for vinyl trees, which is the vinyl_memory parameter.box.stat.vinyl().regulator.write_rate
is the actual average rate at which recent writes to disk are done. Averaging is done over a 5-second time window, so if there has been no activity for 5 seconds thenregulator.write_rate = 0
. Thewrite_rate
may be slowed when a dump is in progress or when the user has set snap_io_rate_limit.box.stat.vinyl().regulator.rate_limit
is the write rate limit, in bytes per second, imposed on transactions by the regulator based on the observed dump/compaction performance.box.stat.vinyl().regulator.blocked_writers
is the number of fibers currently blocked waiting for vinyl L0 memory quota.
Since vinyl is an on-disk storage engine (unlike memtx which is an in-memory storage engine), it can handle large databases – but if a database is larger than the amount of memory that is allocated for vinyl, then there will be more disk activity.
box.stat.vinyl().disk.data
andbox.stat.vinyl().disk.index
are the amount of data that has gone into files in a subdirectory of vinyl_dir, with names like{lsn}.run
and{lsn}.index
. The size of the run will be related to the output ofscheduler.dump_*
.box.stat.vinyl().disk.data_compacted
Sum size of data stored at the last LSM tree level, in bytes, without taking disk compression into account. It can be thought of as the size of disk space that the user data would occupy if there were no compression, indexing, or space increase caused by the LSM tree design.
Although the vinyl storage engine is not «in-memory», Tarantool does need to have memory for write buffers and for caches:
box.stat.vinyl().memory.tuple_cache
is the number of bytes that are being used for tuples (data).box.stat.vinyl().memory.tx
is transactional memory. This will usually be 0.box.stat.vinyl().memory.level0
is the «level0» memory area, sometimes abbreviated «L0», which is the area that vinyl can use for in-memory storage of an LSM tree.
Therefore we can say that «L0 is becoming full» when the
amount in memory.level0
is close to the maximum, which is
regulator.dump_watermark.
We can expect that «L0 = 0» immediately after a dump.
box.stat.vinyl().memory.page_index
and box.stat.vinyl().memory.bloom_filter
have the current amount being used for index-related structures.
The size is a function of the number and size of keys,
plus vinyl_page_size,
plus vinyl_bloom_fpr.
This is not a count of bloom filter «hits»
(the number of reads that could be avoided because the
bloom filter predicts their presence in a run file) –
that statistic can be found with
index_object:stat().
This is about requests that affect transactional activity («tx» is used here as an abbreviation for «transaction»):
box.stat.vinyl().tx.conflict
counts conflicts that caused a transaction to roll back.box.stat.vinyl().tx.commit
is the count of commits (successful transaction ends). It includes implicit commits, for example any insert causes a commit unless it is within a begin-end block.box.stat.vinyl().tx.rollback
is the count of rollbacks (unsuccessful transaction ends). This is not merely a count of explicit box.rollback() requests – it includes requests that ended in errors. For example, after an attempted insert request that causes a «Duplicate key exists in unique index» error,tx.rollback
is incremented.box.stat.vinyl().tx.statements
will usually be 0.box.stat.vinyl().tx.transactions
is the number of transactions that are currently running.box.stat.vinyl().tx.gap_locks
is the number of gap locks that are outstanding during execution of a request. For a low-level description of Tarantool’s implementation of gap locking, see Gap locks in Vinyl transaction manager.box.stat.vinyl().tx.read_views
shows whether a transaction has entered a read-only state to avoid conflict temporarily. This will usually be 0.
This primarily has counters related to tasks that the scheduler has arranged for dumping or compaction: (most of these items are reset to 0 when the server restarts or when box.stat.reset() occurs):
box.stat.vinyl().scheduler.compaction_*
is the amount of data from recent changes that has been compacted. This is divided intoscheduler.compaction_input
(the amount that is being compacted),scheduler.compaction_queue
(the amount that is waiting to be compacted),scheduler.compaction_time
(total time spent by all worker threads performing compaction, in seconds), andscheduler.compaction_output
(the amount that has been compacted, which is presumably smaller thanscheduler.compaction_input
).box.stat.vinyl().scheduler.tasks_*
is about dump/compaction tasks, in three categories,scheduler.tasks_inprogress
(currently running),scheduler.tasks_completed
(successfully completed)scheduler.tasks_failed
(aborted due to errors).box.stat.vinyl().scheduler.dump_*
has the amount of data from recent changes that has been dumped, includingdump_time
(total time spent by all worker threads performing dumps, in seconds), anddump_count
(the count of completed dumps),dump_input
anddump_output
.A «dump» is explained in section Storing data with vinyl:
Sooner or later the number of elements in an LSM tree exceeds the L0 size and that is when L0 gets written to a file on disk (called a „run“) and then cleared for storing new elements. This operation is called a „dump“.
Thus it can be predicted that a dump will occur if the size of L0 (which is memory.level0) is approaching the maximum (which is regulator.dump_watermark) and a dump is not already in progress. In fact Tarantool will try to arrange a dump before this hard limit is reached.
A dump will also occur during a snapshot operation.