You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by GitBox <gi...@apache.org> on 2022/12/02 02:26:10 UTC

[GitHub] [pinot] Jackie-Jiang opened a new issue, #9899: Bloom filter doesn't work on data types that have different string representations for the same value

Jackie-Jiang opened a new issue, #9899:
URL: https://github.com/apache/pinot/issues/9899

   When creating the bloom filter, we use the default string representation of the values to construct the bloom filter. When querying the bloom filter, we take the string from the query and use it to query the bloom filter. In order to make it work, we need to ensure the value to string conversion is consistent on the creator side and the query side.
   
   Some data types to take extra care:
   - FLOAT, DOUBLE, BIG_DECIMAL: either not support them, or handle the case of `value = 1` where the creator will put `1.0`
   - BOOLEAN: bloom filter on boolean doesn't make a lot of sense, so we can drop the support for it
   - TIMESTAMP: we should probably always use long value to match it, and handle `vale = '2022-12-01 01:01:01.000'` properly. Also it is not supported in `BloomFilterHandler` as of now.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org