Best way for add comma separated field value in Elasticsearch index

In our mysql data we have one column with comma separated integer value. and I am using this value in where condition also using find_in_set for get specific result. I need option like this in Elasticsearch also.

Currently i prepare index with nested datatype like below:
"doctype": {
"type": "nested",
"properties": {
"d": {
"type": "short"
}
}
},

But when i check this value in Kibana, It gives worning like : Object in Array is not well supported.

I want to know Is there any better way to store this type of data? Is these type of value can affect on ELasticsearch?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.