I have multiple Documents within an Index, each have the following fields:
id serviceName Type
Now, stupidly, id
is not unique and I want to change that. I want to use Kibana/Elasticsearch to query the data so that I have id
unique and the behaviour I want is that if I have the following Docs:
id serviceName Type
1 A T1
1 B T2
1 D T2
I use a query so that I get this result
1 A,B,C T1,T2,T3
Is there a way for this?