mirror of https://github.com/apache/druid.git
Add Datasketch aggregator integration test (#9277)
* add datasketch integration test * added datasketch integration tests
This commit is contained in:
parent
07a91f9022
commit
b856853f09
|
@ -15,7 +15,53 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
"description": "timeseries, datasketch aggs, all",
|
||||
"query":{
|
||||
"queryType" : "timeseries",
|
||||
"dataSource": "%%DATASOURCE%%",
|
||||
"granularity":"day",
|
||||
"intervals":[
|
||||
"2013-08-31T00:00/2013-09-01T00:00"
|
||||
],
|
||||
"filter":null,
|
||||
"aggregations":[
|
||||
{
|
||||
"type": "HLLSketchMerge",
|
||||
"name": "approxCountHLL",
|
||||
"fieldName": "HLLSketchBuild",
|
||||
"lgK": 12,
|
||||
"tgtHllType": "HLL_4",
|
||||
"round": true
|
||||
},
|
||||
{
|
||||
"type":"thetaSketch",
|
||||
"name":"approxCountTheta",
|
||||
"fieldName":"thetaSketch",
|
||||
"size":16384,
|
||||
"shouldFinalize":true,
|
||||
"isInputThetaSketch":false,
|
||||
"errorBoundsStdDev":null
|
||||
},
|
||||
{
|
||||
"type":"quantilesDoublesSketch",
|
||||
"name":"quantilesSketch",
|
||||
"fieldName":"quantilesDoublesSketch",
|
||||
"k":128
|
||||
}
|
||||
]
|
||||
},
|
||||
"expectedResults":[
|
||||
{
|
||||
"timestamp" : "2013-08-31T00:00:00.000Z",
|
||||
"result" : {
|
||||
"quantilesSketch":5,
|
||||
"approxCountTheta":5.0,
|
||||
"approxCountHLL":5
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description":"having spec on post aggregation",
|
||||
"query":{
|
||||
|
|
|
@ -22,6 +22,21 @@
|
|||
"type": "doubleSum",
|
||||
"name": "delta",
|
||||
"fieldName": "delta"
|
||||
},
|
||||
{
|
||||
"name": "thetaSketch",
|
||||
"type": "thetaSketch",
|
||||
"fieldName": "user"
|
||||
},
|
||||
{
|
||||
"name": "quantilesDoublesSketch",
|
||||
"type": "quantilesDoublesSketch",
|
||||
"fieldName": "delta"
|
||||
},
|
||||
{
|
||||
"name": "HLLSketchBuild",
|
||||
"type": "HLLSketchBuild",
|
||||
"fieldName": "user"
|
||||
}
|
||||
],
|
||||
"granularitySpec": {
|
||||
|
|
|
@ -93,6 +93,29 @@
|
|||
"type" : "longLast",
|
||||
"name" : "lastCount",
|
||||
"fieldName" : "count"
|
||||
},
|
||||
{
|
||||
"type":"HLLSketchBuild",
|
||||
"name":"approxCountHLL",
|
||||
"fieldName":"user",
|
||||
"lgK":12,
|
||||
"tgtHllType":"HLL_4",
|
||||
"round":true
|
||||
},
|
||||
{
|
||||
"type":"thetaSketch",
|
||||
"name":"approxCountTheta",
|
||||
"fieldName":"user",
|
||||
"size":16384,
|
||||
"shouldFinalize":true,
|
||||
"isInputThetaSketch":false,
|
||||
"errorBoundsStdDev":null
|
||||
},
|
||||
{
|
||||
"type":"quantilesDoublesSketch",
|
||||
"name":"quantilesDoublesSketch",
|
||||
"fieldName":"user",
|
||||
"k":2
|
||||
}
|
||||
],
|
||||
"context": {
|
||||
|
@ -111,6 +134,9 @@
|
|||
"lastAdded": 210.0,
|
||||
"firstCount": 1,
|
||||
"lastCount": 1,
|
||||
"quantilesDoublesSketch":2390950,
|
||||
"approxCountTheta":219483.4076460526,
|
||||
"approxCountHLL":216700,
|
||||
"delta": 5.48967603E8,
|
||||
"variation": 1.274085073E9,
|
||||
"delta_hist": {
|
||||
|
@ -218,6 +244,29 @@
|
|||
"type" : "longLast",
|
||||
"name" : "lastCount",
|
||||
"fieldName" : "count"
|
||||
},
|
||||
{
|
||||
"type":"HLLSketchBuild",
|
||||
"name":"approxCountHLL",
|
||||
"fieldName":"user",
|
||||
"lgK":12,
|
||||
"tgtHllType":"HLL_4",
|
||||
"round":true
|
||||
},
|
||||
{
|
||||
"type":"thetaSketch",
|
||||
"name":"approxCountTheta",
|
||||
"fieldName":"user",
|
||||
"size":16384,
|
||||
"shouldFinalize":true,
|
||||
"isInputThetaSketch":false,
|
||||
"errorBoundsStdDev":null
|
||||
},
|
||||
{
|
||||
"type":"quantilesDoublesSketch",
|
||||
"name":"quantilesDoublesSketch",
|
||||
"fieldName":"user",
|
||||
"k":2
|
||||
}
|
||||
],
|
||||
"context": {
|
||||
|
@ -236,6 +285,9 @@
|
|||
"lastAdded": 210.0,
|
||||
"firstCount": 1,
|
||||
"lastCount": 1,
|
||||
"quantilesDoublesSketch":1556534,
|
||||
"approxCountTheta":157226.06680543753,
|
||||
"approxCountHLL":158502,
|
||||
"delta": 2.24089868E8,
|
||||
"variation": 4.74698118E8,
|
||||
"delta_hist": {
|
||||
|
@ -433,6 +485,29 @@
|
|||
"type" : "longLast",
|
||||
"name" : "lastCount",
|
||||
"fieldName" : "count"
|
||||
},
|
||||
{
|
||||
"type":"HLLSketchBuild",
|
||||
"name":"approxCountHLL",
|
||||
"fieldName":"user",
|
||||
"lgK":12,
|
||||
"tgtHllType":"HLL_4",
|
||||
"round":true
|
||||
},
|
||||
{
|
||||
"type":"thetaSketch",
|
||||
"name":"approxCountTheta",
|
||||
"fieldName":"user",
|
||||
"size":16384,
|
||||
"shouldFinalize":true,
|
||||
"isInputThetaSketch":false,
|
||||
"errorBoundsStdDev":null
|
||||
},
|
||||
{
|
||||
"type":"quantilesDoublesSketch",
|
||||
"name":"quantilesDoublesSketch",
|
||||
"fieldName":"user",
|
||||
"k":2
|
||||
}
|
||||
],
|
||||
"dimension": "page",
|
||||
|
@ -453,6 +528,9 @@
|
|||
"count": 1697,
|
||||
"firstCount": 2,
|
||||
"lastCount": 3,
|
||||
"quantilesDoublesSketch":990,
|
||||
"approxCountTheta":330.0,
|
||||
"approxCountHLL":330,
|
||||
"firstAdded": 462.0,
|
||||
"lastAdded": 1871.0,
|
||||
"page": "Wikipedia:Administrators'_noticeboard/Incidents",
|
||||
|
@ -467,6 +545,9 @@
|
|||
"count": 967,
|
||||
"firstCount": 1,
|
||||
"lastCount": 1,
|
||||
"quantilesDoublesSketch":773,
|
||||
"approxCountTheta":309.0,
|
||||
"approxCountHLL":309,
|
||||
"firstAdded": 12.0,
|
||||
"lastAdded": 129.0,
|
||||
"page": "2013",
|
||||
|
@ -481,6 +562,9 @@
|
|||
"count": 1700,
|
||||
"firstCount": 1,
|
||||
"lastCount": 5,
|
||||
"quantilesDoublesSketch":991,
|
||||
"approxCountTheta":302.0,
|
||||
"approxCountHLL":302,
|
||||
"firstAdded": 0.0,
|
||||
"lastAdded": 2399.0,
|
||||
"page": "Wikipedia:Vandalismusmeldung",
|
||||
|
@ -580,6 +664,29 @@
|
|||
"type" : "longLast",
|
||||
"name" : "lastCount",
|
||||
"fieldName" : "count"
|
||||
},
|
||||
{
|
||||
"type":"HLLSketchBuild",
|
||||
"name":"approxCountHLL",
|
||||
"fieldName":"user",
|
||||
"lgK":12,
|
||||
"tgtHllType":"HLL_4",
|
||||
"round":true
|
||||
},
|
||||
{
|
||||
"type":"thetaSketch",
|
||||
"name":"approxCountTheta",
|
||||
"fieldName":"user",
|
||||
"size":16384,
|
||||
"shouldFinalize":true,
|
||||
"isInputThetaSketch":false,
|
||||
"errorBoundsStdDev":null
|
||||
},
|
||||
{
|
||||
"type":"quantilesDoublesSketch",
|
||||
"name":"quantilesDoublesSketch",
|
||||
"fieldName":"user",
|
||||
"k":2
|
||||
}
|
||||
],
|
||||
"dimension": "page",
|
||||
|
@ -602,6 +709,9 @@
|
|||
"lastCount": 1,
|
||||
"firstAdded": 12.0,
|
||||
"lastAdded": 129.0,
|
||||
"quantilesDoublesSketch":692,
|
||||
"approxCountTheta":251.0,
|
||||
"approxCountHLL":251,
|
||||
"page": "2013",
|
||||
"delta": 35313.0,
|
||||
"variation": 88165.0,
|
||||
|
@ -616,6 +726,9 @@
|
|||
"lastCount": 1,
|
||||
"firstAdded": 29.0,
|
||||
"lastAdded": 37.0,
|
||||
"quantilesDoublesSketch":398,
|
||||
"approxCountTheta":203.0,
|
||||
"approxCountHLL":203,
|
||||
"page": "Gérard_Depardieu",
|
||||
"delta": 7027.0,
|
||||
"variation": 49549.0,
|
||||
|
@ -630,6 +743,9 @@
|
|||
"lastCount": 1,
|
||||
"firstAdded": 29.0,
|
||||
"lastAdded": 35.0,
|
||||
"quantilesDoublesSketch":447,
|
||||
"approxCountTheta":13.0,
|
||||
"approxCountHLL":13,
|
||||
"page": "Zichyújfalu",
|
||||
"delta": 9030.0,
|
||||
"variation": 12872.0,
|
||||
|
@ -702,6 +818,29 @@
|
|||
"type" : "longLast",
|
||||
"name" : "lastCount",
|
||||
"fieldName" : "count"
|
||||
},
|
||||
{
|
||||
"type":"HLLSketchBuild",
|
||||
"name":"approxCountHLL",
|
||||
"fieldName":"user",
|
||||
"lgK":12,
|
||||
"tgtHllType":"HLL_4",
|
||||
"round":true
|
||||
},
|
||||
{
|
||||
"type":"thetaSketch",
|
||||
"name":"approxCountTheta",
|
||||
"fieldName":"user",
|
||||
"size":16384,
|
||||
"shouldFinalize":true,
|
||||
"isInputThetaSketch":false,
|
||||
"errorBoundsStdDev":null
|
||||
},
|
||||
{
|
||||
"type":"quantilesDoublesSketch",
|
||||
"name":"quantilesDoublesSketch",
|
||||
"fieldName":"user",
|
||||
"k":2
|
||||
}
|
||||
],
|
||||
"postAggregations": [
|
||||
|
@ -755,6 +894,9 @@
|
|||
"lastCount": 9,
|
||||
"firstAdded": 1612.0,
|
||||
"lastAdded": 560.0,
|
||||
"quantilesDoublesSketch":168,
|
||||
"approxCountTheta":1.0,
|
||||
"approxCountHLL":1,
|
||||
"page": "User:Cyde/List_of_candidates_for_speedy_deletion/Subpage",
|
||||
"delta": 670.0,
|
||||
"variation": 302148.0,
|
||||
|
@ -770,6 +912,9 @@
|
|||
"lastCount": 5,
|
||||
"firstAdded": 0.0,
|
||||
"lastAdded": 2399.0,
|
||||
"quantilesDoublesSketch":991,
|
||||
"approxCountTheta":302.0,
|
||||
"approxCountHLL":302,
|
||||
"page": "Wikipedia:Vandalismusmeldung",
|
||||
"delta": -5446.0,
|
||||
"variation": 1043750.0,
|
||||
|
@ -785,6 +930,9 @@
|
|||
"lastCount": 3,
|
||||
"firstAdded": 462.0,
|
||||
"lastAdded": 1871.0,
|
||||
"quantilesDoublesSketch":990,
|
||||
"approxCountTheta":330.0,
|
||||
"approxCountHLL":330,
|
||||
"page": "Wikipedia:Administrators'_noticeboard/Incidents",
|
||||
"delta": 770071.0,
|
||||
"variation": 2855849.0,
|
||||
|
@ -1009,7 +1157,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"description": "groupBy, six aggs, namespace + robot dim, postAggs",
|
||||
"description": "groupBy, nine aggs, namespace + robot dim, postAggs",
|
||||
"query": {
|
||||
"queryType": "groupBy",
|
||||
"dataSource": "wikipedia_editstream",
|
||||
|
@ -1044,6 +1192,29 @@
|
|||
"type" : "longLast",
|
||||
"name" : "lastCount",
|
||||
"fieldName" : "count"
|
||||
},
|
||||
{
|
||||
"type":"HLLSketchBuild",
|
||||
"name":"approxCountHLL",
|
||||
"fieldName":"user",
|
||||
"lgK":12,
|
||||
"tgtHllType":"HLL_4",
|
||||
"round":true
|
||||
},
|
||||
{
|
||||
"type":"thetaSketch",
|
||||
"name":"approxCountTheta",
|
||||
"fieldName":"user",
|
||||
"size":16384,
|
||||
"shouldFinalize":true,
|
||||
"isInputThetaSketch":false,
|
||||
"errorBoundsStdDev":null
|
||||
},
|
||||
{
|
||||
"type":"quantilesDoublesSketch",
|
||||
"name":"quantilesDoublesSketch",
|
||||
"fieldName":"user",
|
||||
"k":2
|
||||
}
|
||||
],
|
||||
"postAggregations": [
|
||||
|
@ -1084,6 +1255,9 @@
|
|||
"event": {
|
||||
"sumOfRowsAndCount": 2268154.0,
|
||||
"count": 1286354,
|
||||
"quantilesDoublesSketch":981800,
|
||||
"approxCountTheta":196257.61632104203,
|
||||
"approxCountHLL":194323,
|
||||
"firstCount": 1,
|
||||
"lastCount": 1,
|
||||
"firstAdded": 70.0,
|
||||
|
@ -1099,6 +1273,9 @@
|
|||
"event": {
|
||||
"sumOfRowsAndCount": 1385233.0,
|
||||
"count": 693711,
|
||||
"quantilesDoublesSketch":691522,
|
||||
"approxCountTheta":256.0,
|
||||
"approxCountHLL":256,
|
||||
"firstCount": 1,
|
||||
"lastCount": 1,
|
||||
"firstAdded": 39.0,
|
||||
|
@ -1114,6 +1291,9 @@
|
|||
"event": {
|
||||
"sumOfRowsAndCount": 878393.0,
|
||||
"count": 492643,
|
||||
"quantilesDoublesSketch":385750,
|
||||
"approxCountTheta":48129.087284782676,
|
||||
"approxCountHLL":47963,
|
||||
"firstCount": 2,
|
||||
"lastCount": 1,
|
||||
"firstAdded": 431.0,
|
||||
|
@ -1174,12 +1354,12 @@
|
|||
{
|
||||
"dimension": "page",
|
||||
"value": "League_of_Legends",
|
||||
"count":21
|
||||
"count":21
|
||||
},
|
||||
{
|
||||
"dimension": "page",
|
||||
"value": "The_best_ADs_in_The_League_of_legends",
|
||||
"count":2
|
||||
"count":2
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue