Replies: 2 comments
-
I hope, it helps :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hi @mkuthan , Thanks for the information. Can I increase the max split limit past 10? I see options for 25, 50, and 100, but they do nothing when I click them. Is there a limit variable in the turnilo configuration that I can change? Thanks, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I am having trouble passing parameters to druid via the
druidContextkey in the yml config. I want to do two things: first, I want to display more than five lines on a line graph; Second I want to get the exact count distinct, not the approximate number. I'm not sure what I am doing wrong. I followed the doc here The I can see the parameters in the query context that is sent to Druid, but the results do not show what I expect.Here is a sample of the config,
The query sent to druid which I got
verbose: truein the yaml.{ "queryType": "topN", "dataSource": "my_cube_source", "intervals": "2020-11-23T23:25Z/2021-05-23T23:25Z", "granularity": "all", "context": { "useApproximateCountDistinct": false, "minTopNThreshold": 20, "threshold": 20, "timeout": 40000 }, "filter": { "type": "selector", "dimension": "issue_type_category", "value": "account security" }, "dimension": { "type": "default", "dimension": "issue_type", "outputName": "issue_type" }, "aggregations": [ { "name": "count", "type": "longSum", "fieldName": "count" } ], "metric": "count", "threshold": 5 }Thanks
Beta Was this translation helpful? Give feedback.
All reactions