migrate_8_0.asciidoc 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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_allocation_changes>>
  12. * <<breaking_80_analysis_changes>>
  13. * <<breaking_80_breaker_changes>>
  14. * <<breaking_80_cluster_changes>>
  15. * <<breaking_80_discovery_changes>>
  16. * <<breaking_80_http_changes>>
  17. * <<breaking_80_ilm_changes>>
  18. * <<breaking_80_indices_changes>>
  19. * <<breaking_80_java_changes>>
  20. * <<breaking_80_mappings_changes>>
  21. * <<breaking_80_network_changes>>
  22. * <<breaking_80_node_changes>>
  23. * <<breaking_80_packaging_changes>>
  24. * <<breaking_80_reindex_changes>>
  25. * <<breaking_80_api_changes>>
  26. * <<breaking_80_rollup_changes>>
  27. * <<breaking_80_search_changes>>
  28. * <<breaking_80_security_changes>>
  29. * <<breaking_80_settings_changes>>
  30. * <<breaking_80_snapshots_changes>>
  31. * <<breaking_80_threadpool_changes>>
  32. * <<breaking_80_transport_changes>>
  33. //NOTE: The notable-breaking-changes tagged regions are re-used in the
  34. //Installation and Upgrade Guide
  35. //tag::notable-breaking-changes[]
  36. .Indices created in {es} 6.x and earlier versions are not supported.
  37. [%collapsible]
  38. ====
  39. *Details* +
  40. Elasticsearch 8.0 can read indices created in version 7.0 or above. An
  41. Elasticsearch 8.0 node will not start in the presence of indices created in a
  42. version of Elasticsearch before 7.0.
  43. *Impact* +
  44. Reindex indices created in {es} 6.x or before with {es} 7.x if they need to be carried forward to {es} 8.x.
  45. ====
  46. .REST API endpoints containing `_xpack` have been removed.
  47. [%collapsible]
  48. ====
  49. *Details* +
  50. In 7.0, we deprecated REST endpoints that contain `_xpack` in their path. These
  51. endpoints are now removed in 8.0. Each endpoint that was deprecated and removed
  52. is replaced with a new endpoint that does not contain `_xpack`. As an example,
  53. `/{index}/_xpack/graph/_explore` is replaced by `/{index}/_graph/explore`.
  54. *Impact* +
  55. Use the replacement REST API endpoints. Requests submitted to the `_xpack`
  56. API endpoints will return an error.
  57. ====
  58. // end::notable-breaking-changes[]
  59. include::migrate_8_0/aggregations.asciidoc[]
  60. include::migrate_8_0/allocation.asciidoc[]
  61. include::migrate_8_0/analysis.asciidoc[]
  62. include::migrate_8_0/breaker.asciidoc[]
  63. include::migrate_8_0/cluster.asciidoc[]
  64. include::migrate_8_0/discovery.asciidoc[]
  65. include::migrate_8_0/http.asciidoc[]
  66. include::migrate_8_0/ilm.asciidoc[]
  67. include::migrate_8_0/indices.asciidoc[]
  68. include::migrate_8_0/java.asciidoc[]
  69. include::migrate_8_0/mappings.asciidoc[]
  70. include::migrate_8_0/network.asciidoc[]
  71. include::migrate_8_0/node.asciidoc[]
  72. include::migrate_8_0/packaging.asciidoc[]
  73. include::migrate_8_0/reindex.asciidoc[]
  74. include::migrate_8_0/api.asciidoc[]
  75. include::migrate_8_0/rollup.asciidoc[]
  76. include::migrate_8_0/search.asciidoc[]
  77. include::migrate_8_0/security.asciidoc[]
  78. include::migrate_8_0/settings.asciidoc[]
  79. include::migrate_8_0/snapshots.asciidoc[]
  80. include::migrate_8_0/threadpool.asciidoc[]
  81. include::migrate_8_0/transport.asciidoc[]