summaryrefslogtreecommitdiff
path: root/docs/reference/ingest
diff options
context:
space:
mode:
authorTal Levy <JubBoy333@gmail.com>2016-11-16 15:46:09 +0200
committerGitHub <noreply@github.com>2016-11-16 15:46:09 +0200
commit6796464f167ce293192c43efd1cf28e4434fd5da (patch)
tree23f3e55e18ba682d30d376e848df8b03345401f8 /docs/reference/ingest
parent04b712bdc5d603786dcd3c3d254468aff7f23bb9 (diff)
add `ignore_missing` option to SplitProcessor (#20982)
Closes #20840.
Diffstat (limited to 'docs/reference/ingest')
-rw-r--r--docs/reference/ingest/ingest-node.asciidoc7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/reference/ingest/ingest-node.asciidoc b/docs/reference/ingest/ingest-node.asciidoc
index 1ac1134f77..ed50a0f717 100644
--- a/docs/reference/ingest/ingest-node.asciidoc
+++ b/docs/reference/ingest/ingest-node.asciidoc
@@ -1627,9 +1627,10 @@ Splits a field into an array using a separator character. Only works on string f
.Split Options
[options="header"]
|======
-| Name | Required | Default | Description
-| `field` | yes | - | The field to split
-| `separator` | yes | - | A regex which matches the separator, eg `,` or `\s+`
+| Name | Required | Default | Description
+| `field` | yes | - | The field to split
+| `separator` | yes | - | A regex which matches the separator, eg `,` or `\s+`
+| `ignore_missing` | no | `false` | If `true` and `field` does not exist, the processor quietly exits without modifying the document
|======
[source,js]