Re: ignite queue poller

2020-03-09 Thread Evgenii Zhuravlev
Here how it will look in the code: https://github.com/ezhuravl/ignite-code-examples/tree/master/src/main/java/examples/service/scheduler пн, 2 мар. 2020 г. в 15:23, Evgenii Zhuravlev : > Hi, > > There is no pooler out of the box, but you can simply implement one as a > Service. Even if one of the

Re: ignite queue poller

2020-03-02 Thread Evgenii Zhuravlev
Hi, There is no pooler out of the box, but you can simply implement one as a Service. Even if one of the nodes with this service will be stopped, Cluster will manage to restart the service on another node. org.apache.ignite.services.Service.execute() should be implemented as queue pooler. https:/

ignite queue poller

2020-03-01 Thread Narsi Reddy Nallamilli
Hi, Is there a queue poller built-in ignite which constantly and indefinitely polls the queue and can perform some task? I know only way is to write igniterunnable compute where i should run loop forever and perform the task on ignite queue element? But this is bad as there are cases when the com