[
https://issues.apache.org/jira/browse/HIVE-13656?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15273319#comment-15273319
]
Vikram Dixit K commented on HIVE-13656:
---------------------------------------
Don't you want this
{code}
long maxDirect = (xmx > 0 && cache > 0 && xmx < cache * 1.25) ? (long)(cache *
1.25) : -1;
{code}
to be:
{code}
long maxDirect = (xmx > 0 && cache > 0 && xmx < cache * 1.25) ? (long)(cache *
1.25) : xmx;
{code}
> need to set direct memory limit higher in LlapServiceDriver for certain edge
> case configurations
> ------------------------------------------------------------------------------------------------
>
> Key: HIVE-13656
> URL: https://issues.apache.org/jira/browse/HIVE-13656
> Project: Hive
> Issue Type: Bug
> Reporter: Sergey Shelukhin
> Assignee: Sergey Shelukhin
> Attachments: HIVE-13656.patch
>
>
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)