Uses of Enum Class
org.apache.hadoop.hbase.quotas.ThrottleType

Packages that use org.apache.hadoop.hbase.quotas.ThrottleType
  • Uses of org.apache.hadoop.hbase.quotas.ThrottleType in org.apache.hadoop.hbase.quotas

    Methods in org.apache.hadoop.hbase.quotas that return org.apache.hadoop.hbase.quotas.ThrottleType in in
    Modifier and Type
    Method
    Description
    org.apache.hadoop.hbase.quotas.ThrottleType
    ThrottleSettings.getThrottleType()
     
    static org.apache.hadoop.hbase.quotas.ThrottleType
    ThrottleType.valueOf(String name)
     
    static org.apache.hadoop.hbase.quotas.ThrottleType[]
    ThrottleType.values()
     
    Methods in org.apache.hadoop.hbase.quotas with parameters of type org.apache.hadoop.hbase.quotas.ThrottleType in in
    Modifier and Type
    Method
    Description
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleNamespace(String namespace, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit)
    Throttle the specified namespace.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleNamespace(String namespace, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit, org.apache.hadoop.hbase.quotas.QuotaScope scope)
    Throttle the specified namespace.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleRegionServer(String regionServer, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit)
    Throttle the specified region server.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleTable(org.apache.hadoop.hbase.TableName tableName, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit)
    Throttle the specified table.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleTable(org.apache.hadoop.hbase.TableName tableName, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit, org.apache.hadoop.hbase.quotas.QuotaScope scope)
    Throttle the specified table.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleUser(String userName, String namespace, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit)
    Throttle the specified user on the specified namespace.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleUser(String userName, String namespace, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit, org.apache.hadoop.hbase.quotas.QuotaScope scope)
    Throttle the specified user on the specified namespace.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleUser(String userName, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit)
    Throttle the specified user.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleUser(String userName, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit, org.apache.hadoop.hbase.quotas.QuotaScope scope)
    Throttle the specified user.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleUser(String userName, org.apache.hadoop.hbase.TableName tableName, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit)
    Throttle the specified user on the specified table.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.throttleUser(String userName, org.apache.hadoop.hbase.TableName tableName, org.apache.hadoop.hbase.quotas.ThrottleType type, long limit, TimeUnit timeUnit, org.apache.hadoop.hbase.quotas.QuotaScope scope)
    Throttle the specified user on the specified table.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.unthrottleNamespaceByThrottleType(String namespace, org.apache.hadoop.hbase.quotas.ThrottleType type)
    Remove the throttling for the specified namespace by throttle type.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.unthrottleRegionServerByThrottleType(String regionServer, org.apache.hadoop.hbase.quotas.ThrottleType type)
    Remove the throttling for the specified region server by throttle type.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.unthrottleTableByThrottleType(org.apache.hadoop.hbase.TableName tableName, org.apache.hadoop.hbase.quotas.ThrottleType type)
    Remove the throttling for the specified table.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.unthrottleUserByThrottleType(String userName, String namespace, org.apache.hadoop.hbase.quotas.ThrottleType type)
    Remove the throttling for the specified user on the specified namespace.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.unthrottleUserByThrottleType(String userName, org.apache.hadoop.hbase.quotas.ThrottleType type)
    Remove the throttling for the specified user.
    static org.apache.hadoop.hbase.quotas.QuotaSettings
    QuotaSettingsFactory.unthrottleUserByThrottleType(String userName, org.apache.hadoop.hbase.TableName tableName, org.apache.hadoop.hbase.quotas.ThrottleType type)
    Remove the throttling for the specified user on the specified table.
  • Uses of org.apache.hadoop.hbase.quotas.ThrottleType in org.apache.hadoop.hbase.shaded.protobuf

    Methods in org.apache.hadoop.hbase.shaded.protobuf that return org.apache.hadoop.hbase.quotas.ThrottleType in in
    Modifier and Type
    Method
    Description
    static org.apache.hadoop.hbase.quotas.ThrottleType
    ProtobufUtil.toThrottleType(org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.ThrottleType proto)
    Convert a protocol buffer ThrottleType to a client ThrottleType
    Methods in org.apache.hadoop.hbase.shaded.protobuf with parameters of type org.apache.hadoop.hbase.quotas.ThrottleType in in
    Modifier and Type
    Method
    Description
    static org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.ThrottleType
    ProtobufUtil.toProtoThrottleType(org.apache.hadoop.hbase.quotas.ThrottleType type)
    Convert a client ThrottleType to a protocol buffer ThrottleType