ingest.asciidoc 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [discrete]
  2. [[breaking_80_ingest_changes]]
  3. ==== Ingest pipeline 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. .The `user_agent` ingest processor's `ecs` parameter has no effect.
  8. [%collapsible]
  9. ====
  10. *Details* +
  11. In 7.2, we deprecated the `ecs` parameter for the `user_agent` ingest processor.
  12. In 8.x, the `user_agent` ingest processor will only return {ecs-ref}[Elastic
  13. Common Schema (ECS)] fields, regardless of the `ecs` value.
  14. *Impact* +
  15. To avoid deprecation warnings, remove the parameter from your ingest pipelines.
  16. If a pipeline specifies an `ecs` value, the value is ignored.
  17. ====
  18. .The default Maxmind geoip databases have been removed.
  19. [%collapsible]
  20. ====
  21. *Details* +
  22. The default Maxmind geoip databases that shipped by default with Elasticsearch
  23. have been removed. These databases are out dated and stale and using these
  24. databases will likely result in incorrect geoip lookups.
  25. By default since 7.13, these pre-packaged geoip databases
  26. were used in case no database were specified in the config directory or before
  27. the geoip downloader downloaded the geoip databases. When the geoip database
  28. downloader completed downloading the new databases then these pre-packaged
  29. databases were no longer used.
  30. *Impact* +
  31. If the geoip downloader is disabled and no geoip databases are provided
  32. in the config directory of each ingest node then the geoip processor will
  33. no longer perform geoip lookups and tag these documents with the fact that
  34. the requested database is no longer available.
  35. After a cluster has been started and before the geoip downloader has completed
  36. downloading the most up to data databases, the geoip processor will not perform
  37. any geoip lookups and tag documents that the requested database is not available.
  38. After the geoip downloader has completed downloading the most up to data databases
  39. then the geoip processor will function as normal. The window of time that the
  40. geoip processor can't do geoip lookups after cluster startup should be very small.
  41. ====
  42. //end::notable-breaking-changes[]