@InterfaceAudience.LimitedPrivate(value="Coprocesssor")
@InterfaceStability.Evolving
public interface RpcQuotaManager
| Modifier and Type | Method and Description |
|---|---|
OperationQuota |
checkBatchQuota(Region region,
int numWrites,
int numReads)
Check the quota for the current (rpc-context) user.
|
OperationQuota |
checkBatchQuota(Region region,
List<org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.Action> actions,
boolean hasCondition)
Check the quota for the current (rpc-context) user.
|
OperationQuota |
checkBatchQuota(Region region,
OperationQuota.OperationType type)
Check the quota for the current (rpc-context) user.
|
OperationQuota |
checkScanQuota(Region region,
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ScanRequest scanRequest,
long maxScannerResultSize,
long maxBlockBytesScanned,
long prevBlockBytesScannedDifference)
Check the quota for the current (rpc-context) user.
|
OperationQuota checkScanQuota(Region region, org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ScanRequest scanRequest, long maxScannerResultSize, long maxBlockBytesScanned, long prevBlockBytesScannedDifference) throws IOException, RpcThrottlingException
region - the region where the operation will be performedscanRequest - the scan to be estimated against the quotamaxScannerResultSize - the maximum bytes to be returned by the scannermaxBlockBytesScanned - the maximum bytes scanned in a single RPC call by the
scannerprevBlockBytesScannedDifference - the difference between BBS of the previous two next
callsRpcThrottlingException - if the operation cannot be executed due to quota exceeded.IOExceptionOperationQuota checkBatchQuota(Region region, OperationQuota.OperationType type) throws IOException, RpcThrottlingException
region - the region where the operation will be performedtype - the operation typeRpcThrottlingException - if the operation cannot be executed due to quota exceeded.IOExceptionOperationQuota checkBatchQuota(Region region, List<org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.Action> actions, boolean hasCondition) throws IOException, RpcThrottlingException
region - the region where the operation will be performedactions - the "multi" actions to performhasCondition - whether the RegionAction has a conditionRpcThrottlingException - if the operation cannot be executed due to quota exceeded.IOExceptionOperationQuota checkBatchQuota(Region region, int numWrites, int numReads) throws IOException, RpcThrottlingException
region - the region where the operation will be performednumWrites - number of writes to count against quotanumReads - number of reads to count against quotaRpcThrottlingException - if the operation cannot be executed due to quota exceeded.IOExceptionCopyright © 2007–2020 The Apache Software Foundation. All rights reserved.