Repository: hbase
Updated Branches:
  refs/heads/master 9ae023fca -> ba6ba16bc


HBASE-13466 Document deprecations in 1.x - Part 1 (Lars Francke)


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

Branch: refs/heads/master
Commit: ba6ba16bc008e3b9bb8dc4b1674891e9e2313fc0
Parents: 9ae023f
Author: Nick Dimiduk <[email protected]>
Authored: Sun Apr 26 13:11:22 2015 -0700
Committer: Nick Dimiduk <[email protected]>
Committed: Sun Apr 26 13:13:02 2015 -0700

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/ClusterStatus.java  | 10 ++-
 .../apache/hadoop/hbase/HColumnDescriptor.java  | 67 +++++++++++++++-----
 .../org/apache/hadoop/hbase/HRegionInfo.java    | 17 +++--
 .../apache/hadoop/hbase/HTableDescriptor.java   |  5 +-
 .../hadoop/hbase/client/ClientScanner.java      |  4 +-
 .../org/apache/hadoop/hbase/client/HTable.java  |  5 +-
 .../hadoop/hbase/client/HTableInterface.java    |  5 +-
 .../hbase/mapreduce/LoadIncrementalHFiles.java  |  5 +-
 .../hadoop/hbase/mapreduce/TableSplit.java      | 10 ++-
 9 files changed, 100 insertions(+), 28 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/ba6ba16b/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
----------------------------------------------------------------------
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
index 75fa642..52b34a3 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
@@ -87,7 +87,10 @@ public class ClusterStatus extends VersionedWritable {
 
   /**
    * Constructor, for Writable
-   * @deprecated Used by Writables and Writables are going away.
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-6038";>HBASE-6038</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Used by Writables and Writables are going away.
    */
   @Deprecated
   public ClusterStatus() {
@@ -221,7 +224,10 @@ public class ClusterStatus extends VersionedWritable {
    * Returns detailed region server information: A list of
    * {@link ServerName}.
    * @return region server information
-   * @deprecated Use {@link #getServers()}
+   * @deprecated As of release 0.92
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-1502";>HBASE-1502</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #getServers()}.
    */
   @Deprecated
   public Collection<ServerName> getServerInfo() {

http://git-wip-us.apache.org/repos/asf/hbase/blob/ba6ba16b/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
----------------------------------------------------------------------
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
index a480441..f4ac197 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
@@ -285,8 +285,11 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
   private int cachedMaxVersions = UNINITIALIZED;
 
   /**
-   * Default constructor. Must be present for Writable.
-   * @deprecated Used by Writables and Writables are going away.
+   * Default constructor.
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-5453";>HBASE-5453</a>).
+   *             This will be made private in HBase 2.0.0.
+   *             Used by Writables and Writables are going away.
    */
   @Deprecated
   // Make this private rather than remove after deprecation period elapses.  
Its needed by pb
@@ -356,7 +359,10 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
    * other than 'word' characters: i.e. <code>[a-zA-Z_0-9]</code> or contains
    * a <code>:</code>
    * @throws IllegalArgumentException if the number of versions is &lt;= 0
-   * @deprecated use {@link #HColumnDescriptor(String)} and setters
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-";>HBASE-</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #HColumnDescriptor(String)} and setters.
    */
   @Deprecated
   public HColumnDescriptor(final byte [] familyName, final int maxVersions,
@@ -388,7 +394,10 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
    * other than 'word' characters: i.e. <code>[a-zA-Z_0-9]</code> or contains
    * a <code>:</code>
    * @throws IllegalArgumentException if the number of versions is &lt;= 0
-   * @deprecated use {@link #HColumnDescriptor(String)} and setters
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-";>HBASE-</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #HColumnDescriptor(String)} and setters.
    */
   @Deprecated
   public HColumnDescriptor(final byte [] familyName, final int maxVersions,
@@ -428,7 +437,10 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
    * other than 'word' characters: i.e. <code>[a-zA-Z_0-9]</code> or contains
    * a <code>:</code>
    * @throws IllegalArgumentException if the number of versions is &lt;= 0
-   * @deprecated use {@link #HColumnDescriptor(String)} and setters
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-";>HBASE-</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #HColumnDescriptor(String)} and setters.
    */
   @Deprecated
   public HColumnDescriptor(final byte[] familyName, final int minVersions,
@@ -673,7 +685,9 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
 
   /**
    * @return data block encoding algorithm used on disk
-   * @deprecated See getDataBlockEncoding()
+   * @deprecated As of release 0.98
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9870";>HBASE-9870</a>).
+   *             This will be removed in HBase 2.0.0. See {@link 
#getDataBlockEncoding()}}
    */
   @Deprecated
   public DataBlockEncoding getDataBlockEncodingOnDisk() {
@@ -684,7 +698,9 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
    * This method does nothing now. Flag ENCODE_ON_DISK is not used
    * any more. Data blocks have the same encoding in cache as on disk.
    * @return this (for chained invocation)
-   * @deprecated This does nothing now.
+   * @deprecated As of release 0.98
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9870";>HBASE-9870</a>).
+   *             This will be removed in HBase 2.0.0. This method does nothing 
now.
    */
   @Deprecated
   public HColumnDescriptor setEncodeOnDisk(boolean encodeOnDisk) {
@@ -732,7 +748,9 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
   /**
    * @return Whether KV tags should be compressed along with 
DataBlockEncoding. When no
    *         DataBlockEncoding is been used, this is having no effect.
-   * @deprecated Use {@link #isCompressTags()} instead
+   * @deprecated As of release 1.0.0
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-10870";>HBASE-10870</a>).
+   *             This will be removed in HBase 2.0.0. Use {@link 
#isCompressTags()} instead.
    */
   @Deprecated
   public boolean shouldCompressTags() {
@@ -811,7 +829,10 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
    * @param keepDeletedCells True if deleted rows should not be collected
    * immediately.
    * @return this (for chained invocation)
-   * @deprecated use {@link #setKeepDeletedCells(KeepDeletedCells)}
+   * @deprecated As of release 1.0.0
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-12363";>HBASE-12363</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #setKeepDeletedCells(KeepDeletedCells)}.
    */
   @Deprecated
   public HColumnDescriptor setKeepDeletedCells(boolean keepDeletedCells) {
@@ -922,7 +943,9 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
 
   /**
    * @return true if we should cache data blocks on write
-   * @deprecated Use {@link #isCacheDataOnWrite()} instead
+   * @deprecated As of release 1.0.0
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-10870";>HBASE-10870</a>).
+   *             This will be removed in HBase 2.0.0. Use {@link 
#isCacheDataOnWrite()}} instead.
    */
   @Deprecated
   public boolean shouldCacheDataOnWrite() {
@@ -947,7 +970,9 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
   /**
    * @return true if we should cache data blocks in the L1 cache (if block 
cache deploy
    * has more than one tier; e.g. we are using CombinedBlockCache).
-   * @deprecated Use {@link #isCacheDataInL1()} instead
+   * @deprecated As of release 1.0.0
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-10870";>HBASE-10870</a>).
+   *             This will be removed in HBase 2.0.0. Use {@link 
#isCacheDataInL1()}} instead.
    */
   @Deprecated
   public boolean shouldCacheDataInL1() {
@@ -981,7 +1006,10 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
 
   /**
    * @return true if we should cache index blocks on write
-   * @deprecated Use {@link #isCacheIndexesOnWrite()} instead
+   * @deprecated As of release 1.0.0
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-10870";>HBASE-10870</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #isCacheIndexesOnWrite()} instead.
    */
   @Deprecated
   public boolean shouldCacheIndexesOnWrite() {
@@ -1005,7 +1033,10 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
 
   /**
    * @return true if we should cache bloomfilter blocks on write
-   * @deprecated Use {@link #isCacheBloomsOnWrite()} instead
+   * @deprecated As of release 1.0.0
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-10870";>HBASE-10870</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #isCacheBloomsOnWrite()}} instead.
    */
   @Deprecated
   public boolean shouldCacheBloomsOnWrite() {
@@ -1030,7 +1061,10 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
   /**
    * @return true if we should evict cached blocks from the blockcache on
    * close
-   * @deprecated {@link #isEvictBlocksOnClose()} instead
+   * @deprecated As of release 1.0.0
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-10870";>HBASE-10870</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #isEvictBlocksOnClose()}} instead.
    */
   @Deprecated
   public boolean shouldEvictBlocksOnClose() {
@@ -1055,7 +1089,10 @@ public class HColumnDescriptor implements 
Comparable<HColumnDescriptor> {
 
   /**
    * @return true if we should prefetch blocks into the blockcache on open
-   * @deprecated Use {@link #isPrefetchBlocksOnOpen()} instead
+   * @deprecated As of release 1.0.0
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-10870";>HBASE-10870</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #isPrefetchBlocksOnOpen()}}} instead.
    */
   @Deprecated
   public boolean shouldPrefetchBlocksOnOpen() {

http://git-wip-us.apache.org/repos/asf/hbase/blob/ba6ba16b/hbase-client/src/main/java/org/apache/hadoop/hbase/HRegionInfo.java
----------------------------------------------------------------------
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/HRegionInfo.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/HRegionInfo.java
index 1a1bd0d..7b754f4 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/HRegionInfo.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/HRegionInfo.java
@@ -234,7 +234,10 @@ public class HRegionInfo implements 
Comparable<HRegionInfo> {
   }
 
   /** Default constructor - creates empty object
-   * @deprecated Used by Writables and Writables are going away.
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-5453";>HBASE-5453</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Used by Writables and Writables are going away.
    */
   @Deprecated
   public HRegionInfo() {
@@ -486,7 +489,9 @@ public class HRegionInfo implements Comparable<HRegionInfo> 
{
    * Gets the table name from the specified region name.
    * @param regionName
    * @return Table name.
-   * @deprecated Since 0.96.0; use #getTable(byte[])
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9508";>HBASE-9508</a>).
+   *             This will be removed in HBase 2.0.0. Use {@link 
#getTable(byte[])}.
    */
   @Deprecated
   public static byte [] getTableName(byte[] regionName) {
@@ -653,7 +658,9 @@ public class HRegionInfo implements Comparable<HRegionInfo> 
{
   /**
    * Get current table name of the region
    * @return byte array of table name
-   * @deprecated Since 0.96.0; use #getTable()
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9508";>HBASE-9508</a>).
+   *             This will be removed in HBase 2.0.0. Use {@link #getTable()}.
    */
   @Deprecated
   public byte [] getTableName() {
@@ -1255,7 +1262,9 @@ public class HRegionInfo implements 
Comparable<HRegionInfo> {
     if (in.markSupported()) { //read it with mark()
       in.mark(pblen);
     }
-    int read = in.read(pbuf); //assumption: it should be longer than pblen.
+
+    //assumption: if Writable serialization, it should be longer than pblen.
+    int read = in.read(pbuf);
     if (read != pblen) throw new IOException("read=" + read + ", wanted=" + 
pblen);
     if (ProtobufUtil.isPBMagicPrefix(pbuf)) {
       return convert(HBaseProtos.RegionInfo.parseDelimitedFrom(in));

http://git-wip-us.apache.org/repos/asf/hbase/blob/ba6ba16b/hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java
----------------------------------------------------------------------
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java
index a0ab484..24af4ab 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java
@@ -294,7 +294,10 @@ public class HTableDescriptor implements 
Comparable<HTableDescriptor> {
   /**
    * Default constructor which constructs an empty object.
    * For deserializing an HTableDescriptor instance only.
-   * @deprecated Used by Writables and Writables are going away.
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-5453";>HBASE-5453</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Used by Writables and Writables are going away.
    */
   @Deprecated
   public HTableDescriptor() {

http://git-wip-us.apache.org/repos/asf/hbase/blob/ba6ba16b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java
----------------------------------------------------------------------
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java
index ecbadb7..d81a398 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java
@@ -165,7 +165,9 @@ public class ClientScanner extends AbstractClientScanner {
 
     /**
      * @return Table name
-     * @deprecated Since 0.96.0; use {@link #getTable()}
+     * @deprecated As of release 0.96
+     *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9508";>HBASE-9508</a>).
+     *             This will be removed in HBase 2.0.0. Use {@link 
#getTable()}.
      */
     @Deprecated
     protected byte [] getTableName() {

http://git-wip-us.apache.org/repos/asf/hbase/blob/ba6ba16b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java
----------------------------------------------------------------------
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java
index d3bad280..6cdfc8a 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java
@@ -973,7 +973,10 @@ public class HTable implements HTableInterface {
   }
 
   /**
-   * @deprecated Use {@link #incrementColumnValue(byte[], byte[], byte[], 
long, Durability)}
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9508";>HBASE-9508</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #incrementColumnValue(byte[], byte[], byte[], 
long, Durability)}.
    */
   @Deprecated
   @Override

http://git-wip-us.apache.org/repos/asf/hbase/blob/ba6ba16b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
----------------------------------------------------------------------
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
index 1f4d99a..5823f69 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java
@@ -46,7 +46,10 @@ public interface HTableInterface extends Table {
   byte[] getTableName();
 
   /**
-   * @deprecated Use {@link #incrementColumnValue(byte[], byte[], byte[], 
long, Durability)}
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9508";>HBASE-9508</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #incrementColumnValue(byte[], byte[], byte[], 
long, Durability)}.
    */
   @Deprecated
   long incrementColumnValue(final byte [] row, final byte [] family,

http://git-wip-us.apache.org/repos/asf/hbase/blob/ba6ba16b/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 0624f10..730fd67 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
@@ -670,7 +670,10 @@ public class LoadIncrementalHFiles extends Configured 
implements Tool {
   }
 
   /**
-   * @deprecated Use {@link #tryAtomicRegionLoad(Connection, TableName, 
byte[], Collection)}
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9508";>HBASE-9508</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link #tryAtomicRegionLoad(Connection, TableName, 
byte[], Collection)}.
    */
   @Deprecated
   protected List<LoadQueueItem> tryAtomicRegionLoad(final HConnection conn,

http://git-wip-us.apache.org/repos/asf/hbase/blob/ba6ba16b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableSplit.java
----------------------------------------------------------------------
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableSplit.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableSplit.java
index d30c948..090b1a2 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableSplit.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/TableSplit.java
@@ -91,7 +91,10 @@ implements Writable, Comparable<TableSplit> {
   }
 
   /**
-   * @deprecated Since 0.96.0; use {@link TableSplit#TableSplit(TableName, 
byte[], byte[], String)}
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9508";>HBASE-9508</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link TableSplit#TableSplit(TableName, byte[], byte[], 
String)}.
    */
   @Deprecated
   public TableSplit(final byte [] tableName, Scan scan, byte [] startRow, byte 
[] endRow,
@@ -139,7 +142,10 @@ implements Writable, Comparable<TableSplit> {
   }
 
   /**
-   * @deprecated Since 0.96.0; use {@link TableSplit#TableSplit(TableName, 
byte[], byte[], String)}
+   * @deprecated As of release 0.96
+   *             (<a 
href="https://issues.apache.org/jira/browse/HBASE-9508";>HBASE-9508</a>).
+   *             This will be removed in HBase 2.0.0.
+   *             Use {@link TableSplit#TableSplit(TableName, byte[], byte[], 
String)}.
    */
   @Deprecated
   public TableSplit(final byte [] tableName, byte[] startRow, byte[] endRow,

Reply via email to