Re: rebalancing and jobs

2021-01-29 Thread akorensh
Hi, You can monitor rebalance programmatically using JMX, https://ignite.apache.org/docs/latest/monitoring-metrics/metrics#monitoring-rebalancing or events: https://ignite.apache.org/docs/latest/events/events#cache-rebalancing-events and have your app react accordingly. You can set

Re: rebalancing and jobs

2021-01-13 Thread narges saleh
To clarify, I do not want to pause rebalancing. I want to see if a rebalancing job is in progress, delay my job and a rebalancing job is not in progress, delay any upcoming rebalancing job, till my job is finished. On Wed, Jan 13, 2021 at 5:04 PM narges saleh wrote: > Thanks Alex. I will study

Re: rebalancing and jobs

2021-01-13 Thread narges saleh
Thanks Alex. I will study the links you provided. I need to deal with rebalancing programmatically. On Wed, Jan 13, 2021 at 4:33 PM akorensh wrote: > Hi, > You can monitor using JMX as described here: > > https://ignite.apache.org/docs/latest/monitoring-metrics/metrics#monitoring-rebalancing

Re: rebalancing and jobs

2021-01-13 Thread akorensh
Hi, You can monitor using JMX as described here: https://ignite.apache.org/docs/latest/monitoring-metrics/metrics#monitoring-rebalancing you can also visually monitor rebalance via a special widget in control center:

rebalancing and jobs

2021-01-13 Thread narges saleh
Hi All, What is the best practice regarding partition rebalancing and jobs? 1) Before I start a job, how do I check whether a rebalancing process is in progress? 2) If no rebalancing is in progress, how do I delay or pause upcoming rebalancing processes until my job is finished, assuming I don't