Alexander Belyak created IGNITE-5755:
----------------------------------------
Summary: 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
Priority: Trivial
Fix For: 2.3
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)