-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Description
Elasticsearch version:
2.3.0
JVM version:
java version "1.8.0_77"
Java(TM) SE Runtime Environment (build 1.8.0_77-b03)
Java HotSpot(TM) 64-Bit Server VM (build 25.77-b03, mixed mode)
OS version:
Windows 10
Description of the problem including expected versus actual behavior:
The documentation for Extended Stats Aggregation specifies that sigma can be any non-negative double. In the example in the docs, 3 is passed as the value for sigma.
Extended Stats Bucket Aggregation also has a sigma parameter but the documentation does not specify what type sigma is. I assumed it is also a double and confirmed this with a (failing) integration test for NEST; a parse exception is returned when passing an integer (i.e. no decimal places) as the value for sigma. I would expect an integer to be valid value as an input for a double, based on the example provided for Extended Stats Aggregation.
Steps to reproduce:
- Failing request (from NEST integration test). Notice the value of
2forsigma
{
"size": 0,
"aggs": {
"projects_started_per_month": {
"date_histogram": {
"field": "startedOn",
"interval": "month"
},
"aggs": {
"commits": {
"sum": {
"field": "numberOfCommits"
}
}
}
},
"extended_stats_commits_per_month": {
"extended_stats_bucket": {
"buckets_path": "projects_started_per_month>commits",
"sigma": 2
}
}
}
}returns:
{
"error" : {
"root_cause" : [ {
"type" : "parse_exception",
"reason" : "Parameter [sigma] must be a Double, type `Integer` provided instead"
} ],
"type" : "search_phase_execution_exception",
"reason" : "all shards failed",
"phase" : "query",
"grouped" : true,
"failed_shards" : [ {
"shard" : 0,
"index" : "project",
"node" : "afZfSF7hQoqmZQip5n3-LQ",
"reason" : {
"type" : "parse_exception",
"reason" : "Parameter [sigma] must be a Double, type `Integer` provided instead"
}
} ]
},
"status" : 500
}- Change the request from step 1, to change value of
sigmafrom2to2.0:
{
"size": 0,
"aggs": {
"projects_started_per_month": {
"date_histogram": {
"field": "startedOn",
"interval": "month"
},
"aggs": {
"commits": {
"sum": {
"field": "numberOfCommits"
}
}
}
},
"extended_stats_commits_per_month": {
"extended_stats_bucket": {
"buckets_path": "projects_started_per_month>commits",
"sigma": 2.0
}
}
}
}successfully returns results:
{
"took" : 4,
"timed_out" : false,
"_shards" : {
"total" : 2,
"successful" : 2,
"failed" : 0
},
"hits" : {
"total" : 100,
"max_score" : 0.0,
"hits" : [ ]
},
"aggregations" : {
"projects_started_per_month" : {
"buckets" : [ {
"key_as_string" : "2015-04-01T00:00:00.000Z",
"key" : 1427846400000,
"doc_count" : 2,
"commits" : {
"value" : 796.0
}
}, {
"key_as_string" : "2015-05-01T00:00:00.000Z",
"key" : 1430438400000,
"doc_count" : 12,
"commits" : {
"value" : 4982.0
}
}, {
"key_as_string" : "2015-06-01T00:00:00.000Z",
"key" : 1433116800000,
"doc_count" : 13,
"commits" : {
"value" : 5847.0
}
}, {
"key_as_string" : "2015-07-01T00:00:00.000Z",
"key" : 1435708800000,
"doc_count" : 7,
"commits" : {
"value" : 3693.0
}
}, {
"key_as_string" : "2015-08-01T00:00:00.000Z",
"key" : 1438387200000,
"doc_count" : 7,
"commits" : {
"value" : 3848.0
}
}, {
"key_as_string" : "2015-09-01T00:00:00.000Z",
"key" : 1441065600000,
"doc_count" : 8,
"commits" : {
"value" : 4421.0
}
}, {
"key_as_string" : "2015-10-01T00:00:00.000Z",
"key" : 1443657600000,
"doc_count" : 9,
"commits" : {
"value" : 5119.0
}
}, {
"key_as_string" : "2015-11-01T00:00:00.000Z",
"key" : 1446336000000,
"doc_count" : 1,
"commits" : {
"value" : 339.0
}
}, {
"key_as_string" : "2015-12-01T00:00:00.000Z",
"key" : 1448928000000,
"doc_count" : 12,
"commits" : {
"value" : 4218.0
}
}, {
"key_as_string" : "2016-01-01T00:00:00.000Z",
"key" : 1451606400000,
"doc_count" : 10,
"commits" : {
"value" : 4804.0
}
}, {
"key_as_string" : "2016-02-01T00:00:00.000Z",
"key" : 1454284800000,
"doc_count" : 7,
"commits" : {
"value" : 4316.0
}
}, {
"key_as_string" : "2016-03-01T00:00:00.000Z",
"key" : 1456790400000,
"doc_count" : 10,
"commits" : {
"value" : 5009.0
}
}, {
"key_as_string" : "2016-04-01T00:00:00.000Z",
"key" : 1459468800000,
"doc_count" : 2,
"commits" : {
"value" : 1664.0
}
} ]
},
"extended_stats_commits_per_month" : {
"count" : 13,
"min" : 339.0,
"max" : 5847.0,
"avg" : 3773.5384615384614,
"sum" : 49056.0,
"sum_of_squares" : 2.21307799E8,
"variance" : 2784084.325443786,
"std_deviation" : 1668.55755832509,
"std_deviation_bounds" : {
"upper" : 7110.653578188641,
"lower" : 436.42334488828146
}
}
}
}