From 82d7cb1f1aff8d6988a041276a4239ccd16966e6 Mon Sep 17 00:00:00 2001 From: Andrew Purtell Date: Fri, 27 Oct 2017 14:07:12 -0700 Subject: [PATCH] HBASE-19113 Restore dropped constants from TableInputFormatBase for compatability --- .../org/apache/hadoop/hbase/mapreduce/TableInputFormatBase.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableInputFormatBase.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableInputFormatBase.java index 661b981e70..8d12b43357 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableInputFormatBase.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableInputFormatBase.java @@ -128,6 +128,14 @@ extends InputFormat { " previous error. Please look at the previous logs lines from" + " the task's full log for more details."; + @Deprecated + /** Deprecated. No effect. */ + public static final String INPUT_AUTOBALANCE_MAXSKEWRATIO = "hbase.mapreduce.input.autobalance" + + ".maxskewratio"; + @Deprecated + /** Deprecated. No effect. */ + public static final String TABLE_ROW_TEXTKEY = "hbase.table.row.textkey"; + /** Specify if we enable auto-balance to set number of mappers in M/R jobs. */ public static final String MAPREDUCE_INPUT_AUTOBALANCE = "hbase.mapreduce.input.autobalance"; /** In auto-balance, we split input by ave region size, if calculated region size is too big, we can set it. */ -- 2.13.4