-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Expand file tree
/
Copy pathoptions.go
More file actions
97 lines (84 loc) · 2.88 KB
/
Copy pathoptions.go
File metadata and controls
97 lines (84 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Copyright 2019 PingCAP, Inc.
//
// 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 ddl
import (
"time"
"github.com/pingcap/tidb/pkg/ddl/notifier"
"github.com/pingcap/tidb/pkg/extworkload"
"github.com/pingcap/tidb/pkg/infoschema"
"github.com/pingcap/tidb/pkg/kv"
"github.com/pingcap/tidb/pkg/meta/autoid"
clientv3 "go.etcd.io/etcd/client/v3"
)
// Option represents an option to initialize the DDL module
type Option func(*Options)
// Options represents all the options of the DDL module needs
type Options struct {
EtcdCli *clientv3.Client
Store kv.Storage
AutoIDClient *autoid.ClientDiscover
InfoCache *infoschema.InfoCache
Lease time.Duration
SchemaLoader SchemaLoader
EventPublishStore notifier.Store
ExtWorkloadMgr extworkload.Manager
}
// WithEtcdClient specifies the `clientv3.Client` of DDL used to request the etcd service
func WithEtcdClient(client *clientv3.Client) Option {
return func(options *Options) {
options.EtcdCli = client
}
}
// WithStore specifies the `kv.Storage` of DDL used to request the KV service
func WithStore(store kv.Storage) Option {
return func(options *Options) {
options.Store = store
}
}
// WithInfoCache specifies the `infoschema.InfoCache`
func WithInfoCache(ic *infoschema.InfoCache) Option {
return func(options *Options) {
options.InfoCache = ic
}
}
// WithAutoIDClient specifies the autoid client used by the autoid service for those AUTO_ID_CACHE=1 tables.
func WithAutoIDClient(cli *autoid.ClientDiscover) Option {
return func(options *Options) {
options.AutoIDClient = cli
}
}
// WithLease specifies the schema lease duration
func WithLease(lease time.Duration) Option {
return func(options *Options) {
options.Lease = lease
}
}
// WithSchemaLoader specifies the schema loader used to load schema from storage
func WithSchemaLoader(loader SchemaLoader) Option {
return func(options *Options) {
options.SchemaLoader = loader
}
}
// WithEventPublishStore specifies the store used to publish DDL events
func WithEventPublishStore(store notifier.Store) Option {
return func(options *Options) {
options.EventPublishStore = store
}
}
// WithExternalWorkloadManager specifies the manager used to coordinate external background workloads.
func WithExternalWorkloadManager(manager extworkload.Manager) Option {
return func(options *Options) {
options.ExtWorkloadMgr = manager
}
}