Hi all,
I've installed ES on a cluster, first I added a mapping, then put the data on the index.
On a double type field I query for an aggregation.
GET myindex/mytype/_search
{
"query": {
"filtered": {
"query": {
"match": {
"myField": 10
}
},
"filter": {
"range": {
"myDateField": {
"gt": "2015-01-01"
}
}
}
}
},
"aggs": {
"sumOfAMeasureField": {
"sum": {
"field": "myMoneyField"
}
}
}
}
Each run shows different results, like below. there are no failing shards, the number of rows returned is same, but the agg differs
3408065.5425
3408064.765
Any comment?
Regards and thanks
Özgür