@InterfaceAudience.Private @InterfaceStability.Evolving public class MasterQuotaManager extends Object implements RegionStateListener
Modifier and Type | Class and Description |
---|---|
private static class |
MasterQuotaManager.NamedLock<T> |
private static interface |
MasterQuotaManager.SetQuotaOperations
Encapsulates CRUD quota operations for some subject.
|
private static class |
MasterQuotaManager.SizeSnapshotWithTimestamp
Holds the size of a region at the given time, millis since the epoch.
|
Modifier and Type | Field and Description |
---|---|
private static Map<RegionInfo,Long> |
EMPTY_MAP |
private boolean |
initialized |
private static org.slf4j.Logger |
LOG |
private MasterServices |
masterServices |
private MasterQuotaManager.NamedLock<String> |
namespaceLocks |
private NamespaceAuditor |
namespaceQuotaManager |
private ConcurrentHashMap<RegionInfo,MasterQuotaManager.SizeSnapshotWithTimestamp> |
regionSizes |
private MasterQuotaManager.NamedLock<TableName> |
tableLocks |
private MasterQuotaManager.NamedLock<String> |
userLocks |
Constructor and Description |
---|
MasterQuotaManager(MasterServices masterServices) |
Modifier and Type | Method and Description |
---|---|
void |
addRegionSize(RegionInfo hri,
long size,
long time) |
void |
checkAndUpdateNamespaceRegionQuota(TableName tName,
int regions) |
void |
checkNamespaceTableAndRegionQuota(TableName tName,
int regions) |
private void |
checkQuotaSupport() |
private void |
createQuotaTable() |
NamespaceAuditor |
getNamespaceQuotaManager() |
int |
getRegionCountOfTable(TableName tName) |
(package private) void |
initializeRegionSizes() |
boolean |
isQuotaInitialized() |
void |
onRegionMerged(RegionInfo mergedRegion)
Process region merge event.
|
void |
onRegionSplit(RegionInfo hri)
Process region split event.
|
void |
onRegionSplitReverted(RegionInfo hri)
Process region split reverted event.
|
(package private) int |
pruneEntriesOlderThan(long timeToPruneBefore) |
void |
removeNamespaceQuota(String namespace) |
void |
removeTableFromNamespaceQuota(TableName tName)
Remove table from namespace quota.
|
void |
setNamespaceQuota(NamespaceDescriptor desc) |
void |
setNamespaceQuota(String namespace,
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) |
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaResponse |
setQuota(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) |
private void |
setQuota(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req,
MasterQuotaManager.SetQuotaOperations quotaOps) |
void |
setTableQuota(TableName table,
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) |
void |
setUserQuota(String userName,
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) |
void |
setUserQuota(String userName,
String namespace,
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) |
void |
setUserQuota(String userName,
TableName table,
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) |
Map<RegionInfo,Long> |
snapshotRegionSizes() |
void |
start() |
void |
stop() |
private static final org.slf4j.Logger LOG
private static final Map<RegionInfo,Long> EMPTY_MAP
private final MasterServices masterServices
private MasterQuotaManager.NamedLock<String> namespaceLocks
private MasterQuotaManager.NamedLock<TableName> tableLocks
private MasterQuotaManager.NamedLock<String> userLocks
private boolean initialized
private NamespaceAuditor namespaceQuotaManager
private ConcurrentHashMap<RegionInfo,MasterQuotaManager.SizeSnapshotWithTimestamp> regionSizes
public MasterQuotaManager(MasterServices masterServices)
public void start() throws IOException
IOException
public void stop()
public boolean isQuotaInitialized()
public org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaResponse setQuota(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) throws IOException, InterruptedException
IOException
InterruptedException
public void setUserQuota(String userName, org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) throws IOException, InterruptedException
IOException
InterruptedException
public void setUserQuota(String userName, TableName table, org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) throws IOException, InterruptedException
IOException
InterruptedException
public void setUserQuota(String userName, String namespace, org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) throws IOException, InterruptedException
IOException
InterruptedException
public void setTableQuota(TableName table, org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) throws IOException, InterruptedException
IOException
InterruptedException
public void setNamespaceQuota(String namespace, org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req) throws IOException, InterruptedException
IOException
InterruptedException
public void setNamespaceQuota(NamespaceDescriptor desc) throws IOException
IOException
public void removeNamespaceQuota(String namespace) throws IOException
IOException
private void setQuota(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest req, MasterQuotaManager.SetQuotaOperations quotaOps) throws IOException, InterruptedException
IOException
InterruptedException
public void checkNamespaceTableAndRegionQuota(TableName tName, int regions) throws IOException
IOException
public void checkAndUpdateNamespaceRegionQuota(TableName tName, int regions) throws IOException
IOException
public int getRegionCountOfTable(TableName tName) throws IOException
IOException
public void onRegionMerged(RegionInfo mergedRegion) throws IOException
RegionStateListener
onRegionMerged
in interface RegionStateListener
IOException
public void onRegionSplit(RegionInfo hri) throws IOException
RegionStateListener
onRegionSplit
in interface RegionStateListener
hri
- An instance of RegionInfoIOException
public void removeTableFromNamespaceQuota(TableName tName) throws IOException
tName
- - The table name to update quota usage.IOException
- Signals that an I/O exception has occurred.public NamespaceAuditor getNamespaceQuotaManager()
private void checkQuotaSupport() throws IOException
IOException
private void createQuotaTable() throws IOException
IOException
public void onRegionSplitReverted(RegionInfo hri) throws IOException
RegionStateListener
onRegionSplitReverted
in interface RegionStateListener
hri
- An instance of RegionInfoIOException
- Signals that an I/O exception has occurred.void initializeRegionSizes()
public void addRegionSize(RegionInfo hri, long size, long time)
public Map<RegionInfo,Long> snapshotRegionSizes()
int pruneEntriesOlderThan(long timeToPruneBefore)
Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.