Hi rishi007bansod.

Are you sure all these memory consumped with java process?
You can try to analyze pmap or vmmap tool report? https://plumbr.eu/
blog/memory-leaks/why-does-my-java-process-consume-more-memory-than-xmx

Please, let me know if you find any suspicious thing.

On Thu, Nov 10, 2016 at 5:19 PM, rishi007bansod <rishi007ban...@gmail.com>
wrote:

> Cache configuration I have used is,
>
>     CacheConfiguration<Object,Object> ccfg_order_line = new
> CacheConfiguration<>();
>     ccfg_order_line.setIndexedTypes(order_lineKey.class,
> order_line.class);
>     ccfg_order_line.setName("order_line_cache");
>     ccfg_order_line.setCopyOnRead(false);
>     ccfg_order_line.setMemoryMode(CacheMemoryMode.ONHEAP_TIERED);
>     ccfg_order_line.setSwapEnabled(false);
>     ccfg_order_line.setBackups(0);
>     IgniteCache<Object, Object> cache_order_line =
> ignite.createCache(ccfg_order_line);
>
> JVM configuration I have used is,
>
>     -server
>     -Xms10g
>     -Xmx10g
>     -XX:+UseParNewGC
>     -XX:+UseConcMarkSweepGC
>     -XX:+UseTLAB
>     -XX:NewSize=128m
>     -XX:MaxNewSize=128m
>     -XX:MaxTenuringThreshold=0
>     -XX:SurvivorRatio=1024
>     -XX:+UseCMSInitiatingOccupancyOnly
>     -XX:CMSInitiatingOccupancyFraction=40
>     -XX:MaxGCPauseMillis=1000
>     -XX:InitiatingHeapOccupancyPercent=50
>     -XX:+UseCompressedOops
>     -XX:ParallelGCThreads=8
>     -XX:ConcGCThreads=8
>     -XX:+DisableExplicitGC
>
> same as provided at link
>
>
>
> --
> View this message in context: http://apache-ignite-users.
> 70518.x6.nabble.com/Very-high-memory-consumption-in-apache-
> ignite-tp8822p8880.html
> Sent from the Apache Ignite Users mailing list archive at Nabble.com.
>

Reply via email to