You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by nd...@apache.org on 2014/07/21 18:25:05 UTC

git commit: HBASE-11545 mapred.TableSnapshotInputFormat is missing InterfaceAudience annotation

Repository: hbase
Updated Branches:
  refs/heads/master 4aeded758 -> 857c03c16


HBASE-11545 mapred.TableSnapshotInputFormat is missing InterfaceAudience annotation


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

Branch: refs/heads/master
Commit: 857c03c166c9c2a62fc79e564fe9f84f2cacce89
Parents: 4aeded7
Author: Nick Dimiduk <nd...@apache.org>
Authored: Fri Jul 18 15:40:39 2014 -0700
Committer: Nick Dimiduk <nd...@apache.org>
Committed: Mon Jul 21 07:53:13 2014 -0700

----------------------------------------------------------------------
 .../hadoop/hbase/mapred/TableSnapshotInputFormat.java     | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/857c03c1/hbase-server/src/main/java/org/apache/hadoop/hbase/mapred/TableSnapshotInputFormat.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapred/TableSnapshotInputFormat.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapred/TableSnapshotInputFormat.java
index 356c5f7..e22b709 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapred/TableSnapshotInputFormat.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapred/TableSnapshotInputFormat.java
@@ -18,6 +18,8 @@
 
 package org.apache.hadoop.hbase.mapred;
 
+import org.apache.hadoop.classification.InterfaceAudience;
+import org.apache.hadoop.classification.InterfaceStability;
 import org.apache.hadoop.fs.Path;
 import org.apache.hadoop.hbase.HRegionInfo;
 import org.apache.hadoop.hbase.HTableDescriptor;
@@ -35,6 +37,14 @@ import java.io.DataOutput;
 import java.io.IOException;
 import java.util.List;
 
+/**
+ * TableSnapshotInputFormat allows a MapReduce job to run over a table snapshot. Further
+ * documentation available on {@link org.apache.hadoop.hbase.mapreduce.TableSnapshotInputFormat}.
+ *
+ * @see org.apache.hadoop.hbase.mapreduce.TableSnapshotInputFormat
+ */
+@InterfaceAudience.Public
+@InterfaceStability.Evolving
 public class TableSnapshotInputFormat implements InputFormat<ImmutableBytesWritable, Result> {
 
   static class TableSnapshotRegionSplit implements InputSplit {