--
You received this message because you are subscribed to the Google Groups "Druid User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+unsubscribe@googlegroups.com.
To post to this group, send email to druid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/druid-user/8b783983-0bc8-4540-b70a-72dff1c82a57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hey Daniel,Could you attach the query you're using and the results you're getting?Also, do you have any realtime stuff going on in your setup? If so: what kind (realtime node, tranquility, kafka indexing service)? And do you still have this problem if you exclude the realtime interval (query for older intervals only)?
Gian
On Wed, Jan 4, 2017 at 10:19 AM, Daniel Cook <cook...@gmail.com> wrote:
Hey, recently upgraded from 0.9.1.1 to 0.9.2 and wanted to try out the new groupBy strategy but it doesn't appear to be aggregating right when queries are sent through the broker.If we send the query directly to the historical then it does return the correct result.It sounds similar to the other topic (https://groups.google.com/d/topic/druid-user/TVyS-B-QQ2E/discussion ) but all nodes are running 0.9.2 and have been restarted several times but the problem is persisting.In a groupBy on two dimensions(key1, key2) multiple events with the same keys come back.If I add a filter for a specific (key1, key2) then it will aggregate correctly.When I query immediately after re-indexing, before any merge tasks on that datasource have run, I get more unmerged events than when I query after merge tasks have ran for that datasource.The datasource and the query are both pretty basic (not even a nested groupBy or anything) so I feel like it's more likely that I'm missing something rather then running into a bug.Any help would be appreciated.
--
You received this message because you are subscribed to the Google Groups "Druid User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+unsubscribe@googlegroups.com.
To post to this group, send email to druid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/druid-user/6dec4fb0-f0aa-41e6-b839-4f13e9304387%40googlegroups.com.
druid.query.groupBy.defaultStrategy=v2druid.processing.numMergeBuffers=4Gian
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+unsubscribe@googlegroups.com.
To post to this group, send email to druid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/druid-user/213ec8ad-5483-47c8-85e1-f61e0ec50869%40googlegroups.com.
Gian
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+unsubscribe@googlegroups.com.
To post to this group, send email to druid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/druid-user/659c62fa-31ad-4d00-a949-09b94e35907a%40googlegroups.com.
Gian
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+unsubscribe@googlegroups.com.
To post to this group, send email to druid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/druid-user/4e5a8396-797a-4491-8e78-2e14a5e28c26%40googlegroups.com.
Gian
--
You received this message because you are subscribed to the Google Groups "Druid User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+unsubscribe@googlegroups.com.
To post to this group, send email to druid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/druid-user/96229bcd-7200-4866-8095-0f227d977238%40googlegroups.com.
I'm 99% sure this is a bug somewhere in the caching for groupBy and not anything you're doing wrong. I'll raise an issue for it in a bit and investigate.
Could you try doing the query with "populateCache": true but "useCache": false? What kind of results do you get then?
Gian
On Thu, Jan 5, 2017 at 8:14 AM, Daniel Cook <cook...@gmail.com> wrote:
I know that groupBy's are in the "uncacheable" list by default but it looks like that's because they were overwhelming the cache (https://github.com/druid-io/druid/pull/638) not that it wasn't functioning. Still interesting that v1 was working correctly.--
On Thursday, January 5, 2017 at 10:54:44 AM UTC-5, Daniel Cook wrote:Ah, yeah, that did it! Also makes sense why it was working correctly when querying the historical directly since caching was off on the historical.Is there a need to flush the cache or something before using v2 or is caching itself just not playing nicely?
You received this message because you are subscribed to the Google Groups "Druid User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+...@googlegroups.com.
To post to this group, send email to druid...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to druid-user+unsubscribe@googlegroups.com.
To post to this group, send email to druid...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/druid-user/b1491ced-ad1a-400d-9a16-022e55a9fc96%40googlegroups.com.
Gian