migrate_8_0.asciidoc 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. [[breaking-changes-8.0]]
  2. == Breaking changes in 8.0
  3. ++++
  4. <titleabbrev>8.0</titleabbrev>
  5. ++++
  6. This section discusses the changes that you need to be aware of when migrating
  7. your application to {es} 8.0.
  8. See also <<release-highlights>> and <<es-release-notes>>.
  9. coming[8.0.0]
  10. * <<breaking_80_aggregations_changes>>
  11. * <<breaking_80_analysis_changes>>
  12. * <<breaking_80_allocation_changes>>
  13. * <<breaking_80_breaker_changes>>
  14. * <<breaking_80_discovery_changes>>
  15. * <<breaking_80_mappings_changes>>
  16. * <<breaking_80_packaging_changes>>
  17. * <<breaking_80_rollup_changes>>
  18. * <<breaking_80_snapshots_changes>>
  19. * <<breaking_80_security_changes>>
  20. * <<breaking_80_ilm_changes>>
  21. * <<breaking_80_java_changes>>
  22. * <<breaking_80_network_changes>>
  23. * <<breaking_80_node_changes>>
  24. * <<breaking_80_transport_changes>>
  25. * <<breaking_80_http_changes>>
  26. * <<breaking_80_reindex_changes>>
  27. * <<breaking_80_search_changes>>
  28. * <<breaking_80_settings_changes>>
  29. * <<breaking_80_indices_changes>>
  30. * <<breaking_80_api_changes>>
  31. //NOTE: The notable-breaking-changes tagged regions are re-used in the
  32. //Installation and Upgrade Guide
  33. //tag::notable-breaking-changes[]
  34. [float]
  35. ==== Indices created before 7.0
  36. Elasticsearch 8.0 can read indices created in version 7.0 or above. An
  37. Elasticsearch 8.0 node will not start in the presence of indices created in a
  38. version of Elasticsearch before 7.0.
  39. [IMPORTANT]
  40. .Reindex indices from Elasticsearch 6.x or before
  41. =========================================
  42. Indices created in Elasticsearch 6.x or before will need to be reindexed with
  43. Elasticsearch 7.x in order to be readable by Elasticsearch 8.x.
  44. =========================================
  45. [float]
  46. ==== REST endpoints containing `_xpack`
  47. In 7.0, we deprecated REST endpoints that contain `_xpack` in their path. These
  48. endpoints are now removed in 8.0. Each endpoint that was deprecated and removed
  49. is replaced with a new endpoint that does not contain `_xpack`. As an example,
  50. `/{index}/_xpack/graph/_explore` is replaced by `/{index}/_graph/explore`.
  51. // end::notable-breaking-changes[]
  52. include::migrate_8_0/aggregations.asciidoc[]
  53. include::migrate_8_0/analysis.asciidoc[]
  54. include::migrate_8_0/allocation.asciidoc[]
  55. include::migrate_8_0/breaker.asciidoc[]
  56. include::migrate_8_0/discovery.asciidoc[]
  57. include::migrate_8_0/mappings.asciidoc[]
  58. include::migrate_8_0/packaging.asciidoc[]
  59. include::migrate_8_0/rollup.asciidoc[]
  60. include::migrate_8_0/snapshots.asciidoc[]
  61. include::migrate_8_0/security.asciidoc[]
  62. include::migrate_8_0/ilm.asciidoc[]
  63. include::migrate_8_0/java.asciidoc[]
  64. include::migrate_8_0/network.asciidoc[]
  65. include::migrate_8_0/node.asciidoc[]
  66. include::migrate_8_0/transport.asciidoc[]
  67. include::migrate_8_0/http.asciidoc[]
  68. include::migrate_8_0/reindex.asciidoc[]
  69. include::migrate_8_0/search.asciidoc[]
  70. include::migrate_8_0/settings.asciidoc[]
  71. include::migrate_8_0/threadpool.asciidoc[]
  72. include::migrate_8_0/indices.asciidoc[]
  73. include::migrate_8_0/api.asciidoc[]