setup.asciidoc 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [role="xpack"]
  2. [[transform-setup]]
  3. === Set up {transforms}
  4. ++++
  5. <titleabbrev>Setup</titleabbrev>
  6. ++++
  7. To use the {transforms}, you must have the
  8. {subscriptions}[appropriate license] and at least one
  9. <<transform-setup-nodes,{transform} node>> in your {es} cluster. If {stack}
  10. {security-features} are enabled, you must also ensure your users have the
  11. <<transform-privileges,necessary privileges>>.
  12. [discrete]
  13. [[transform-setup-nodes]]
  14. ==== {transform-cap} nodes
  15. To use {transforms}, there must be at least one node in your cluster with
  16. `xpack.transform.enabled` and `node.transform` set to `true`. By default, all
  17. nodes are {transform} nodes unless you explicitly change these settings or set
  18. `node.data` to `false`.
  19. If you want to control which nodes run {transforms}, set `node.transform` to
  20. `false` on some nodes.
  21. For more information, see <<transform-settings>> and <<modules-node>>.
  22. [discrete]
  23. [[transform-privileges]]
  24. ==== Security privileges
  25. The {es} {security-features} provide <<built-in-roles,built-in roles>>
  26. and <<security-privileges,privileges>> that make it easier to control
  27. which users can manage or view {transforms}.
  28. To _view_ the configuration and status of {transforms}, you must have:
  29. * `transform_user` built-in role or `monitor_transform`
  30. cluster privileges
  31. To _manage_ {transforms}, you must have:
  32. * `transform_admin` built-in role or `manage_transform`
  33. cluster privileges
  34. * `read` and `view_index_metadata` index privileges on source indices
  35. * `read`, `create_index`, and `index` index privileges on destination indices
  36. For more information, see <<security-privileges>> and <<built-in-roles>>.