mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
Fix ignore_missing docs for a couple of Ingest processors (#95244)
This commit is contained in:
parent
991507860a
commit
9bc09d576a
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ Extracts fields from CSV line out of a single text field within a document. Any
|
||||||
| `target_fields` | yes | - | The array of fields to assign extracted values to
|
| `target_fields` | yes | - | The array of fields to assign extracted values to
|
||||||
| `separator` | no | , | Separator used in CSV, has to be single character string
|
| `separator` | no | , | Separator used in CSV, has to be single character string
|
||||||
| `quote` | no | " | Quote used in CSV, has to be single character string
|
| `quote` | no | " | Quote used in CSV, has to be single character string
|
||||||
| `ignore_missing` | no | `true` | If `true` and `field` does not exist, the processor quietly exits without modifying the document
|
| `ignore_missing` | no | `false` | If `true` and `field` does not exist, the processor quietly exits without modifying the document
|
||||||
| `trim` | no | `false` | Trim whitespaces in unquoted fields
|
| `trim` | no | `false` | Trim whitespaces in unquoted fields
|
||||||
| `empty_value` | no | - | Value used to fill empty fields, empty fields will be skipped if this is not provided.
|
| `empty_value` | no | - | Value used to fill empty fields, empty fields will be skipped if this is not provided.
|
||||||
Empty field is one with no value (2 consecutive separators) or empty quotes (`""`)
|
Empty field is one with no value (2 consecutive separators) or empty quotes (`""`)
|
||||||
|
|
|
@ -38,7 +38,7 @@ patterns. Legacy Grok patterns are not supported.
|
||||||
| `pattern_definitions` | no | - | A map of pattern-name and pattern tuples defining custom patterns to be used by the processor. Patterns matching existing names will override the pre-existing definition
|
| `pattern_definitions` | no | - | A map of pattern-name and pattern tuples defining custom patterns to be used by the processor. Patterns matching existing names will override the pre-existing definition
|
||||||
| `prefix` | no | < | Start a redacted section with this token
|
| `prefix` | no | < | Start a redacted section with this token
|
||||||
| `suffix` | no | > | End a redacted section with this token
|
| `suffix` | no | > | End a redacted section with this token
|
||||||
| `ignore_missing` | no | false | If `true` and `field` does not exist or is `null`, the processor quietly exits without modifying the document
|
| `ignore_missing` | no | `true` | If `true` and `field` does not exist or is `null`, the processor quietly exits without modifying the document
|
||||||
include::common-options.asciidoc[]
|
include::common-options.asciidoc[]
|
||||||
|======
|
|======
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue