Hi,
I have two .csv files. I have a column in each document that is key for me ElasticSearch. When logstash indexes data overwrites the oldest values. Is it possible to keep these values in a table?
For example :
Csv file 1:
key; string
1; "abc"
2; "def"
3; "ghi"
2; "jkl"
Csv file 2:
key; number
1; 50
2, 47
ElasticSearch file:
key, string, number
1; "abc"; 50
2; "jkl"; 47
3; "ghi"
What I want:
1; [ "abc"]; [50]
2; ["def," jkl "]; [47]
3; [ "ghi"]