Hi
I want to convert the SQL column that contains text data to array of strings before storing into the elastics server.
eg:
Data in SQL with column name as "tags"
tags : "Monday Today lastday"
i want to store this as array of strings in elastic server as same field name "tag" or new name
"tags" : ["Monday", "Today","lastday"]
Could some suggest the config i need to give in logstash-jdbc.conf to convert input text sentence to array of strings that need to be stored as new field in elastic server using logstash ?