[HBASE-26243]Fix typo for file "hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java" (#3650)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
hapihu 2021-09-09 12:11:49 +08:00 committed by Duo Zhang
parent b78d35598c
commit 9e04033ad2
1 changed files with 3 additions and 3 deletions

View File

@ -1823,7 +1823,7 @@ public class HBaseFsck extends Configured implements Closeable {
} }
/** /**
* Check consistency of all regions using mulitple threads concurrently. * Check consistency of all regions using multiple threads concurrently.
*/ */
private void checkRegionConsistencyConcurrently( private void checkRegionConsistencyConcurrently(
final List<CheckRegionConsistencyWorkItem> workItems) final List<CheckRegionConsistencyWorkItem> workItems)
@ -3563,7 +3563,7 @@ public class HBaseFsck extends Configured implements Closeable {
out.println("NOTE: Following options are NOT supported as of HBase version 2.0+."); out.println("NOTE: Following options are NOT supported as of HBase version 2.0+.");
out.println(""); out.println("");
out.println(" UNSUPPORTED Metadata Repair options: (expert features, use with caution!)"); out.println(" UNSUPPORTED Metadata Repair options: (expert features, use with caution!)");
out.println(" -fix Try to fix region assignments. This is for backwards compatiblity"); out.println(" -fix Try to fix region assignments. This is for backwards compatibility");
out.println(" -fixAssignments Try to fix region assignments. Replaces the old -fix"); out.println(" -fixAssignments Try to fix region assignments. Replaces the old -fix");
out.println(" -fixMeta Try to fix meta problems. This assumes HDFS region info is good."); out.println(" -fixMeta Try to fix meta problems. This assumes HDFS region info is good.");
out.println(" -fixHdfsHoles Try to fix region holes in hdfs."); out.println(" -fixHdfsHoles Try to fix region holes in hdfs.");
@ -3864,7 +3864,7 @@ public class HBaseFsck extends Configured implements Closeable {
for (String arg : args) { for (String arg : args) {
if (unsupportedOptionsInV2.contains(arg)) { if (unsupportedOptionsInV2.contains(arg)) {
errors.reportError(ERROR_CODE.UNSUPPORTED_OPTION, errors.reportError(ERROR_CODE.UNSUPPORTED_OPTION,
"option '" + arg + "' is not " + "supportted!"); "option '" + arg + "' is not " + "supported!");
result = false; result = false;
break; break;
} }