org.apache.hadoop.hbase.quotas.QuotaSnapshotStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbase-server Show documentation
Show all versions of hbase-server Show documentation
Server functionality for HBase
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hbase.quotas;
import java.io.IOException;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.hadoop.hbase.client.RegionInfo;
import org.apache.hadoop.hbase.quotas.SpaceQuotaSnapshot.SpaceQuotaStatus;
import org.apache.yetus.audience.InterfaceAudience;
import org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.SpaceQuota;
/**
* A common interface for computing and storing space quota observance/violation for entities. An
* entity is presently a table or a namespace.
*/
@InterfaceAudience.Private
public interface QuotaSnapshotStore {
/**
* Singleton to represent a table without a quota defined. It is never in violation.
*/
public static final SpaceQuotaSnapshot NO_QUOTA =
new SpaceQuotaSnapshot(SpaceQuotaStatus.notInViolation(), -1, -1);
/**
* Fetch the Quota for the given {@code subject}. May be null.
* @param subject The object for which the quota should be fetched
*/
SpaceQuota getSpaceQuota(T subject) throws IOException;
/**
* Returns the current {@link SpaceQuotaSnapshot} for the given {@code subject}.
* @param subject The object which the quota snapshot should be fetched
*/
SpaceQuotaSnapshot getCurrentState(T subject);
/**
* Computes the target {@link SpaceQuotaSnapshot} for the given {@code subject} and
* {@code spaceQuota}.
* @param subject The object which to determine the target SpaceQuotaSnapshot of
* @param spaceQuota The quota "definition" for the {@code subject}
*/
SpaceQuotaSnapshot getTargetState(T subject, SpaceQuota spaceQuota) throws IOException;
/**
* Filters the provided regions
, returning those which match the given
* subject
.
* @param subject The filter criteria. Only regions belonging to this parameter will be returned
*/
Iterable> filterBySubject(T subject);
/**
* Persists the current {@link SpaceQuotaSnapshot} for the {@code subject}.
* @param subject The object which the {@link SpaceQuotaSnapshot} is being persisted for
* @param state The current state of the {@code subject}
*/
void setCurrentState(T subject, SpaceQuotaSnapshot state);
/**
* Updates {@code this} with the latest snapshot of filesystem use by region.
* @param regionUsage A map of {@code RegionInfo} objects to their filesystem usage in bytes
*/
void setRegionUsage(Map regionUsage);
}