plugin-changes.asciidoc 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [discrete]
  2. [[breaking_80_plugin_changes]]
  3. ==== Plugin 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. TIP: {ess-skip-section}
  8. .The S3, GCS and Azure repository plugins are now included in Elasticsearch
  9. [%collapsible]
  10. ====
  11. *Details* +
  12. In previous versions of {es}, in order to register a snapshot repository
  13. backed by Amazon S3, Google Cloud Storge (GCS) or Microsoft Azure Blob
  14. Storage, you first had to install the corresponding Elasticsearch plugin,
  15. for example `repository-s3`. These plugins are now included in {es} by
  16. default.
  17. *Impact* +
  18. You no longer need to install the following plugins, and not should attempt
  19. to do so.
  20. * `repository-azure`
  21. * `repository-gcs`
  22. * `repository-s3`
  23. {es} and the `elasticsearch-plugin` CLI tool have been changed to tolerate
  24. attempted installation and removal of these plugins in order to avoid
  25. breaking any existing automation. In the future, attempting to install
  26. these plugins will be an error.
  27. Specifically, the `elasticsearch-plugin` CLI tool will not fail if you
  28. attempt to install any of the above plugins, and will instead print a
  29. warning and skip the plugins. If any of these plugins are already
  30. installed, for example because you installed them when running an older
  31. version of {es}, then you can still remove them with
  32. `elasticsearch-plugin`. Attempting to remove them if they are not installed
  33. will succeed but print a warnings.
  34. If you run {es} using Docker and you are managing plugins using a
  35. {plugins}/manage-plugins-using-configuration-file.html[configuration file], then when
  36. {es} first starts after you upgrade it, it will remove the above plugins if
  37. they already installed. If any of these plugins are specified in your
  38. configuration file, {es} will ignore them and emit a warning log message.
  39. ====
  40. //end::notable-breaking-changes[]