HBASE-11178 Remove deprecation annotations from mapred namespace
Our parent project is not dropping its legacy API, so neither shall we. Remove the deprecation annotations from that implementation.
This commit is contained in:
parent
321a6085fb
commit
26dcd96b60
|
@ -27,7 +27,6 @@ import com.google.common.annotations.VisibleForTesting;
|
|||
* Driver for hbase mapreduce jobs. Select which to run by passing name of job
|
||||
* to this main.
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class Driver {
|
||||
|
|
|
@ -38,7 +38,6 @@ import org.apache.hadoop.mapred.Reporter;
|
|||
/**
|
||||
* Extract grouping columns from input record
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class GroupingTableMap
|
||||
|
|
|
@ -41,7 +41,6 @@ import org.apache.hadoop.mapred.Partitioner;
|
|||
* @param <K2>
|
||||
* @param <V2>
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class HRegionPartitioner<K2,V2>
|
||||
|
|
|
@ -32,7 +32,6 @@ import org.apache.hadoop.mapred.Reporter;
|
|||
/**
|
||||
* Pass the given key and record as-is to reduce
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class IdentityTableMap
|
||||
|
|
|
@ -34,7 +34,6 @@ import org.apache.hadoop.mapred.Reporter;
|
|||
/**
|
||||
* Write to table each key, record pair
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class IdentityTableReduce
|
||||
|
|
|
@ -41,7 +41,6 @@ import org.apache.hadoop.util.ToolRunner;
|
|||
* Map outputs table rows IF the input row has columns that have content.
|
||||
* Uses an {@link IdentityReducer}
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class RowCounter extends Configured implements Tool {
|
||||
|
|
|
@ -36,7 +36,6 @@ import org.apache.hadoop.util.StringUtils;
|
|||
/**
|
||||
* Convert HBase tabular data into a format that is consumable by Map/Reduce.
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class TableInputFormat extends TableInputFormatBase implements
|
||||
|
|
|
@ -65,7 +65,6 @@ import org.apache.hadoop.mapred.Reporter;
|
|||
* </pre>
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public abstract class TableInputFormatBase
|
||||
|
|
|
@ -32,7 +32,6 @@ import org.apache.hadoop.mapred.Mapper;
|
|||
* @param <K> WritableComparable key class
|
||||
* @param <V> Writable value class
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public interface TableMap<K extends WritableComparable<? super K>, V>
|
||||
|
|
|
@ -49,7 +49,6 @@ import org.apache.zookeeper.KeeperException;
|
|||
/**
|
||||
* Utility for {@link TableMap} and {@link TableReduce}
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||
|
|
|
@ -41,7 +41,6 @@ import org.apache.hadoop.util.Progressable;
|
|||
/**
|
||||
* Convert Map/Reduce output and write it to an HBase table
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class TableOutputFormat extends
|
||||
|
|
|
@ -33,7 +33,6 @@ import org.apache.hadoop.mapred.RecordReader;
|
|||
/**
|
||||
* Iterate over an HBase table data, return (Text, RowResult) pairs
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class TableRecordReader
|
||||
|
|
|
@ -42,7 +42,6 @@ import static org.apache.hadoop.hbase.mapreduce.TableRecordReaderImpl.LOG_PER_RO
|
|||
/**
|
||||
* Iterate over an HBase table data, return (Text, RowResult) pairs
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class TableRecordReaderImpl {
|
||||
|
|
|
@ -31,7 +31,6 @@ import org.apache.hadoop.mapred.Reducer;
|
|||
* @param <K> key class
|
||||
* @param <V> value class
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
@SuppressWarnings("unchecked")
|
||||
|
|
|
@ -33,7 +33,6 @@ import org.apache.hadoop.mapred.InputSplit;
|
|||
/**
|
||||
* A table split corresponds to a key range [low, high)
|
||||
*/
|
||||
@Deprecated
|
||||
@InterfaceAudience.Public
|
||||
@InterfaceStability.Stable
|
||||
public class TableSplit implements InputSplit, Comparable<TableSplit> {
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
/**
|
||||
Provides HBase <a href="http://wiki.apache.org/hadoop/HadoopMapReduce">MapReduce</a>
|
||||
Input/OutputFormats, a table indexing MapReduce job, and utility
|
||||
Input/OutputFormats, a table indexing MapReduce job, and utility methods.
|
||||
|
||||
<p>See <a href="http://hbase.apache.org/book.html#mapreduce">HBase and MapReduce</a>
|
||||
in the HBase Reference Guide for mapreduce over hbase documentation.
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
/**
|
||||
Provides HBase <a href="http://wiki.apache.org/hadoop/HadoopMapReduce">MapReduce</a>
|
||||
Input/OutputFormats, a table indexing MapReduce job, and utility
|
||||
Input/OutputFormats, a table indexing MapReduce job, and utility methods.
|
||||
|
||||
<p>See <a href="http://hbase.apache.org/book.html#mapreduce">HBase and MapReduce</a>
|
||||
in the HBase Reference Guide for mapreduce over hbase documentation.
|
||||
|
|
Loading…
Reference in New Issue