transform-settings.asciidoc 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [role="xpack"]
  2. [[transform-settings]]
  3. === {transforms-cap} settings in Elasticsearch
  4. [subs="attributes"]
  5. ++++
  6. <titleabbrev>{transforms-cap} settings</titleabbrev>
  7. ++++
  8. You do not need to configure any settings to use {transforms}. It is enabled by
  9. default.
  10. [discrete]
  11. [[general-transform-settings]]
  12. ==== General {transforms} settings
  13. `node.roles: [ transform ]`::
  14. (<<static-cluster-setting,Static>>) Set `node.roles` to contain `transform` to
  15. identify the node as a _transform node_. If you use the default settings for a
  16. node, it does not have the `transform` role.
  17. +
  18. If a node doesn't have this role, the node cannot run transforms. If you want to
  19. run transforms, there must be at least one transform node in your cluster.
  20. +
  21. If you use the `node.roles` setting, all required roles must be explicitly set.
  22. Consult <<modules-node>> to learn more.
  23. `xpack.transform.enabled`::
  24. deprecated:[7.8.0,Basic License features should always be enabled]
  25. (<<static-cluster-setting,Static>>) This deprecated setting no longer has any
  26. effect.
  27. `xpack.transform.num_transform_failure_retries`::
  28. (<<cluster-update-settings,Dynamic>>) The number of times that a {transform}
  29. retries when it experiences a non-fatal error. Once the number of retries is
  30. exhausted, the {transform} task is marked as `failed`. The default value is `10`
  31. with a valid minimum of `0` and maximum of `100`. If a {transform} is already
  32. running, it has to be restarted to use the changed setting.