analysis.asciidoc 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [discrete]
  2. [[breaking_80_analysis_changes]]
  3. ==== Analysis changes
  4. //NOTE: The notable-breaking-changes tagged regions are re-used in the
  5. //Installation and Upgrade Guide
  6. //tag::notable-breaking-changes[]
  7. [[ngram-edgengram-filter-names-removed]]
  8. .The `nGram` and `edgeNGram` token filter names have been removed.
  9. [%collapsible]
  10. ====
  11. *Details* +
  12. The `nGram` and `edgeNGram` token filter names that have been deprecated since
  13. version 6.4 have been removed. Both token filters can only be used by their
  14. alternative names `ngram` and `edge_ngram` since version 7.0.
  15. *Impact* +
  16. Use the equivalent `ngram` and `edge_ngram` token filters. Requests containing
  17. the `nGram` and `edgeNGram` token filter names will return an error.
  18. ====
  19. [[nGram-edgeNGram-tokenizer-dreprecation]]
  20. .The `nGram` and `edgeNGram` tokenizer names have been removed.
  21. [%collapsible]
  22. ====
  23. *Details* +
  24. The `nGram` and `edgeNGram` tokenizer names haven been deprecated with 7.6 and are no longer
  25. supported on new indices. Mappings for indices created after 7.6 will continue to work but
  26. emit a deprecation warning. The tokenizer name should be changed to the fully equivalent
  27. `ngram` or `edge_ngram` names for new indices and in index templates.
  28. *Impact* +
  29. Use the `ngram` and `edge_ngram` tokenizers. Requests to create new indices
  30. using the `nGram` and `edgeNGram` tokenizer names will return an error.
  31. ====
  32. // end::notable-breaking-changes[]