Skip to content

Commit

Permalink
HBASE-22227 Removed deprecated fields in ServerSideScanMetrics
Browse files Browse the repository at this point in the history
  • Loading branch information
HorizonNet committed Apr 13, 2019
1 parent cfd74a6 commit 37e93c3
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,22 +49,6 @@ protected AtomicLong createCounter(String counterName) {
public static final String COUNT_OF_ROWS_SCANNED_KEY_METRIC_NAME = "ROWS_SCANNED";
public static final String COUNT_OF_ROWS_FILTERED_KEY_METRIC_NAME = "ROWS_FILTERED";

/**
* @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0
* (<a href="https://issues.apache.org/jira/browse/HBASE-17886">HBASE-17886</a>).
* Use {@link #COUNT_OF_ROWS_SCANNED_KEY_METRIC_NAME}.
*/
@Deprecated
public static final String COUNT_OF_ROWS_SCANNED_KEY = COUNT_OF_ROWS_SCANNED_KEY_METRIC_NAME;

/**
* @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0
* (<a href="https://issues.apache.org/jira/browse/HBASE-17886">HBASE-17886</a>).
* Use {@link #COUNT_OF_ROWS_FILTERED_KEY_METRIC_NAME}.
*/
@Deprecated
public static final String COUNT_OF_ROWS_FILTERED_KEY = COUNT_OF_ROWS_FILTERED_KEY_METRIC_NAME;

/**
* number of rows filtered during scan RPC
*/
Expand Down

0 comments on commit 37e93c3

Please sign in to comment.