Uses of Interface
org.apache.hadoop.hbase.quotas.QuotaLimiter

Packages that use org.apache.hadoop.hbase.quotas.QuotaLimiter
Package
Description
 
  • Uses of org.apache.hadoop.hbase.quotas.QuotaLimiter in org.apache.hadoop.hbase.quotas

    Classes in org.apache.hadoop.hbase.quotas that implement org.apache.hadoop.hbase.quotas.QuotaLimiter in in
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.quotas.TimeBasedLimiter
    Simple time based limiter that checks the quota Throttle
    Fields in org.apache.hadoop.hbase.quotas declared as org.apache.hadoop.hbase.quotas.QuotaLimiter in in
    Modifier and Type
    Field
    Description
    protected org.apache.hadoop.hbase.quotas.QuotaLimiter
    QuotaState.globalLimiter
     
    Fields in org.apache.hadoop.hbase.quotas with type parameters of type org.apache.hadoop.hbase.quotas.QuotaLimiter in in
    Modifier and Type
    Field
    Description
    protected final List<org.apache.hadoop.hbase.quotas.QuotaLimiter>
    DefaultOperationQuota.limiters
     
    Methods in org.apache.hadoop.hbase.quotas that return org.apache.hadoop.hbase.quotas.QuotaLimiter in in
    Modifier and Type
    Method
    Description
    static org.apache.hadoop.hbase.quotas.QuotaLimiter
    QuotaLimiterFactory.fromThrottle(org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.Throttle throttle)
     
    org.apache.hadoop.hbase.quotas.QuotaLimiter
    QuotaState.getGlobalLimiter()
    Return the limiter associated with this quota.
    org.apache.hadoop.hbase.quotas.QuotaLimiter
    QuotaCache.getNamespaceLimiter(String namespace)
    Returns the limiter associated to the specified namespace.
    org.apache.hadoop.hbase.quotas.QuotaLimiter
    QuotaCache.getRegionServerQuotaLimiter(String regionServer)
    Returns the limiter associated to the specified region server.
    org.apache.hadoop.hbase.quotas.QuotaLimiter
    QuotaCache.getTableLimiter(org.apache.hadoop.hbase.TableName table)
    Returns the limiter associated to the specified table.
    org.apache.hadoop.hbase.quotas.QuotaLimiter
    UserQuotaState.getTableLimiter(org.apache.hadoop.hbase.TableName table)
    Return the limiter for the specified table associated with this quota.
    org.apache.hadoop.hbase.quotas.QuotaLimiter
    QuotaCache.getUserLimiter(org.apache.hadoop.security.UserGroupInformation ugi, org.apache.hadoop.hbase.TableName table)
    Returns the limiter associated to the specified user/table.
    static org.apache.hadoop.hbase.quotas.QuotaLimiter
    QuotaLimiterFactory.update(org.apache.hadoop.hbase.quotas.QuotaLimiter a, org.apache.hadoop.hbase.quotas.QuotaLimiter b)
     
    Methods in org.apache.hadoop.hbase.quotas with parameters of type org.apache.hadoop.hbase.quotas.QuotaLimiter in in
    Modifier and Type
    Method
    Description
    static org.apache.hadoop.hbase.quotas.QuotaLimiter
    QuotaLimiterFactory.update(org.apache.hadoop.hbase.quotas.QuotaLimiter a, org.apache.hadoop.hbase.quotas.QuotaLimiter b)
     
    Constructors in org.apache.hadoop.hbase.quotas with parameters of type org.apache.hadoop.hbase.quotas.QuotaLimiter in in
    Modifier
    Constructor
    Description
     
    DefaultOperationQuota(org.apache.hadoop.conf.Configuration conf, int blockSizeBytes, org.apache.hadoop.hbase.quotas.QuotaLimiter... limiters)
     
     
    ExceedOperationQuota(org.apache.hadoop.conf.Configuration conf, int blockSizeBytes, org.apache.hadoop.hbase.quotas.QuotaLimiter regionServerLimiter, org.apache.hadoop.hbase.quotas.QuotaLimiter... limiters)
     
    Constructor parameters in org.apache.hadoop.hbase.quotas with type arguments of type org.apache.hadoop.hbase.quotas.QuotaLimiter in in
    Modifier
    Constructor
    Description
     
    DefaultOperationQuota(org.apache.hadoop.conf.Configuration conf, List<org.apache.hadoop.hbase.quotas.QuotaLimiter> limiters)
    NOTE: The order matters.