commit 921ecef3864901e74b8a87f83eb34d1e621ce0ba Author: stack Date: Mon May 23 09:12:01 2016 -0700 HBASE-15878 Deprecate doBulkLoad(Path hfofDir, final HTable table) in branch-1 (even though its 'late') 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 78e7c47..4aadc53 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 @@ -287,8 +287,12 @@ public class LoadIncrementalHFiles extends Configured implements Tool { * of a job using HFileOutputFormat * @param table the table to load into * @throws TableNotFoundException if table does not yet exist + * @deprecated since hbase-1.3.0, hbase-1.2.2, and hbase-1.1.6; replaced + * by {@link #doBulkLoad(Path, Admin, Table, RegionLocator)}. + * @see HBASE-15876 */ @SuppressWarnings("deprecation") + @Deprecated public void doBulkLoad(Path hfofDir, final HTable table) throws TableNotFoundException, IOException {