-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wire up COUNT DISTINCT aggregate #1891
Comments
I should mention that the target could be either a field or a tag key. The implementation would be different depending on which type was passed in. |
Is it more common to see this: select COUNT(DISTINCT id) as count FROM events |
@beckettsean |
@corylanou agreed on your syntax, updated the issue to reflect that |
This issue depends on #1815 being done first. |
…tton Add the ability to count down timer on listening for data
From a syntax perspective it should look like this:
The underlying implementation should use the DISTINCT Map function, but have a new reducer that combines the Map output and outputs a count.
The text was updated successfully, but these errors were encountered: