Re: How to reconnect continuous query?

2020-02-28 Thread Denis Magda
Hi Rick, What's the stack trace you see? Generally, creating/registring a new continuous query is a proper way of reconnection handling. The issue might be that the new query is created by a system thread that triggered your predicate - ignite.events().localListen(new IgnitePredicate() - Denis

How to reconnect continuous query?

2020-02-27 Thread crypto_ricklee
Dear all, I have a continuous query on a client node like IgniteCache cache = ignite.getOrCreateCache(StoreHelper.getCacheName(BalanceStore.class)); ContinuousQuery qry = new ContinuousQuery<>(); qry.setLocalListener(handler); qry.setRemoteFilterFactory((Factory>) () -> event