Filter
Last updated
Last updated
Filter transform plugin
Filter the field.
include_fields
array
no
exclude_fields
array
no
Notice, you must set one and only one of include_fields
and exclude_fields
properties
The list of fields that need to be kept. Fields not in the list will be deleted.
The list of fields that need to be deleted. Fields not in the list will be kept.
Transform plugin common parameters, please refer to for details
The data read from source is a table like this:
Joy Ding
20
123
May Ding
20
123
Kin Dom
20
123
Joy Dom
20
123
we want to keep the field named name
, card
, we can add a Filter
Transform like below:
Or we can delete the field named age
by adding a Filter
Transform with exclude_fields
field set like below:
It is useful when you want to delete a small number of fields from a large table with tons of fields.
Then the data in result table fake1
will like this
Joy Ding
123
May Ding
123
Kin Dom
123
Joy Dom
123