kafka-connect-file-pulse
kafka-connect-file-pulse copied to clipboard
filters.ParseDelimitedRow.columns
Hello, what I want to ask is about the usage of the columns key under DelimitedRowFilter in Processing Filters. There is no example of this parameter in your document.
Hi @GreenplumDB, the columns
property can be used for specifying both the name and type of each column.
For example, if your row record is "LivingRoom,Temperature,20.0,Celcius"
and columns
property is setted to sensor:STRING,measurement:STRING, value:DOUBLE,unit:STRING
then your parsed record will be :
{
"sensor": "LivingRoom",
"measurement": "Temperature",
"value": 20.0,
"unit": "Celcius"
}
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue was closed because it has been stalled for 30 days with no activity.