mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-01 16:39:11 +00:00
Because transforms get assigned to an arbitrary data node it is important that the transforms plugin is enabled on every data node.
41 lines
1.6 KiB
Plaintext
41 lines
1.6 KiB
Plaintext
|
|
[role="xpack"]
|
|
[[data-frames-settings]]
|
|
=== {transforms-cap} settings in Elasticsearch
|
|
[subs="attributes"]
|
|
++++
|
|
<titleabbrev>{transforms-cap} settings</titleabbrev>
|
|
++++
|
|
|
|
You do not need to configure any settings to use {transforms}. It is enabled by default.
|
|
|
|
All of these settings can be added to the `elasticsearch.yml` configuration file.
|
|
The dynamic settings can also be updated across a cluster with the
|
|
<<cluster-update-settings,cluster update settings API>>.
|
|
|
|
TIP: Dynamic settings take precedence over settings in the `elasticsearch.yml`
|
|
file.
|
|
|
|
[float]
|
|
[[general-data-frames-settings]]
|
|
==== General {transforms} settings
|
|
|
|
`xpack.transform.enabled`::
|
|
Set to `true` (default) to enable {transforms} on the node. +
|
|
+
|
|
If set to `false` in `elasticsearch.yml`, the {transform} APIs are disabled on the node.
|
|
Therefore the node cannot start or administrate {transform} or receive transport (internal)
|
|
communication requests related to {transform} APIs.
|
|
+
|
|
IMPORTANT: If you want to use {transform} features in your cluster, you must have
|
|
`xpack.transform.enabled` set to `true` on all master-eligible nodes and all data nodes.
|
|
This is the default behavior.
|
|
|
|
`xpack.transform.num_transform_failure_retries` (<<cluster-update-settings,Dynamic>>)::
|
|
The number of times that a {transform} retries when it experiences a
|
|
non-fatal error. Once the number of retries is exhausted, the {transform}
|
|
task will be marked as `failed`. The default value is `10` with a valid minimum of `0`
|
|
and maximum of `100`.
|
|
If a {transform} is already running, it will have to be restarted
|
|
to use the changed setting.
|