[
https://issues.apache.org/jira/browse/PHOENIX-4525?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16323543#comment-16323543
]
Hudson commented on PHOENIX-4525:
---------------------------------
FAILURE: Integrated in Jenkins build Phoenix-master #1913 (See
[https://builds.apache.org/job/Phoenix-master/1913/])
PHOENIX-4525 Integer overflow in GroupBy execution (ssa: rev
3035fb11b8523c68b70e55d9a0fd1646eb6d15cf)
* (edit) phoenix-core/src/main/java/org/apache/phoenix/util/SizedUtil.java
* (edit)
phoenix-core/src/test/java/org/apache/phoenix/memory/MemoryManagerTest.java
> Integer overflow in GroupBy execution
> -------------------------------------
>
> Key: PHOENIX-4525
> URL: https://issues.apache.org/jira/browse/PHOENIX-4525
> Project: Phoenix
> Issue Type: Bug
> Affects Versions: 4.13.0
> Reporter: Sergey Soldatov
> Assignee: Sergey Soldatov
> Attachments: PHOENIX-4525-2.patch, PHOENIX-4525.patch
>
>
> During the execution of group by we adjust memory for the internal cache to
> keep all unique keys. We're increasing the number of keys by 1.5 factor and
> calculate how much space we need for it using SizedUtil.sizeOfMap, which is
> using ints as parameters and returns long. But since we are using all ints
> during the calculation, the integer overflow may happen and the method would
> return a negative value. As the result the query would fail, reporting that
> unable to allocate cache with negative size.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)