forked from apache/lucene-solr
-
Notifications
You must be signed in to change notification settings - Fork 7
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
[wip] Bitmap-based frequency aggregations #37
Open
mkavanagh
wants to merge
12
commits into
BrandwatchLtd:bw_branch_7_7_2
Choose a base branch
from
mkavanagh:bitmapfrequency
base: bw_branch_7_7_2
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[wip] Bitmap-based frequency aggregations #37
mkavanagh
wants to merge
12
commits into
BrandwatchLtd:bw_branch_7_7_2
from
mkavanagh:bitmapfrequency
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…aringBitmap object. The response is a byte array from which you can construct a bitmap, using new ImmutableRoaringBitmap(ByteBuffer.wrap(bitmapBytes))
606a995
to
4a8f13c
Compare
mkavanagh
commented
Jul 29, 2020
solr/core/src/java/org/apache/solr/search/facet/BitmapFrequencies.java
Outdated
Show resolved
Hide resolved
mkavanagh
commented
Jul 29, 2020
solr/core/src/java/org/apache/solr/search/facet/BitmapFrequencies.java
Outdated
Show resolved
Hide resolved
f0dcd32
to
d9f9739
Compare
d9f9739
to
a66f245
Compare
a66f245
to
60499a5
Compare
0ceecfb
to
142cd38
Compare
87677a9
to
02436fa
Compare
5a1b172
to
2e49c19
Compare
8aae4dd
to
4249609
Compare
4249609
to
28f7a7e
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Following from Tim's work on collecting bitmaps of ordinal values, this is a prototype of two new aggregates also based on bitmaps of ordinals:
both support an optional "maxFrequency" param which will cap the frequencies returned, and accumulate values which hit the cap into an overflow bucket (to be returned also)
needs testing for functionality and performance - the hope is that these will be a good alternative to the memory-hungry terms facet used by the mention-service to estimate cardinality for authors in sampled queries