MAPREDUCE-6613. Change mapreduce.jobhistory.jhist.format default from json to binary (rchiang via rkanter)
This commit is contained in:
parent
37577852ba
commit
6eae4337d1
|
@ -16,6 +16,9 @@ Trunk (Unreleased)
|
|||
MAPREDUCE-6336. Enable v2 FileOutputCommitter by default.
|
||||
(Siqi Li via gera)
|
||||
|
||||
MAPREDUCE-6613. Change mapreduce.jobhistory.jhist.format default from
|
||||
json to binary (rchiang via rkanter)
|
||||
|
||||
NEW FEATURES
|
||||
|
||||
MAPREDUCE-778. Rumen Anonymizer. (Amar Kamat and Chris Douglas via amarrk)
|
||||
|
|
|
@ -227,5 +227,5 @@ public class JHAdminConfig {
|
|||
public static final String MR_HS_JHIST_FORMAT =
|
||||
MR_HISTORY_PREFIX + "jhist.format";
|
||||
public static final String DEFAULT_MR_HS_JHIST_FORMAT =
|
||||
"json";
|
||||
"binary";
|
||||
}
|
||||
|
|
|
@ -1754,7 +1754,7 @@
|
|||
values are "json" for text output and "binary" for faster parsing.
|
||||
</description>
|
||||
<name>mapreduce.jobhistory.jhist.format</name>
|
||||
<value>json</value>
|
||||
<value>binary</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
|
|
Loading…
Reference in New Issue