-
Notifications
You must be signed in to change notification settings - Fork 571
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
Not able to deserialize ClickHouseBitmap for too many bitmaps(>4294967295)! #918
Comments
Hi @wzqiang1332, will UInt32 work for you? As far as I know there's discrepancy between Java and C++ implementation of RoaringBitmap64, but I'll check this one when I'm done with patch9 release. |
@zhicwu UInt32 is ok |
was this bug solved? |
You meant RoaringBitmap/RoaringBitmap#366? Perhaps you should consider multiple UInt32 bitmaps with or without flag instead. It would be great someone can help you address the issue. I'll revisit this when I'm done with new type system for Aggregatefunction - maybe a custom version of RoaringBitmap just for ClickHouse. |
Hi @zhicwu I found that the old driver can deserialize 64-bit bitmaps, but this driver can not insert 64-bit bitmaps when datasize > 1000000. The new driver can be inserted normally
|
Thanks for the hint. Will cross check to understand the discrepancy after releasing patch10. |
This bug will be fixed in version patch10? |
@wzqiang1332, thanks for the pull request. Sorry I don't have much time to add more tests for the change. Since it's been merged into develop branch, would you mind to generate a build and test again in your environment? Also is it necessary to update RoaringBitmap dependency? |
@zhicwu I have tested it in my local environment. The bug is caused by the bitmap reading 3 bytes too many, resulting in the following field reading misalignment |
Thanks for confirming @wzqiang1332! It will be part of 0.3.2-patch11 which hopefully can be released by Friday, before I start to play Xenoblade 3 :) |
clickhouse-server version:22.2.2.1
clickhouse-jdbc version:0.3.2-patch8
an error occurs when I fetch the bitmap of the next.
even if I adjust the order of index_val, the second data will still report an error.
jdbc sql: select index_name, index_val, length(bitmapToArray(cst_bitmap)) as bitmap_count, cst_bitmap fromindex_bitmap_mergetree orderbyindex_name,index_val


jdbc sql: select index_name, index_val, length(bitmapToArray(cst_bitmap)) as bitmap_count, cst_bitmap fromindex_bitmap_mergetree orderbyindex_name,index_val desc
test code
error
The text was updated successfully, but these errors were encountered: