MAPREDUCE-6366. mapreduce.terasort.final.sync configuration in TeraSort doesn't work. Contributed by Takuya Fukudome.
This commit is contained in:
parent
fcd0702c10
commit
e82067bfe6
@ -419,6 +419,9 @@ Release 2.8.0 - UNRELEASED
|
||||
copySucceeded() in one thread and copyFailed() in another thread on the
|
||||
same host. (Junping Du via ozawa)
|
||||
|
||||
MAPREDUCE-6366. mapreduce.terasort.final.sync configuration in TeraSort
|
||||
doesn't work. (Takuya Fukudome via ozawa)
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -328,7 +328,6 @@ public int run(String[] args) throws Exception {
|
||||
}
|
||||
|
||||
job.getConfiguration().setInt("dfs.replication", getOutputReplication(job));
|
||||
TeraOutputFormat.setFinalSync(job, true);
|
||||
int ret = job.waitForCompletion(true) ? 0 : 1;
|
||||
LOG.info("done");
|
||||
return ret;
|
||||
|
@ -70,7 +70,7 @@ public String toString() {
|
||||
public static final long DEFAULT_NUM_ROWS = 0L;
|
||||
public static final int DEFAULT_NUM_PARTITIONS = 10;
|
||||
public static final long DEFAULT_SAMPLE_SIZE = 100000L;
|
||||
public static final boolean DEFAULT_FINAL_SYNC_ATTRIBUTE = false;
|
||||
public static final boolean DEFAULT_FINAL_SYNC_ATTRIBUTE = true;
|
||||
public static final boolean DEFAULT_USE_TERA_SCHEDULER = true;
|
||||
public static final boolean DEFAULT_USE_SIMPLE_PARTITIONER = false;
|
||||
public static final int DEFAULT_OUTPUT_REPLICATION = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user