rate_limiters.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. Copyright 2015 The Kubernetes Authors.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package podautoscaler
  14. import (
  15. "time"
  16. "k8s.io/client-go/util/workqueue"
  17. )
  18. // FixedItemIntervalRateLimiter limits items to a fixed-rate interval
  19. type FixedItemIntervalRateLimiter struct {
  20. interval time.Duration
  21. }
  22. var _ workqueue.RateLimiter = &FixedItemIntervalRateLimiter{}
  23. func NewFixedItemIntervalRateLimiter(interval time.Duration) workqueue.RateLimiter {
  24. return &FixedItemIntervalRateLimiter{
  25. interval: interval,
  26. }
  27. }
  28. func (r *FixedItemIntervalRateLimiter) When(item interface{}) time.Duration {
  29. return r.interval
  30. }
  31. func (r *FixedItemIntervalRateLimiter) NumRequeues(item interface{}) int {
  32. return 1
  33. }
  34. func (r *FixedItemIntervalRateLimiter) Forget(item interface{}) {
  35. }
  36. // NewDefaultHPARateLimiter creates a rate limiter which limits overall (as per the
  37. // default controller rate limiter), as well as per the resync interval
  38. func NewDefaultHPARateLimiter(interval time.Duration) workqueue.RateLimiter {
  39. return NewFixedItemIntervalRateLimiter(interval)
  40. }