MAPREDUCE-4432. Confusing warning message when GenericOptionsParser is not used. Contributed by Gabriel Reid. (harsh)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1361273 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bea60b6c86
commit
af0e0b1676
|
@ -159,6 +159,9 @@ Branch-2 ( Unreleased changes )
|
||||||
MAPREDUCE-3906. Fix inconsistency in documentation regarding
|
MAPREDUCE-3906. Fix inconsistency in documentation regarding
|
||||||
mapreduce.jobhistory.principal. (Eugene Koontz via harsh)
|
mapreduce.jobhistory.principal. (Eugene Koontz via harsh)
|
||||||
|
|
||||||
|
MAPREDUCE-4432. Confusing warning message when GenericOptionsParser
|
||||||
|
is not used. (Gabriel Reid via harsh)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
|
@ -135,8 +135,9 @@ class JobSubmitter {
|
||||||
short replication) throws IOException {
|
short replication) throws IOException {
|
||||||
Configuration conf = job.getConfiguration();
|
Configuration conf = job.getConfiguration();
|
||||||
if (!(conf.getBoolean(Job.USED_GENERIC_PARSER, false))) {
|
if (!(conf.getBoolean(Job.USED_GENERIC_PARSER, false))) {
|
||||||
LOG.warn("Use GenericOptionsParser for parsing the arguments. " +
|
LOG.warn("Hadoop command-line option parsing not performed. " +
|
||||||
"Applications should implement Tool for the same.");
|
"Implement the Tool interface and execute your application " +
|
||||||
|
"with ToolRunner to remedy this.");
|
||||||
}
|
}
|
||||||
|
|
||||||
// get all the command line arguments passed in by the user conf
|
// get all the command line arguments passed in by the user conf
|
||||||
|
|
Loading…
Reference in New Issue