MAPREDUCE-6831. Flaky test TestJobImpl.testKilledDuringKillAbort. Contributed by Peter Bacsko
This commit is contained in:
parent
7ee8be1aa3
commit
78b487bde1
|
@ -102,7 +102,6 @@ import org.apache.hadoop.yarn.event.InlineDispatcher;
|
||||||
import org.apache.hadoop.yarn.exceptions.YarnRuntimeException;
|
import org.apache.hadoop.yarn.exceptions.YarnRuntimeException;
|
||||||
import org.apache.hadoop.yarn.state.StateMachine;
|
import org.apache.hadoop.yarn.state.StateMachine;
|
||||||
import org.apache.hadoop.yarn.state.StateMachineFactory;
|
import org.apache.hadoop.yarn.state.StateMachineFactory;
|
||||||
import org.apache.hadoop.yarn.util.ConverterUtils;
|
|
||||||
import org.apache.hadoop.yarn.util.Records;
|
import org.apache.hadoop.yarn.util.Records;
|
||||||
import org.apache.hadoop.yarn.util.SystemClock;
|
import org.apache.hadoop.yarn.util.SystemClock;
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
|
@ -498,9 +497,10 @@ public class TestJobImpl {
|
||||||
public void testKilledDuringKillAbort() throws Exception {
|
public void testKilledDuringKillAbort() throws Exception {
|
||||||
Configuration conf = new Configuration();
|
Configuration conf = new Configuration();
|
||||||
conf.set(MRJobConfig.MR_AM_STAGING_DIR, stagingDir);
|
conf.set(MRJobConfig.MR_AM_STAGING_DIR, stagingDir);
|
||||||
|
// not initializing dispatcher to avoid potential race condition between
|
||||||
|
// the dispatcher thread & test thread - see MAPREDUCE-6831
|
||||||
AsyncDispatcher dispatcher = new AsyncDispatcher();
|
AsyncDispatcher dispatcher = new AsyncDispatcher();
|
||||||
dispatcher.init(conf);
|
|
||||||
dispatcher.start();
|
|
||||||
OutputCommitter committer = new StubbedOutputCommitter() {
|
OutputCommitter committer = new StubbedOutputCommitter() {
|
||||||
@Override
|
@Override
|
||||||
public synchronized void abortJob(JobContext jobContext, State state)
|
public synchronized void abortJob(JobContext jobContext, State state)
|
||||||
|
|
Loading…
Reference in New Issue