[
https://issues.apache.org/jira/browse/HBASE-3924?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13176182#comment-13176182
]
Hadoop QA commented on HBASE-3924:
----------------------------------
-1 overall. Here are the results of testing the latest attachment
http://issues.apache.org/jira/secure/attachment/12508673/HBASE-3924.patch
against trunk revision .
+1 @author. The patch does not contain any @author tags.
-1 tests included. The patch doesn't appear to include any new or modified
tests.
Please justify why no new tests are needed for this
patch.
Also please list what manual steps were performed to
verify this patch.
-1 javadoc. The javadoc tool appears to have generated -151 warning
messages.
+1 javac. The applied patch does not increase the total number of javac
compiler warnings.
-1 findbugs. The patch appears to introduce 77 new Findbugs (version
1.3.9) warnings.
+1 release audit. The applied patch does not increase the total number of
release audit warnings.
-1 core tests. The patch failed these unit tests:
org.apache.hadoop.hbase.regionserver.wal.TestLogRolling
org.apache.hadoop.hbase.mapred.TestTableMapReduce
org.apache.hadoop.hbase.mapreduce.TestHFileOutputFormat
Test results:
https://builds.apache.org/job/PreCommit-HBASE-Build/604//testReport/
Findbugs warnings:
https://builds.apache.org/job/PreCommit-HBASE-Build/604//artifact/trunk/patchprocess/newPatchFindbugsWarnings.html
Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/604//console
This message is automatically generated.
> Improve Shell's CLI help
> ------------------------
>
> Key: HBASE-3924
> URL: https://issues.apache.org/jira/browse/HBASE-3924
> Project: HBase
> Issue Type: Improvement
> Components: shell
> Affects Versions: 0.90.3
> Reporter: Lars George
> Assignee: Harsh J
> Priority: Trivial
> Fix For: 0.92.0, 0.94.0
>
> Attachments: HBASE-3924.patch
>
>
> In the hirb.rb source we have
> {noformat}
> # so they don't go through to irb. Output shell 'usage' if user types
> '--help'
> cmdline_help = <<HERE # HERE document output as shell usage
> HBase Shell command-line options:
> format Formatter for outputting results: console | html.
> Default: console
> -d | --debug Set DEBUG log levels.
> HERE
> found = []
> format = 'console'
> script2run = nil
> log_level = org.apache.log4j.Level::ERROR
> for arg in ARGV
> if arg =~ /^--format=(.+)/i
> format = $1
> if format =~ /^html$/i
> raise NoMethodError.new("Not yet implemented")
> elsif format =~ /^console$/i
> # This is default
> else
> raise ArgumentError.new("Unsupported format " + arg)
> end
> found.push(arg)
> elsif arg == '-h' || arg == '--help'
> puts cmdline_help
> exit
> elsif arg == '-d' || arg == '--debug'
> log_level = org.apache.log4j.Level::DEBUG
> $fullBackTrace = true
> puts "Setting DEBUG log level..."
> else
> # Presume it a script. Save it off for running later below
> # after we've set up some environment.
> script2run = arg
> found.push(arg)
> # Presume that any other args are meant for the script.
> break
> end
> end
> {noformat}
> We should enhance the help printed when using -h/--help to look like this?
> {noformat}
> cmdline_help = <<HERE # HERE document output as shell usage
> HBase Shell command-line options:
> --format={console|html} Formatter for outputting results.
> Default: console
> -d | --debug Set DEBUG log levels.
> -h | --help This help.
> <script-filename> [<script-options>]
> HERE
> {noformat}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira