node-druid-query
node-druid-query copied to clipboard
Simple querying library for Druid (http://druid.io)
Hey, if you want to develop this library further I can give you an access to this repo and add you as an NPM contributor. I'm not maintaining nor doing...
Error: Unknown error (status: %d) while executing query: %s at Request.onresponse [as _callback] (/home/sanjay/Work/Projects/curvecue-infrastructure/webapi/node_modules/druid-query/lib/client.js:226:16) at Request.self.callback (/home/sanjay/Work/Projects/curvecue-infrastructure/webapi/node_modules/request/request.js:186:22) at Request.emit (events.js:314:20) at Request.EventEmitter.emit (domain.js:486:12) at Request. (/home/sanjay/Work/Projects/curvecue-infrastructure/webapi/node_modules/request/request.js:1060:10) at Request.emit (events.js:314:20) at...
Hi @estliberitas, great work! Was wondering if you are planning on supporting the '**filtered**' aggregator type any time soon? [http://druid.io/docs/latest/querying/aggregations.html#miscellaneous-aggregations](url). This aggregator is required when using the **Data sketches** extension....
We have druid-query like below: ``` var q5 = client.groupBy() q5.dataSource('stmp_dlv_1') q5.granularity('month') q5.dimensions(['txn_mth']) q5.aggregation('doubleSum', 'GROSS', 'sum_gross') q5.aggregation('doubleMax', 'NTPV', 'max_global_ntpv') q5.exec(function(err, result) { if (err) { // handle error... console.log("*****error*****",err) }...
Installing druid-query via yarn on nvm 12.x: ```warning druid-query > [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142 warning druid-query > request > [email protected]: This module moved to @hapi/hawk. Please make...
Hello, I am applying filter in topN query. I am getting below error: > 2|DSP-api | Error: Bad filter type: in 2|DSP-api | at Function.filter (/home/ec2-user/reports/dsp_reports/node_modules/druid-query/lib/fields/filter.js:23:11) 2|DSP-api | at downloadAiBidCSV...
Hello I am using timeseries query. I also want few fields value. Dimension is not supporting in timeseries query so i am using aggregations[]. I using below query to execute...
Hello I was using client.topN() for get top records from druid but now my requirements has been changed so i have to user client.timeseries() but it is not working on...
Tried adding "in" filter to the druid-query as below, `client.filter('in', 'txn_mth', ['2019/01','2019/02'])` But the below error ``` /Users/srajathii/Documents/hikma/Site/node_modules/druid-query/lib/fields/filter.js:23 throw new FieldError('Bad filter type: ' + type) ^ Error: Bad filter...
Is there any ongoing work to implement this context property in groupBy queries? Reference: http://druid.io/docs/latest/querying/groupbyquery.html