HBASE-24317 Removed deprecated setCacheDataInL1 in HColumnDescriptor (#1641)
Signed-off-by: stack <stack@apache.org> Signed-off-by: Duo Zhang <zhangduo@apache.org> Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
parent
0632e9893f
commit
fdbf45886d
|
@ -521,19 +521,6 @@ public class HColumnDescriptor implements ColumnFamilyDescriptor, Comparable<HCo
|
|||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* This is a noop call from HBase 2.0 onwards
|
||||
*
|
||||
* @return this (for chained invocation)
|
||||
* @deprecated Since 2.0 and will be removed in 3.0 with out any replacement. Caching data in on
|
||||
* heap Cache, when there are both on heap LRU Cache and Bucket Cache will no longer
|
||||
* be supported from 2.0.
|
||||
*/
|
||||
@Deprecated
|
||||
public HColumnDescriptor setCacheDataInL1(boolean value) {
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCacheIndexesOnWrite() {
|
||||
return delegatee.isCacheIndexesOnWrite();
|
||||
|
|
Loading…
Reference in New Issue