WARNING: Version 6.2 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Delimited Payload Token Filter
editDelimited Payload Token Filter
editNamed delimited_payload
. Splits tokens into tokens and payload whenever a delimiter character is found.
The older name delimited_payload_filter
is deprecated and should not be used for new indices. Use delimited_payload
instead.
Example: "the|1 quick|2 fox|3" is split by default into tokens the
, quick
, and fox
with payloads 1
, 2
, and 3
respectively.
Parameters:
-
delimiter
-
Character used for splitting the tokens. Default is
|
. -
encoding
-
The type of the payload.
int
for integer,float
for float andidentity
for characters. Default isfloat
.