IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Delimited Payload Token Filter
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Delimited 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
.