translog.asciidoc 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. [[index-modules-translog]]
  2. == Translog
  3. Changes to Lucene are only persisted to disk during a Lucene commit,
  4. which is a relatively heavy operation and so cannot be performed after every
  5. index or delete operation. Changes that happen after one commit and before another
  6. will be lost in the event of process exit or HW failure.
  7. To prevent this data loss, each shard has a _transaction log_ or write ahead
  8. log associated with it. Any index or delete operation is written to the
  9. translog after being processed by the internal Lucene index.
  10. In the event of a crash, recent transactions can be replayed from the
  11. transaction log when the shard recovers.
  12. An Elasticsearch flush is the process of performing a Lucene commit and
  13. starting a new translog. It is done automatically in the background in order
  14. to make sure the transaction log doesn't grow too large, which would make
  15. replaying its operations take a considerable amount of time during recovery.
  16. It is also exposed through an API, though its rarely needed to be performed
  17. manually.
  18. [float]
  19. === Flush settings
  20. The following <<indices-update-settings,dynamically updatable>> settings
  21. control how often the in-memory buffer is flushed to disk:
  22. `index.translog.flush_threshold_size`::
  23. Once the translog hits this size, a flush will happen. Defaults to `512mb`.
  24. `index.translog.flush_threshold_ops`::
  25. After how many operations to flush. Defaults to `unlimited`.
  26. `index.translog.flush_threshold_period`::
  27. How long to wait before triggering a flush regardless of translog size. Defaults to `30m`.
  28. `index.translog.interval`::
  29. How often to check if a flush is needed, randomized between the interval value
  30. and 2x the interval value. Defaults to `5s`.
  31. [float]
  32. === Translog settings
  33. The translog itself is only persisted to disk when it is ++fsync++ed. Until
  34. then, data recently written to the translog may only exist in the file system
  35. cache and could potentially be lost in the event of hardware failure.
  36. The following <<indices-update-settings,dynamically updatable>> settings
  37. control the behaviour of the transaction log:
  38. `index.translog.sync_interval`::
  39. How often the translog is ++fsync++ed to disk. Defaults to `5s`. Can be set to
  40. `0` to sync after each operation.
  41. `index.translog.fs.type`::
  42. Either a `buffered` translog (default) which buffers 64kB in memory before
  43. writing to disk, or a `simple` translog which writes every entry to disk
  44. immediately. Whichever is used, these writes are only ++fsync++ed according
  45. to the `sync_interval`.
  46. The `buffered` translog is written to disk when it reaches 64kB in size, or
  47. whenever a `sync` is triggered by the `sync_interval`.
  48. .Why don't we `fsync` the translog after every write?
  49. ******************************************************
  50. The disk is the slowest part of any server. An `fsync` ensures that data in
  51. the file system buffer has been physically written to disk, but this
  52. persistence comes with a performance cost.
  53. However, the translog is not the only persistence mechanism in Elasticsearch.
  54. Any index or update request is first written to the primary shard, then
  55. forwarded in parallel to any replica shards. The primary waits for the action
  56. to be completed on the replicas before returning success to the client.
  57. If the node holding the primary shard dies for some reason, its transaction
  58. log could be missing the last 5 seconds of data. However, that data should
  59. already be available on a replica shard on a different node. Of course, if
  60. the whole data centre loses power at the same time, then it is possible that
  61. you could lose the last 5 seconds (or `sync_interval`) of data.
  62. We are constantly monitoring the perfromance implications of better default
  63. translog sync semantics, so the default might change as time passes and HW,
  64. virtualization, and other aspects improve.
  65. ******************************************************