use of com.hazelcast.jet.core.TestProcessors.MockPS in project hazelcast by hazelcast.
the class TopologyChangeTest method when_nonCoordinatorLeavesDuringExecution_then_clientStillGetsJobResult.
@Test
public void when_nonCoordinatorLeavesDuringExecution_then_clientStillGetsJobResult() throws Throwable {
// Given
HazelcastInstance client = createHazelcastClient();
DAG dag = new DAG().vertex(new Vertex("test", new MockPS(NoOutputSourceP::new, nodeCount)));
// When
Job job = client.getJet().newJob(dag);
NoOutputSourceP.executionStarted.await();
instances[2].getLifecycleService().terminate();
NoOutputSourceP.proceedLatch.countDown();
job.join();
}
use of com.hazelcast.jet.core.TestProcessors.MockPS in project hazelcast by hazelcast.
the class TopologyChangeTest method when_addNodeDuringExecution_then_completeSuccessfully.
@Test
public void when_addNodeDuringExecution_then_completeSuccessfully() throws Throwable {
// Given
DAG dag = new DAG().vertex(new Vertex("test", new MockPS(NoOutputSourceP::new, nodeCount)));
// When
Job job = instances[0].getJet().newJob(dag);
NoOutputSourceP.executionStarted.await();
createHazelcastInstance(config);
NoOutputSourceP.proceedLatch.countDown();
job.join();
// Then
assertEquals(nodeCount, MockPS.initCount.get());
assertTrueEventually(() -> {
assertEquals(nodeCount, MockPS.closeCount.get());
assertThat(MockPS.receivedCloseErrors, empty());
});
}
use of com.hazelcast.jet.core.TestProcessors.MockPS in project hazelcast by hazelcast.
the class TopologyChangeTest method when_nodeIsShuttingDownAfterInit_then_jobRestarts.
@Test
public void when_nodeIsShuttingDownAfterInit_then_jobRestarts() {
// Given that the second node has not received ExecuteOperation yet
for (HazelcastInstance instance : instances) {
warmUpPartitions(instance);
}
rejectOperationsBetween(instances[0], instances[2], JetInitDataSerializerHook.FACTORY_ID, singletonList(START_EXECUTION_OP));
DAG dag = new DAG().vertex(new Vertex("test", new MockPS(TestProcessors.Identity::new, nodeCount - 1)));
Job job = instances[0].getJet().newJob(dag);
assertJobStatusEventually(job, RUNNING);
// When a participant shuts down during execution
instances[2].getLifecycleService().terminate();
// Then, the job restarts and successfully completes
job.join();
}
use of com.hazelcast.jet.core.TestProcessors.MockPS in project hazelcast by hazelcast.
the class TopologyChangeTest method when_coordinatorLeavesDuringExecution_then_jobCompletes.
@Test
public void when_coordinatorLeavesDuringExecution_then_jobCompletes() throws Throwable {
// Given
DAG dag = new DAG().vertex(new Vertex("test", new MockPS(NoOutputSourceP::new, nodeCount)));
// When
Long jobId = null;
try {
Job job = instances[0].getJet().newJob(dag);
Future<Void> future = job.getFuture();
jobId = job.getId();
NoOutputSourceP.executionStarted.await();
instances[0].getLifecycleService().terminate();
// Processor#close.
for (int i = 1; i < instances.length; i++) {
JetServiceBackend jetServiceBackend = getJetServiceBackend(instances[i]);
jetServiceBackend.getJobExecutionService().waitAllExecutionsTerminated();
}
NoOutputSourceP.proceedLatch.countDown();
future.get();
fail();
} catch (ExecutionException expected) {
assertTrue(expected.getCause() instanceof HazelcastInstanceNotActiveException);
}
// Then
assertNotNull(jobId);
final long completedJobId = jobId;
JobRepository jobRepository = getJetServiceBackend(instances[1]).getJobRepository();
assertTrueEventually(() -> {
JobResult jobResult = jobRepository.getJobResult(completedJobId);
assertNotNull(jobResult);
assertTrue(jobResult.isSuccessful());
});
final int count = liteMemberFlags[0] ? (2 * nodeCount) : (2 * nodeCount - 1);
assertEquals(count, MockPS.initCount.get());
assertTrueEventually(() -> {
assertEquals(count, MockPS.closeCount.get());
assertEquals(nodeCount, MockPS.receivedCloseErrors.size());
for (Throwable error : MockPS.receivedCloseErrors) {
assertTrue("unexpected exc: " + error, error instanceof CancellationException);
}
});
}
use of com.hazelcast.jet.core.TestProcessors.MockPS in project hazelcast by hazelcast.
the class ExecutionLifecycleTest method when_jobCompletesSuccessfully_then_closeCalled.
@Test
public void when_jobCompletesSuccessfully_then_closeCalled() {
// Given
DAG dag = new DAG().vertex(new Vertex("test", new MockPMS(() -> new MockPS(MockP::new, MEMBER_COUNT))));
// When
Job job = newJob(dag);
job.join();
// Then
assertPClosedWithoutError();
assertPsClosedWithoutError();
assertPmsClosedWithoutError();
assertJobSucceeded(job);
}
Aggregations