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 2019/05/02 17:25:01 UTC

[GitHub] [incubator-pinot] jackjlli commented on issue #4183: High latency on high QPS use case

jackjlli commented on issue #4183: High latency on high QPS use case
URL: https://github.com/apache/incubator-pinot/issues/4183#issuecomment-488759202
 
 
   One of the potential problems we suspect is that using on heap dictionary is not scalable, which keeps all the values of column1 in the memory. If the cardinality of the column is high (e.g. 10 million unique strings in each segment), and there're 10 segments in one offline server host, then retrieving string from hashmap would be a performance concern. Thus, we tried several trie based dictionary strategies to tackle this problem.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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