indices.asciidoc 867 B

12345678910111213141516171819202122
  1. [float]
  2. [[breaking_80_indices_changes]]
  3. === Indices changes
  4. [float]
  5. ==== Force Merge API changes
  6. Previously, the Force Merge API allowed the parameters `only_expunge_deletes`
  7. and `max_num_segments` to be set to a non default value at the same time. But
  8. the `max_num_segments` was silently ignored when `only_expunge_deletes` is set
  9. to `true`, leaving the false impression that it has been applied.
  10. The Force Merge API now rejects requests that have a `max_num_segments` greater
  11. than or equal to 0 when the `only_expunge_deletes` is set to true.
  12. [float]
  13. ==== On-disk term dictionary cannot be disabled
  14. The `index.force_memory_term_dictionary` setting was introduced in 7.0 as a
  15. temporary measure to allow users to opt-out of the optimization that leaves the
  16. term dictionary on disk when appropriate. This optimization is now mandatory
  17. and the setting is removed.