How to get job at new node of hazelcast jet cluster -
can how new jet cluster instance should start job?
use case 1:
- start jet cluster 3 node
- submit job cluster
- all 3 nodes start job , process data
use case 2:
- start 4th node
- 4th node nothing because it's no new submit job command
how new cluster instance should start jobs, started @ nodes?
the feature ask planned jet 0.5, planned end of september 2017.
in jet 0.4 have cancel current job , start anew, you'll lose processor state. note job not cancelled cancelling client submitted job, have use:
future<void> future = jetinstance.newjob().execute(); // time later future.cancel();
Comments
Post a Comment