[
https://issues.apache.org/jira/browse/IGNITE-5755?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Sergey Volkov reassigned IGNITE-5755:
-------------------------------------
Assignee: Sergey Volkov
> Wrong msg: calculation of memory policy size
> --------------------------------------------
>
> Key: IGNITE-5755
> URL: https://issues.apache.org/jira/browse/IGNITE-5755
> Project: Ignite
> Issue Type: Bug
> Components: general
> Affects Versions: 2.1
> Reporter: Alexander Belyak
> Assignee: Sergey Volkov
> Priority: Trivial
>
> In PageMemoryNoStoreImpl:
> {noformat}
> throw new IgniteOutOfMemoryException("Not enough memory allocated
> " +
> "(consider increasing memory policy size or enabling
> evictions) " +
> "[policyName=" + memoryPolicyCfg.getName() +
> ", size=" + U.readableSize(memoryPolicyCfg.getMaxSize(),
> true) + "]"
> {noformat}
> wrong usage of U.readableSize - we should use non "Si" (1024 instead of 1000)
> multiplier. Right code is:
> {noformat}
> throw new IgniteOutOfMemoryException("Not enough memory allocated
> " +
> "(consider increasing memory policy size or enabling
> evictions) " +
> "[policyName=" + memoryPolicyCfg.getName() +
> ", size=" + U.readableSize(memoryPolicyCfg.getMaxSize(),
> false) + "]"
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)