WARNING: Version 2.0 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_filter
. Splits tokens into tokens and payload whenever a delimiter character is found.
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
.