org.apache.pulsar.broker.cache.BundlesQuotas Maven / Gradle / Ivy
/**
* 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.pulsar.broker.cache;
import java.util.concurrent.CompletableFuture;
import org.apache.pulsar.common.naming.NamespaceBundle;
import org.apache.pulsar.common.policies.data.ResourceQuota;
import org.apache.pulsar.metadata.api.MetadataCache;
import org.apache.pulsar.metadata.api.MetadataStore;
public class BundlesQuotas {
// Root path for resource-quota
private static final String RESOURCE_QUOTA_ROOT = "/loadbalance/resource-quota";
private static final String DEFAULT_RESOURCE_QUOTA_PATH = RESOURCE_QUOTA_ROOT + "/default";
private final MetadataCache resourceQuotaCache;
// Default initial quota
static final ResourceQuota INITIAL_QUOTA = new ResourceQuota();
static {
INITIAL_QUOTA.setMsgRateIn(40); // incoming msg / sec
INITIAL_QUOTA.setMsgRateOut(120); // outgoing msg / sec
INITIAL_QUOTA.setBandwidthIn(100000); // incoming bytes / sec
INITIAL_QUOTA.setBandwidthOut(300000); // outgoing bytes / sec
INITIAL_QUOTA.setMemory(80); // Mbytes
INITIAL_QUOTA.setDynamic(true); // allow dynamically re-calculating
}
public BundlesQuotas(MetadataStore localStore) {
this.resourceQuotaCache = localStore.getMetadataCache(ResourceQuota.class);
}
public CompletableFuture setDefaultResourceQuota(ResourceQuota quota) {
return resourceQuotaCache.readModifyUpdateOrCreate(DEFAULT_RESOURCE_QUOTA_PATH, __ -> quota)
.thenApply(__ -> null);
}
public CompletableFuture getDefaultResourceQuota() {
return resourceQuotaCache.get(DEFAULT_RESOURCE_QUOTA_PATH)
.thenApply(optResourceQuota -> optResourceQuota.orElse(INITIAL_QUOTA));
}
public CompletableFuture setResourceQuota(String bundle, ResourceQuota quota) {
return resourceQuotaCache.readModifyUpdateOrCreate(RESOURCE_QUOTA_ROOT + "/" + bundle,
__ -> quota)
.thenApply(__ -> null);
}
public CompletableFuture setResourceQuota(NamespaceBundle bundle, ResourceQuota quota) {
return setResourceQuota(bundle.toString(), quota);
}
public CompletableFuture getResourceQuota(NamespaceBundle bundle) {
return getResourceQuota(bundle.toString());
}
public CompletableFuture getResourceQuota(String bundle) {
return resourceQuotaCache.get(RESOURCE_QUOTA_ROOT + "/" + bundle)
.thenCompose(optResourceQuota -> {
if (optResourceQuota.isPresent()) {
return CompletableFuture.completedFuture(optResourceQuota.get());
} else {
return getDefaultResourceQuota();
}
});
}
public CompletableFuture resetResourceQuota(NamespaceBundle bundle) {
return resourceQuotaCache.delete(RESOURCE_QUOTA_ROOT + "/" + bundle.toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy