
io.kubernetes.client.extended.workqueue.ratelimiter.DefaultControllerRateLimiter Maven / Gradle / Ivy
The newest version!
/*
Copyright 2020 The Kubernetes Authors.
Licensed 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 io.kubernetes.client.extended.workqueue.ratelimiter;
import java.time.Duration;
import java.util.Arrays;
/**
* DefaultControllerRateLimiter is a default rate limiter for workqueue. It has both overall and
* per-item rate limiting. The overall is a token bucket and the per-item is exponential
*/
public class DefaultControllerRateLimiter implements RateLimiter {
private RateLimiter internalRateLimiter;
public DefaultControllerRateLimiter() {
this.internalRateLimiter =
new MaxOfRateLimiter<>(
Arrays.asList(
new ItemExponentialFailureRateLimiter<>(
Duration.ofMillis(5), Duration.ofSeconds(1000)),
new BucketRateLimiter<>(100, 10, Duration.ofMinutes(1))));
}
@Override
public Duration when(T item) {
return internalRateLimiter.when(item);
}
@Override
public void forget(T item) {
internalRateLimiter.forget(item);
}
@Override
public int numRequeues(T item) {
return internalRateLimiter.numRequeues(item);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy