-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IGNITE-23655 Introduce CacheIdleVerifyCancelCommand #11673
Merged
Merged
Changes from 22 commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
9e0fc30
IGNITE-23655 CacheIdleVerifyCancelCommand v1.
vladnovoren f528ca4
IGNITE-23655 Test for idle_verify --cancel v1 (DRAFT)
vladnovoren 0616a87
IGNITE-23655 CacheIdleVerifyCancelJob is not throwing if no running i…
vladnovoren 55768ed
IGNITE-23655 Removed Serializable
vladnovoren ae2d98f
Merge branch 'master' into ignite-23655
vladnovoren 3afb342
IGNITE-23655 Review fixes (codestyle + futures + runAsync), also fixe…
vladnovoren e05d35d
IGNITE-23655 Added check that idle_verify is done and message about i…
vladnovoren 3995807
test case: running job not found
vladnovoren 6025b85
InterruptedException draft
vladnovoren bd299a1
IGNITE-23655 assertTrue(idleVerifyFut.isDone()) fails
vladnovoren 54a82ad
IGNITE-23655 Added assert for waitForCondition, removed assert !job.i…
vladnovoren 1bf8664
IGNITE-23655 Save
vladnovoren 743877b
IGNITE-23655 Save
vladnovoren 531cfbf
IGNITE-23655 Removed debug prints & logs, leaved simple test that doe…
vladnovoren f583f41
IGNITE-23655 Catch of IgniteInterruptedCheckedException in VerifyBack…
vladnovoren 2427079
IGNITE-23655 CacheIdleVerifyCancelJob#cancelJob: removed iteration ov…
vladnovoren 602e674
Fixed TASKS_VIEW and JOBS_VIEW tests.
vladnovoren 188a7d7
IGNITE-23655 Added log listener to condiguration. Now log checks are …
vladnovoren 38b3245
IGNITE-23655 Added testIdleVerifyCancelCommandOnCheckpoint, it passes…
vladnovoren 49769b3
IGNITE-23655 Overriden ForkJoinPool#submit method with correct signat…
vladnovoren 65d0508
IGNITE-23655 Some minor and checkstyle fixes.
vladnovoren 017d5ee
IGNITE-23655 Removed unnecessary sleep, added await timeout + minor f…
vladnovoren 7d3be43
IGNITE-24175 Test reproducing issue
nizhikov 8b9dff4
IGNITE-24175 Fix
nizhikov febd532
IGNITE-24175 Rework to syncRunningJobs map
nizhikov d9a9769
IGNITE-24175 Test for cancel internal task added.
nizhikov c4f218a
IGNITE-24175 Test for cancel internal task added.
nizhikov 8b82bba
IGNITE-24175 Test for cancel internal task added.
nizhikov af34c22
IGNITE-23655 Fixed cancel tests: added missing assertTrue on waitForC…
vladnovoren e10b268
IGNITE-23655 Merged nizhikov changes (Show internal jobs in system vi…
vladnovoren 3375ad6
IGNITE-23655 Removed unnecessary catch of IgniteInterruptedCheckedExc…
vladnovoren 696a079
IGNITE-23655 Minor fixed.
vladnovoren fff390f
IGNITE-23655 Minor fixes + docs.
vladnovoren 189daef
IGNITE-23655 Removed unnecessary catch of IgniteInterruptedCheckedExc…
vladnovoren 35d98e9
IGNITE-23655 Added list of tasks to cancel in CacheIdleVerifyCancelTask.
vladnovoren f4a99c2
IGNITE-23655 Checkpoint listener for all nodes + isCancelled() check …
vladnovoren e5a513b
Merge branch 'master' into ignite-23655
vladnovoren 50aae0d
IGNITE-23655 Codestyle fixes.
vladnovoren 61945a2
IGNITE-23655 Added patch by nizhikov: Fix cancel during partition ite…
vladnovoren e21c63e
Add test to check --check-crc canceled
nizhikov c2c617c
Rename constance #1
nizhikov e6db06e
Rename constant #2
nizhikov efad094
Update GridCommandHandlerTest.java
nizhikov 386adc4
Update CacheIdleVerifyCancelTask.java
nizhikov aa19573
Update VerifyBackupPartitionsTaskV2.java
nizhikov 4d9fa97
Update IdleVerifyUtility.java
nizhikov 6ed3187
Update GridCommandHandlerTest.java
nizhikov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -39,7 +39,10 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.TreeMap; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.TreeSet; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.UUID; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.concurrent.Callable; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.concurrent.CountDownLatch; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.concurrent.ForkJoinPool; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.concurrent.ForkJoinTask; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.concurrent.ThreadLocalRandom; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.concurrent.TimeUnit; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.concurrent.atomic.AtomicBoolean; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -84,6 +87,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.client.util.GridConcurrentHashSet; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.management.cache.FindAndDeleteGarbageInPersistenceTaskResult; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.management.cache.IdleVerifyDumpTask; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.management.cache.IdleVerifyTaskV2; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.management.cache.VerifyBackupPartitionsTaskV2; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.management.tx.TxInfo; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.management.tx.TxTaskResult; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -98,6 +102,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.processors.cache.distributed.near.GridNearTxLocal; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.processors.cache.persistence.CheckpointState; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.processors.cache.persistence.GridCacheDatabaseSharedManager; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.processors.cache.persistence.checkpoint.CheckpointListener; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.processors.cache.persistence.db.IgniteCacheGroupsWithRestartsTest; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.processors.cache.persistence.diagnostic.pagelocktracker.dumpprocessors.ToFileDumpProcessor; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.internal.processors.cache.persistence.file.FileIO; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -135,7 +140,10 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.spi.metric.LongMetric; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.spi.metric.Metric; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.spi.systemview.view.ComputeJobView; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.spi.systemview.view.ComputeTaskView; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.testframework.GridTestUtils; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.testframework.ListeningTestLogger; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.testframework.LogListener; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.testframework.junits.WithSystemProperty; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.apache.ignite.transactions.Transaction; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -173,6 +181,8 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import static org.apache.ignite.internal.processors.cache.persistence.snapshot.SnapshotRestoreProcess.SNAPSHOT_RESTORE_METRICS; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import static org.apache.ignite.internal.processors.cache.verify.IdleVerifyUtility.GRID_NOT_IDLE_MSG; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import static org.apache.ignite.internal.processors.diagnostic.DiagnosticProcessor.DEFAULT_TARGET_FOLDER; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import static org.apache.ignite.internal.processors.job.GridJobProcessor.JOBS_VIEW; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import static org.apache.ignite.internal.processors.task.GridTaskProcessor.TASKS_VIEW; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import static org.apache.ignite.testframework.GridTestUtils.assertContains; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import static org.apache.ignite.testframework.GridTestUtils.assertNotContains; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import static org.apache.ignite.testframework.GridTestUtils.assertThrows; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -219,13 +229,16 @@ public class GridCommandHandlerTest extends GridCommandHandlerClusterPerMethodAb | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
protected static File customDiagnosticDir; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
protected ListeningTestLogger listeningLog = new ListeningTestLogger(log); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** {@inheritDoc} */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Override protected void beforeTest() throws Exception { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
super.beforeTest(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
initDiagnosticDir(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cleanPersistenceDir(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cleanDiagnosticDir(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
initDiagnosticDir(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** {@inheritDoc} */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -235,6 +248,15 @@ public class GridCommandHandlerTest extends GridCommandHandlerClusterPerMethodAb | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cleanDiagnosticDir(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** {@inheritDoc} */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cfg.setGridLogger(listeningLog); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return cfg; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @throws IgniteCheckedException If failed. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -752,6 +774,173 @@ public void testIdleVerifyOnInactiveClusterWithPersistence() throws Exception { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assertContains(log, testOut.toString(), "The check procedure has finished, no conflicts have been found."); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Test | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public void testIdleVerifyCancelCommandOnCheckpoint() throws Exception { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
final int gridsCnt = 4; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IgniteEx srv = startGrids(gridsCnt); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
srv.cluster().state(ACTIVE); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CountDownLatch beforeCancelLatch = new CountDownLatch(1); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CountDownLatch afterCancelLatch = new CountDownLatch(1); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
GridCacheDatabaseSharedManager dbMgr = (GridCacheDatabaseSharedManager)grid(1).context().cache().context().database(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dbMgr.addCheckpointListener(new CheckpointListener() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Override public void beforeCheckpointBegin(Context ctx) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (ctx.progress().reason().equals("VerifyBackupPartitions")) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
beforeCancelLatch.countDown(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Override public void afterCheckpointEnd(Context ctx) throws IgniteCheckedException { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (ctx.progress().reason().equals("VerifyBackupPartitions")) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
afterCancelLatch.await(30, TimeUnit.SECONDS); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
catch (InterruptedException e) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
throw new IgniteInterruptedCheckedException(e); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Override public void onMarkCheckpointBegin(Context ctx) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// No-op. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Override public void onCheckpointBegin(Context ctx) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// No-op. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List<LogListener> listeners = registerIdleVerifyCancelListeners(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like registering and checking listeners can be moved to |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IgniteCache<Integer, Integer> cache = srv.createCache(new CacheConfiguration<Integer, Integer>(DEFAULT_CACHE_NAME).setBackups(3)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (int i = 0; i < 100; i++) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cache.put(i, i); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cancelIdleVerifyAndCheck(beforeCancelLatch, afterCancelLatch, gridsCnt, listeners); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nizhikov marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Test | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public void testIdleVerifyTrackedForkJoinPool() throws Exception { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
final int gridsCnt = 4; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IgniteEx srv = startGrids(gridsCnt); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
srv.cluster().state(ACTIVE); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List<LogListener> listeners = registerIdleVerifyCancelListeners(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IgniteCache<Integer, Integer> cache = srv.createCache(new CacheConfiguration<Integer, Integer>(DEFAULT_CACHE_NAME).setBackups(3)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (int i = 0; i < 100; i++) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cache.put(i, i); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CountDownLatch beforeCancelLatch = new CountDownLatch(1); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CountDownLatch afterCancelLatch = new CountDownLatch(1); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ForkJoinPool forkJoinPool = new ForkJoinPool() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Override public <T> ForkJoinTask<T> submit(Callable<T> task) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
beforeCancelLatch.countDown(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ForkJoinTask<T> submitted = super.submit(task); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
afterCancelLatch.await(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
catch (InterruptedException e) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
throw new RuntimeException(e); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return submitted; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
VerifyBackupPartitionsTaskV2.poolSupplier = () -> forkJoinPool; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cancelIdleVerifyAndCheck(beforeCancelLatch, afterCancelLatch, gridsCnt, listeners); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param beforeCancelLatch Latch for await before cancel. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param afterCancelLatch Latch for await before cancel completes. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param gridsCnt Grids count. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param listeners Log listeners. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private void cancelIdleVerifyAndCheck( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CountDownLatch beforeCancelLatch, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CountDownLatch afterCancelLatch, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
int gridsCnt, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List<LogListener> listeners | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) throws InterruptedException, IgniteCheckedException { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IgniteInternalFuture<Integer> idleVerifyFut = GridTestUtils.runAsync(() -> execute("--cache", "idle_verify")); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
beforeCancelLatch.await(30, TimeUnit.SECONDS); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assertEquals(EXIT_CODE_OK, execute("--cache", "idle_verify", "--cancel")); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
afterCancelLatch.countDown(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
checkSystemViewsNoIdleVerify(gridsCnt); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
idleVerifyFut.get(getTestTimeout()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (LogListener listener : listeners) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assertTrue(listener.check()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @param gridsCnt Grids count. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private void checkSystemViewsNoIdleVerify(int gridsCnt) throws IgniteInterruptedCheckedException { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (int i = 0; i < gridsCnt; i++) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
int finalI = i; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
waitForCondition(() -> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (ComputeTaskView taskView : grid(finalI).context().systemView().<ComputeTaskView>view(TASKS_VIEW)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (IdleVerifyTaskV2.class.getName().equals(taskView.taskName())) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return false; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return true; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, 1000); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
waitForCondition(() -> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (ComputeJobView jobView : grid(finalI).context().systemView().<ComputeJobView>view(JOBS_VIEW)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (IdleVerifyTaskV2.class.getName().equals(jobView.taskName())) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return false; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return true; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, 1000); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private List<LogListener> registerIdleVerifyCancelListeners() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
List<LogListener> listeners = new ArrayList<>(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
listeners.add(LogListener.matches("Idle verify was cancelled.").build()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
listeners.add(LogListener.matches("Cancel request sent to VerifyBackupPartitionsJobV2.").build()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (LogListener listener : listeners) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
listeningLog.registerListener(listener); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return listeners; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* Test deactivation works via control.sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
49 changes: 49 additions & 0 deletions
49
...c/main/java/org/apache/ignite/internal/management/cache/CacheIdleVerifyCancelCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.ignite.internal.management.cache; | ||
|
||
import java.util.Collection; | ||
|
||
import org.apache.ignite.internal.client.GridClientNode; | ||
import org.apache.ignite.internal.management.api.ComputeCommand; | ||
import org.apache.ignite.internal.management.api.NoArg; | ||
|
||
/** | ||
* Cancels idle_verify command. | ||
*/ | ||
public class CacheIdleVerifyCancelCommand implements ComputeCommand<NoArg, Void> { | ||
/** {@inheritDoc} */ | ||
@Override public Class<CacheIdleVerifyCancelTask> taskClass() { | ||
return CacheIdleVerifyCancelTask.class; | ||
} | ||
|
||
/** {@inheritDoc} */ | ||
@Override public String description() { | ||
return "Cancels idle_verify command"; | ||
} | ||
|
||
/** {@inheritDoc} */ | ||
@Override public Class<NoArg> argClass() { | ||
return NoArg.class; | ||
} | ||
|
||
/** {@inheritDoc} */ | ||
@Override public Collection<GridClientNode> nodes(Collection<GridClientNode> nodes, NoArg arg) { | ||
return nodes; | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this change? Let's revert it.