| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | [[index-modules-translog]]== TranslogChanges to Lucene are only persisted to disk during a Lucene commit, which is arelatively expensive operation and so cannot be performed after every index ordelete operation. Changes that happen after one commit and before another willbe removed from the index by Lucene in the event of process exit or hardwarefailure.Because Lucene commits are too expensive to perform on every individual change,each shard copy also has a _transaction log_ known as its _translog_ associatedwith it. All index and delete operations are written to the translog afterbeing processed by the internal Lucene index but before they are acknowledged.In the event of a crash, recent transactions that have been acknowledged butnot yet included in the last Lucene commit can instead be recovered from thetranslog when the shard recovers.An Elasticsearch flush is the process of performing a Lucene commit andstarting a new translog. Flushes are performed automatically in the backgroundin order to make sure the translog doesn't grow too large, which would makereplaying its operations take a considerable amount of time during recovery.The ability to perform a flush manually is also exposed through an API,although this is rarely needed.[float]=== Translog settingsThe data in the translog is only persisted to disk when the translog is++fsync++ed and committed.  In the event of hardware failure, any data writtensince the previous translog commit will be lost.By default, Elasticsearch ++fsync++s and commits the translog every 5 secondsif `index.translog.durability` is set to `async` or if set to `request`(default) at the end of every <<docs-index_,index>>, <<docs-delete,delete>>,<<docs-update,update>>, or  <<docs-bulk,bulk>> request. More precisely, if setto `request`, Elasticsearch will only report success of an index, delete,update, or bulk request to the client after the translog has been successfully++fsync++ed and committed on the primary and on every allocated replica.The following <<indices-update-settings,dynamically updatable>> per-indexsettings control the behaviour of the translog:`index.translog.sync_interval`::How often the translog is ++fsync++ed to disk and committed, regardless ofwrite 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:`request`::    (default) `fsync` and commit after every request. In the event    of hardware failure, all acknowledged writes will already have been    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.--`index.translog.flush_threshold_size`::The translog stores all operations that are not yet safely persisted in Lucene(i.e., are not part of a Lucene commit point). Although these operations areavailable for reads, they will need to be reindexed if the shard was toshutdown and has to be recovered. This settings controls the maximum total sizeof these operations, to prevent recoveries from taking too long. Once themaximum size has been reached a flush will happen, generating a new Lucenecommit point. Defaults to `512mb`.`index.translog.retention.size`::The total size of translog files to keep. Keeping more translog files increasesthe chance of performing an operation based sync when recovering replicas. Ifthe translog files are not sufficient, replica recovery will fall back to afile based sync. Defaults to `512mb``index.translog.retention.age`::The maximum duration for which translog files will be kept. Defaults to `12h`.
 |