Re: What is the difference in cache speed between ignite 1.7 and 1.9

2017-06-16 Thread wychoi
Cash put operation using CacheAffinity has been tested. I will do more detailed testing and deliver additional results. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/What-is-the-difference-in-cache-speed-between-ignite-1-7-and-1-9-tp13853p13857.html Sent from t

What is the difference in cache speed between ignite 1.7 and 1.9

2017-06-15 Thread wychoi
hi I upgraded to ignite 1.9 and tested the cache Cache writes are slowing down What is the difference in cache speed between ignite 1.7 and 1.9 ? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/What-is-the-difference-in-cache-speed-between-ignite-1-7-and-1-9-

Re: How to get rid of the message( Received message without registered handler ) ?

2016-01-15 Thread wychoi
hi Data input to the cache is about 6k * 1000 per second CacheData transmitted through the LocalListener seemed to be left in the CacheContinuousQueryHandler.backupQueue -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/CacheObjectImpl-pile-up-in-the-CacheContinu

Re: How to get rid of the message( Received message without registered handler ) ?

2016-01-14 Thread wychoi
When you run the ContinuousQuery in two of the server nodes, CacheObjectImpl pile up in the CacheContinuousQueryHandler.backupQueue and OOM occurred. And continue to display the message [Received message without registere

Re: CacheEntryEventSerializableFilter in ignite1.5

2016-01-11 Thread wychoi
I found a problem that runs in another custom class loader It seems that passed through the query.setRemoteFilter Thanks for your interest -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/CacheEntryEventSerializableFilter-in-ignite1-5-tp2382p2488.html Sent from th

How to get rid of the message( Received message without registered handler ) ?

2016-01-07 Thread wychoi
When using the ContinuousQuery, What is the reason WARN appears in the log below? setRemoteFilter of ContinuousQuery has not entered anything in. [2016-01-07 16:48:57.744][WARN ][sys-

Re: CacheEntryEventSerializableFilter in ignite1.5

2016-01-06 Thread wychoi
Hi vkulichenko XObject is the original name MessageWrap While modifying the class names and package names, XObject was misspelled in the XObject$2 -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/CacheEntryEventSerializableFilter-in-ignite1-5-tp2382p2407.html

Re: CacheEntryEventSerializableFilter in ignite1.5

2016-01-06 Thread wychoi
All nodes have the same class path XObject and classes also are all the same version But it is the same error continues to occur, XObject snippet public class XObject implements Serializable { @QuerySqlField private int part; @QuerySqlField private String appli

Re: Leaks in the ContinuousQuery Notification

2016-01-06 Thread wychoi
hi vkulichenko Thanks to the quick reply This problem is resolved do modify the logic in the method( CacheEntryUpdateListener.onUpdated ) It occurs due to a problem with the process for the EventType.REMOVE -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Re-L

Leaks in the ContinuousQuery Notification

2016-01-05 Thread wychoi
HI We're to examine ignite1.5. We are being developed using the ContinuousQuery. I put the cache in two server nodes, the update notification leak occurred It did not occur in ignite1.4 In the ContinuousQuery set RemoteFilter did not use Piece of code like this: CacheEntryUpdatedListener cache

CacheEntryEventSerializableFilter in ignite1.5

2016-01-05 Thread wychoi
HI We're to examine ignite1.5. We had an error occurs while using the Continuous Query. Piece of code like this: It was applied to the CacheEntryEventSerializableFilter.setRemoteFilter of ContinuousQuery. query.setRemoteFilter(new CacheEntryEventSerializableFilter() { @Override public b

Re: remove cache on high-speed

2015-11-25 Thread wychoi
I have applied cache.remove() only confirm cache.size(CachePeekMode.ALL); ==> 0 but a few cache revive I use ContinuousQuery for getting cache Is there relationship because using the Continuous Query? ContinuousQuery query = new ContinuousQuery<>(); query.setLocal(true); query.setTimeInter

Re: remove cache on high-speed

2015-11-23 Thread wychoi
hi ongoing stop/start of some server node after the whole cache clearing All caches have been removed. (cache -scan -c=CACHE_NAME) : confirm empty But remain few cache in cacheMetricsMxBean of visualvm Then i see that some entities got resurrected this is code snipet public boolean r

Re: remove cache on high-speed

2015-11-23 Thread wychoi
CacheConfiguration cfg = new CacheConfiguration<>("CACHE_NAME"); cfg.setIndexedTypes(AffinityKey.class, XObject.class); cfg.setCacheMode(CacheMode.PARTITIONED); cfg.setName("CACHE_NAME"); cfg5.setBackups(1); ignite.getOrCreateCache(cfg); 1. i