4 questions
1
vote
0
answers
125
views
Elastic Transform aggregation to return multiple rows per group
I am using Elasticsearch 8.3.3 and trying to make specific index Transform operation in Kibana. More specifically:
Make groupby of documents by documentId;
Apply aggregation using custom "...
0
votes
1
answer
161
views
How to have ingest time - processing time as a field in elastic transform
I have a pivot transform in elastic that groups data and then performs some arbitrary aggregations on it. The transform frequency is 10 minutes, which means it runs every 10 minutes.
Processing of the ...
1
vote
1
answer
904
views
Transforming in elasticsearch not update aggregated data
I am working on a scenario to aggregate daily data per user. The data processed realtime and stored in elasticsearch. Now I wanno use elasticsearch feature for aggregating data in real time.Iv'e read ...
1
vote
0
answers
197
views
How to merge two data sets using common field and using transform s with the help of elastic search query
Using transforms in elasticsearch how to merge two datasets if the have same field for example
Table A
id name
1 a
2 b
Table B
id name
1 c
3 d
If both the ids are same then merge the datas in ...