use of org.apache.flink.runtime.operators.testutils.DelayingInfinitiveInputIterator in project flink by apache.
the class CoGroupTaskTest method testCancelCoGroupTaskWhileSorting2.
@Test
public void testCancelCoGroupTaskWhileSorting2() {
int keyCnt = 10;
int valCnt = 2;
setOutput(this.output);
addDriverComparator(this.comparator1);
addDriverComparator(this.comparator2);
getTaskConfig().setDriverPairComparator(RecordPairComparatorFactory.get());
getTaskConfig().setDriverStrategy(DriverStrategy.CO_GROUP);
final CoGroupDriver<Record, Record, Record> testTask = new CoGroupDriver<Record, Record, Record>();
try {
addInput(new UniformRecordGenerator(keyCnt, valCnt, true));
addInputSorted(new DelayingInfinitiveInputIterator(1000), this.comparator2.duplicate());
} catch (Exception e) {
e.printStackTrace();
Assert.fail("The test caused an exception.");
}
final AtomicBoolean success = new AtomicBoolean(false);
Thread taskRunner = new Thread() {
@Override
public void run() {
try {
testDriver(testTask, MockCoGroupStub.class);
success.set(true);
} catch (Exception ie) {
ie.printStackTrace();
}
}
};
taskRunner.start();
TaskCancelThread tct = new TaskCancelThread(1, taskRunner, this);
tct.start();
try {
tct.join();
taskRunner.join();
} catch (InterruptedException ie) {
Assert.fail("Joining threads failed");
}
Assert.assertTrue("Test threw an exception even though it was properly canceled.", success.get());
}
use of org.apache.flink.runtime.operators.testutils.DelayingInfinitiveInputIterator in project flink by apache.
the class CoGroupTaskTest method testCancelCoGroupTaskWhileSorting1.
@Test
public void testCancelCoGroupTaskWhileSorting1() {
int keyCnt = 10;
int valCnt = 2;
setOutput(this.output);
addDriverComparator(this.comparator1);
addDriverComparator(this.comparator2);
getTaskConfig().setDriverPairComparator(RecordPairComparatorFactory.get());
getTaskConfig().setDriverStrategy(DriverStrategy.CO_GROUP);
final CoGroupDriver<Record, Record, Record> testTask = new CoGroupDriver<Record, Record, Record>();
try {
addInputSorted(new DelayingInfinitiveInputIterator(1000), this.comparator1.duplicate());
addInput(new UniformRecordGenerator(keyCnt, valCnt, true));
} catch (Exception e) {
e.printStackTrace();
Assert.fail("The test caused an exception.");
}
final AtomicBoolean success = new AtomicBoolean(false);
Thread taskRunner = new Thread() {
@Override
public void run() {
try {
testDriver(testTask, MockCoGroupStub.class);
success.set(true);
} catch (Exception ie) {
ie.printStackTrace();
}
}
};
taskRunner.start();
TaskCancelThread tct = new TaskCancelThread(1, taskRunner, this);
tct.start();
try {
tct.join();
taskRunner.join();
} catch (InterruptedException ie) {
Assert.fail("Joining threads failed");
}
Assert.assertTrue("Test threw an exception even though it was properly canceled.", success.get());
}
use of org.apache.flink.runtime.operators.testutils.DelayingInfinitiveInputIterator in project flink by apache.
the class ReduceTaskTest method testCancelReduceTaskWhileSorting.
@Test
public void testCancelReduceTaskWhileSorting() {
addDriverComparator(this.comparator);
setOutput(new NirvanaOutputList());
getTaskConfig().setDriverStrategy(DriverStrategy.SORTED_GROUP_REDUCE);
final GroupReduceDriver<Record, Record> testTask = new GroupReduceDriver<>();
try {
addInputSorted(new DelayingInfinitiveInputIterator(100), this.comparator.duplicate());
} catch (Exception e) {
e.printStackTrace();
Assert.fail();
}
final AtomicBoolean success = new AtomicBoolean(false);
Thread taskRunner = new Thread() {
@Override
public void run() {
try {
testDriver(testTask, MockReduceStub.class);
success.set(true);
} catch (Exception ie) {
ie.printStackTrace();
}
}
};
taskRunner.start();
TaskCancelThread tct = new TaskCancelThread(1, taskRunner, this);
tct.start();
try {
tct.join();
taskRunner.join();
} catch (InterruptedException ie) {
Assert.fail("Joining threads failed");
}
Assert.assertTrue("Test threw an exception even though it was properly canceled.", success.get());
}
use of org.apache.flink.runtime.operators.testutils.DelayingInfinitiveInputIterator in project flink by apache.
the class JoinTaskTest method testCancelMatchTaskWhileSort1.
@Test
public void testCancelMatchTaskWhileSort1() {
final int keyCnt = 20;
final int valCnt = 20;
try {
setOutput(new NirvanaOutputList());
addDriverComparator(this.comparator1);
addDriverComparator(this.comparator2);
getTaskConfig().setDriverPairComparator(RecordPairComparatorFactory.get());
getTaskConfig().setDriverStrategy(DriverStrategy.INNER_MERGE);
getTaskConfig().setRelativeMemoryDriver(bnljn_frac);
setNumFileHandlesForSort(4);
final JoinDriver<Record, Record, Record> testTask = new JoinDriver<>();
try {
addInputSorted(new DelayingInfinitiveInputIterator(100), this.comparator1.duplicate());
addInput(new UniformRecordGenerator(keyCnt, valCnt, true));
} catch (Exception e) {
e.printStackTrace();
Assert.fail("The test caused an exception.");
}
final AtomicReference<Throwable> error = new AtomicReference<>();
Thread taskRunner = new Thread("Task runner for testCancelMatchTaskWhileSort1()") {
@Override
public void run() {
try {
testDriver(testTask, MockMatchStub.class);
} catch (Throwable t) {
error.set(t);
}
}
};
taskRunner.start();
Thread.sleep(1000);
cancel();
taskRunner.interrupt();
taskRunner.join(60000);
assertFalse("Task thread did not finish within 60 seconds", taskRunner.isAlive());
Throwable taskError = error.get();
if (taskError != null) {
taskError.printStackTrace();
fail("Error in task while canceling: " + taskError.getMessage());
}
} catch (Exception e) {
e.printStackTrace();
fail(e.getMessage());
}
}
use of org.apache.flink.runtime.operators.testutils.DelayingInfinitiveInputIterator in project flink by apache.
the class JoinTaskTest method testCancelMatchTaskWhileSort2.
@Test
public void testCancelMatchTaskWhileSort2() {
final int keyCnt = 20;
final int valCnt = 20;
try {
setOutput(new NirvanaOutputList());
addDriverComparator(this.comparator1);
addDriverComparator(this.comparator2);
getTaskConfig().setDriverPairComparator(RecordPairComparatorFactory.get());
getTaskConfig().setDriverStrategy(DriverStrategy.INNER_MERGE);
getTaskConfig().setRelativeMemoryDriver(bnljn_frac);
setNumFileHandlesForSort(4);
final JoinDriver<Record, Record, Record> testTask = new JoinDriver<>();
try {
addInput(new UniformRecordGenerator(keyCnt, valCnt, true));
addInputSorted(new DelayingInfinitiveInputIterator(100), this.comparator1.duplicate());
} catch (Exception e) {
e.printStackTrace();
Assert.fail("The test caused an exception.");
}
final AtomicReference<Throwable> error = new AtomicReference<>();
Thread taskRunner = new Thread("Task runner for testCancelMatchTaskWhileSort2()") {
@Override
public void run() {
try {
testDriver(testTask, MockMatchStub.class);
} catch (Throwable t) {
error.set(t);
}
}
};
taskRunner.start();
Thread.sleep(1000);
cancel();
taskRunner.interrupt();
taskRunner.join(60000);
assertFalse("Task thread did not finish within 60 seconds", taskRunner.isAlive());
Throwable taskError = error.get();
if (taskError != null) {
taskError.printStackTrace();
fail("Error in task while canceling: " + taskError.getMessage());
}
} catch (Exception e) {
e.printStackTrace();
fail(e.getMessage());
}
}
Aggregations