Re: OOM Issue with Eviction Event listener - Ignite 1.9.0

2017-05-16 Thread Andrey Gura
he.ignite.internal.processors.cache.GridCacheAdapter.put(GridCacheAdapter.java:2253) > at > org.apache.ignite.internal.processors.cache.IgniteCacheProxy.put(IgniteCacheProxy.java:1375) > at > com.example.IgniteWithCacheEvictListener.main(IgniteWithCacheEvictListener.java:63) > > -----Orig

RE: OOM Issue with Eviction Event listener - Ignite 1.9.0

2017-05-01 Thread Pradeep Badiger
er.java:63) -Original Message- From: Andrey Gura [mailto:ag...@apache.org] Sent: Monday, May 01, 2017 11:34 AM To: user@ignite.apache.org Subject: Re: OOM Issue with Eviction Event listener - Ignite 1.9.0 Hi, Listener just lead to additional Event objects instantiation. You should give more memory for

Re: OOM Issue with Eviction Event listener - Ignite 1.9.0

2017-05-01 Thread Andrey Gura
Hi, Listener just lead to additional Event objects instantiation. You should give more memory for your Java process. On Mon, May 1, 2017 at 5:54 PM, Pradeep Badiger wrote: > Hi, > > > > I am facing an OOM Exception when eviction policy is turned on. I have > attached an eclipse project that has