harbor/src/controller/quota/options.go
Chenyu Zhang 70a95a9696
fix: reduce the high db cpu usage for tag retention (#17296)
1. Add two indexes to database migrations.
2. Skip refresh quota in middleware for requests from jobservice.
3. Refresh quota by self in the end of tag retention job.

Closes: #14708

Signed-off-by: chlins <chenyuzh@vmware.com>
2022-08-04 10:08:02 +08:00

58 lines
1.6 KiB
Go

// Copyright Project Harbor 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 quota
import "github.com/goharbor/harbor/src/lib/retry"
// Option option for `Refresh` method of `Controller`
type Option func(*Options)
// Options options used by `Refresh`, `Get`, `List` methods of `Controller`
type Options struct {
IgnoreLimitation bool
WithReferenceObject bool
// RetryOptions is the sets of options but for retry function.
RetryOptions []retry.Option
}
// IgnoreLimitation set IgnoreLimitation for the Options
func IgnoreLimitation(ignoreLimitation bool) func(*Options) {
return func(opts *Options) {
opts.IgnoreLimitation = ignoreLimitation
}
}
// WithReferenceObject set WithReferenceObject to true for the Options
func WithReferenceObject() func(*Options) {
return func(opts *Options) {
opts.WithReferenceObject = true
}
}
// WithRetryOptions set RetryOptions to Options
func WithRetryOptions(retryOpts []retry.Option) func(*Options) {
return func(opts *Options) {
opts.RetryOptions = retryOpts
}
}
func newOptions(options ...Option) *Options {
opts := &Options{}
for _, f := range options {
f(opts)
}
return opts
}