You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`float`|`Integer` values (may lose precision for absolute values greater than 2^24^)<br><br>`Long` values (may lose precision for absolute values greater than 2^24^)<br><br>`Float` values<br><br>`Double` values (may lose precision)<br><br>`String` values representing a floating point number in decimal, scientific, or hex format (e.g. `"123.0"`, `"123.45"`, `"1.23e2"`, or `"0x1.ecp6"`) or an integer (may lose precision, and will give positive or negative infinity if out of range for a 32-bit floating point value) |
20
20
|`double`|`Integer` values<br><br>`Long` values (may lose precision for absolute values greater than 2^53^)<br><br>`Float` values<br><br>`Double` values<br><br>`String` values representing a floating point number in decimal, scientific, or hex format (e.g. `"123.0"`, `"123.45"`, `"1.23e2"`, or `"0x1.ecp6"`) or an integer (may lose precision, and will give positive or negative infinity if out of range for a 64-bit floating point value) |
21
21
|`string`| All values |
22
-
|`boolean`|`Boolean` values<br><br>`String` values matching `"true"` or `"false"` (caseinsensitive) |
22
+
|`boolean`|`Boolean` values<br><br>`String` values matching `"true"` or `"false"` (case-insensitive) |
23
23
|`ip`|`String` values containing a valid IPv4 or IPv6 address that can be indexed into an [IP field type](/reference/elasticsearch/mapping-reference/ip.md)|
24
24
|`auto`| All values (see below) |
25
25
@@ -29,8 +29,8 @@ Specifying `auto` will attempt to convert a string-valued `field` into the close
29
29
lose precision, and will give positive or negative infinity if out of range for a 32-bit floating point value).
30
30
- A string representing a floating point number in decimal, scientific, or hex format (e.g. `"123.0"`, `"123.45"`, `"1.23e2"`, or `"0x1.ecp6"`) will be converted to a `Float` (and may lose precision, and will give positive or negative infinity if out of range for a 32-bit floating point value).
31
31
32
-
Using `auto` to convert a `field` which is either not a `String` or a `String` which cannot be will leave the field
33
-
value as-is. In such a case, `target_field` will be updated with the unconverted field value.
32
+
Using `auto` to convert a `field` which is either not a `String` or a `String` which cannot be converted will leave the
33
+
field value as-is. In such a case, `target_field` will be updated with the unconverted field value.
34
34
35
35
:::{tip}
36
36
If conversions other than those provided by this processor are required, the
0 commit comments