NOTE: You are looking at documentation for an older release. 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
.