You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by sy...@apache.org on 2015/12/26 18:07:37 UTC

[04/43] hbase git commit: HBASE-15000 Fix javadoc warn in LoadIncrementalHFiles. (Ashish)

HBASE-15000 Fix javadoc warn in LoadIncrementalHFiles. (Ashish)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/80fc18d2
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/80fc18d2
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/80fc18d2

Branch: refs/heads/hbase-12439
Commit: 80fc18d2e1f72d312a4ab90a32d6e44c9b560493
Parents: cf458d3
Author: anoopsjohn <an...@gmail.com>
Authored: Thu Dec 17 22:47:48 2015 +0530
Committer: anoopsjohn <an...@gmail.com>
Committed: Thu Dec 17 22:47:48 2015 +0530

----------------------------------------------------------------------
 .../apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java    | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/80fc18d2/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
index 5064c05..0e35427 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
@@ -425,11 +425,12 @@ public class LoadIncrementalHFiles extends Configured implements Tool {
    * @param hfilesDir directory containing list of hfiles to be loaded into the table
    * @param table table to which hfiles should be loaded
    * @param queue queue which needs to be loaded into the table
+   * @param validateHFile if true hfiles will be validated for its format
    * @throws IOException If any I/O or network error occurred
    */
-  public void prepareHFileQueue(Path hfofDir, Table table, Deque<LoadQueueItem> queue,
+  public void prepareHFileQueue(Path hfilesDir, Table table, Deque<LoadQueueItem> queue,
       boolean validateHFile) throws IOException {
-    discoverLoadQueue(queue, hfofDir, validateHFile);
+    discoverLoadQueue(queue, hfilesDir, validateHFile);
     validateFamiliesInHFiles(table, queue);
   }