OpenSearch/docs/reference/index-modules/translog.asciidoc

73 lines
2.9 KiB
Plaintext
Raw Normal View History

[[index-modules-translog]]
== Translog
2015-05-05 16:01:58 -04:00
Changes to Lucene are only persisted to disk during a Lucene commit,
2015-05-05 15:32:41 -04:00
which is a relatively heavy operation and so cannot be performed after every
2015-05-05 16:01:58 -04:00
index or delete operation. Changes that happen after one commit and before another
will be lost in the event of process exit or HW failure.
2015-05-05 15:32:41 -04:00
To prevent this data loss, each shard has a _transaction log_ or write ahead
2015-05-05 16:01:58 -04:00
log associated with it. Any index or delete operation is written to the
translog after being processed by the internal Lucene index.
2015-05-05 15:32:41 -04:00
In the event of a crash, recent transactions can be replayed from the
transaction log when the shard recovers.
2015-05-05 16:01:58 -04:00
An Elasticsearch flush is the process of performing a Lucene commit and
starting a new translog. It is done automatically in the background in order
to make sure the transaction log doesn't grow too large, which would make
replaying its operations take a considerable amount of time during recovery.
It is also exposed through an API, though its rarely needed to be performed
manually.
2015-05-05 15:32:41 -04:00
[float]
=== Flush settings
The following <<indices-update-settings,dynamically updatable>> settings
control how often the in-memory buffer is flushed to disk:
`index.translog.flush_threshold_size`::
Once the translog hits this size, a flush will happen. Defaults to `512mb`.
2015-05-05 15:32:41 -04:00
[float]
=== Translog settings
The data in the transaction log is only persisted to disk when the translog is
++fsync++ed and committed. In the event of hardware failure, any data written
since the previous translog commit will be lost.
2015-05-05 15:32:41 -04:00
By default, Elasticsearch ++fsync++s and commits the translog every 5 seconds if `index.translog.durability` is set
to `async` or if set to `request` (default) at the end of every <<docs-index_,index>>, <<docs-delete,delete>>,
2015-07-07 10:08:10 -04:00
<<docs-update,update>>, or <<docs-bulk,bulk>> request. In fact, Elasticsearch
will only report success of an index, delete, update, or bulk request to the
client after the transaction log has been successfully ++fsync++ed and committed
on the primary and on every allocated replica.
The following <<indices-update-settings,dynamically updatable>> per-index settings
2015-05-05 15:32:41 -04:00
control the behaviour of the transaction log:
Decouple recoveries from engine flush In order to safely complete recoveries / relocations we have to keep all operation done since the recovery start at available for replay. At the moment we do so by preventing the engine from flushing and thus making sure that the operations are kept in the translog. A side effect of this is that the translog keeps on growing until the recovery is done. This is not a problem as we do need these operations but if the another recovery starts concurrently it may have an unneededly long translog to replay. Also, if we shutdown the engine for some reason at this point (like when a node is restarted) we have to recover a long translog when we come back. To void this, the translog is changed to be based on multiple files instead of a single one. This allows recoveries to keep hold to the files they need while allowing the engine to flush and do a lucene commit (which will create a new translog files bellow the hood). Change highlights: - Refactor Translog file management to allow for multiple files. - Translog maintains a list of referenced files, both by outstanding recoveries and files containing operations not yet committed to Lucene. - A new Translog.View concept is introduced, allowing recoveries to get a reference to all currently uncommitted translog files plus all future translog files created until the view is closed. They can use this view to iterate over operations. - Recovery phase3 is removed. That phase was replaying operations while preventing new writes to the engine. This is unneeded as standard indexing also send all operations from the start of the recovery to the recovering shard. Replay all ops in the view acquired in recovery start is enough to guarantee no operation is lost. - IndexShard now creates the translog together with the engine. The translog is closed by the engine on close. ShadowIndexShards do not open the translog. - Moved the ownership of translog fsyncing to the translog it self, changing the responsible setting to `index.translog.sync_interval` (was `index.gateway.local.sync`) Closes #10624
2015-03-27 05:18:09 -04:00
`index.translog.sync_interval`::
How often the translog is ++fsync++ed to disk and committed, regardless of
write operations. Defaults to `5s`. Values less than `100ms` are not allowed.
`index.translog.durability`::
+
--
Whether or not to `fsync` and commit the translog after every index, delete,
update, or bulk request. This setting accepts the following parameters:
2015-05-05 15:32:41 -04:00
`request`::
2015-05-05 15:32:41 -04:00
(default) `fsync` and commit after every request. In the event
of hardware failure, all acknowledged writes will already have been
2015-10-26 16:43:25 -04:00
committed to disk.
`async`::
`fsync` and commit in the background every `sync_interval`. In
the event of hardware failure, all acknowledged writes since the last
automatic commit will be discarded.
--