analysis.asciidoc 1.4 KB

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