-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathoptions.go
More file actions
371 lines (323 loc) · 14 KB
/
Copy pathoptions.go
File metadata and controls
371 lines (323 loc) · 14 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
package crdb
import (
"fmt"
"time"
"k8s.io/utils/ptr"
"github.com/authzed/spicedb/internal/datastore/common"
pgxcommon "github.com/authzed/spicedb/internal/datastore/postgres/common"
log "github.com/authzed/spicedb/internal/logging"
)
type crdbOptions struct {
readPoolOpts, writePoolOpts pgxcommon.PoolOptions
connectRate time.Duration
revisionQuantization time.Duration
followerReadDelay time.Duration
maxRevisionStalenessPercent float64
gcWindow time.Duration
maxRetries uint8
overlapStrategy string
overlapKey string
enableConnectionBalancing bool
analyzeBeforeStatistics bool
filterMaximumIDCount uint16
enablePrometheusStats bool
withIntegrity bool
allowedMigrations []string
columnOptimizationOption common.ColumnOptimizationOption
includeQueryParametersInTraces bool
watchDisabled bool
acquireTimeout time.Duration
}
const (
errQuantizationTooLarge = "revision quantization (%s) must be less than GC window (%s)"
overlapStrategyRequest = "request"
overlapStrategyPrefix = "prefix"
overlapStrategyStatic = "static"
overlapStrategyInsecure = "insecure"
defaultRevisionQuantization = 5 * time.Second
defaultFollowerReadDelay = 0 * time.Second
defaultMaxRevisionStalenessPercent = 0.1
defaultWatchBufferLength = 128
defaultWatchBufferWriteTimeout = 1 * time.Second
defaultWatchConnectTimeout = 1 * time.Second
defaultSplitSize = 1024
defaultMaxRetries = 5
defaultOverlapKey = "defaultsynckey"
defaultOverlapStrategy = overlapStrategyStatic
defaultEnablePrometheusStats = false
defaultEnableConnectionBalancing = true
defaultConnectRate = 100 * time.Millisecond
defaultAcquireTimeout = 30 * time.Millisecond
defaultFilterMaximumIDCount = 100
defaultWithIntegrity = false
defaultColumnOptimizationOption = common.ColumnOptimizationOptionStaticValues
defaultIncludeQueryParametersInTraces = false
defaultWatchDisabled = false
)
// Option provides the facility to configure how clients within the CRDB
// datastore interact with the running CockroachDB database.
type Option func(*crdbOptions)
func generateConfig(options []Option) (crdbOptions, error) {
computed := crdbOptions{
gcWindow: 24 * time.Hour,
revisionQuantization: defaultRevisionQuantization,
followerReadDelay: defaultFollowerReadDelay,
maxRevisionStalenessPercent: defaultMaxRevisionStalenessPercent,
maxRetries: defaultMaxRetries,
overlapKey: defaultOverlapKey,
overlapStrategy: defaultOverlapStrategy,
enablePrometheusStats: defaultEnablePrometheusStats,
enableConnectionBalancing: defaultEnableConnectionBalancing,
connectRate: defaultConnectRate,
filterMaximumIDCount: defaultFilterMaximumIDCount,
withIntegrity: defaultWithIntegrity,
columnOptimizationOption: defaultColumnOptimizationOption,
includeQueryParametersInTraces: defaultIncludeQueryParametersInTraces,
watchDisabled: defaultWatchDisabled,
acquireTimeout: defaultAcquireTimeout,
}
for _, option := range options {
option(&computed)
}
// Run any checks on the config that need to be done
if computed.revisionQuantization >= computed.gcWindow {
return computed, fmt.Errorf(
errQuantizationTooLarge,
computed.revisionQuantization,
computed.gcWindow,
)
}
if computed.filterMaximumIDCount == 0 {
computed.filterMaximumIDCount = 100
log.Warn().Msg("filterMaximumIDCount not set, defaulting to 100")
}
// Default to 30m jitter for CockroachDB database pools when not explicitly set
// or when explicitly set to zero (which happens when using pkg/cmd/datastore defaults)
if computed.readPoolOpts.ConnMaxLifetimeJitter == nil || *computed.readPoolOpts.ConnMaxLifetimeJitter == 0 {
computed.readPoolOpts.ConnMaxLifetimeJitter = ptr.To(30 * time.Minute)
}
if computed.writePoolOpts.ConnMaxLifetimeJitter == nil || *computed.writePoolOpts.ConnMaxLifetimeJitter == 0 {
computed.writePoolOpts.ConnMaxLifetimeJitter = ptr.To(30 * time.Minute)
}
return computed, nil
}
// ReadConnHealthCheckInterval is the frequency at which both idle and max
// lifetime connections are checked, and also the frequency at which the
// minimum number of connections is checked.
//
// This happens asynchronously.
//
// This is not the only approach to evaluate these counts; "connection idle/max
// lifetime" is also checked when connections are released to the pool.
//
// There is no guarantee connections won't last longer than their specified
// idle/max lifetime. It's largely dependent on the health-check goroutine
// being able to pull them from the connection pool.
//
// The health-check may not be able to clean up those connections if they are
// held by the application very frequently.
//
// This value defaults to 30s.
func ReadConnHealthCheckInterval(interval time.Duration) Option {
return func(po *crdbOptions) { po.readPoolOpts.ConnHealthCheckInterval = &interval }
}
// WriteConnHealthCheckInterval is the frequency at which both idle and max
// lifetime connections are checked, and also the frequency at which the
// minimum number of connections is checked.
//
// This happens asynchronously.
//
// This is not the only approach to evaluate these counts; "connection idle/max
// lifetime" is also checked when connections are released to the pool.
//
// There is no guarantee connections won't last longer than their specified
// idle/max lifetime. It's largely dependent on the health-check goroutine
// being able to pull them from the connection pool.
//
// The health-check may not be able to clean up those connections if they are
// held by the application very frequently.
//
// This value defaults to 30s.
func WriteConnHealthCheckInterval(interval time.Duration) Option {
return func(po *crdbOptions) { po.writePoolOpts.ConnHealthCheckInterval = &interval }
}
// ReadConnMaxIdleTime is the duration after which an idle read connection will
// be automatically closed by the health check.
//
// This value defaults to having no maximum.
func ReadConnMaxIdleTime(idle time.Duration) Option {
return func(po *crdbOptions) { po.readPoolOpts.ConnMaxIdleTime = &idle }
}
// WriteConnMaxIdleTime is the duration after which an idle write connection
// will be automatically closed by the health check.
//
// This value defaults to having no maximum.
func WriteConnMaxIdleTime(idle time.Duration) Option {
return func(po *crdbOptions) { po.writePoolOpts.ConnMaxIdleTime = &idle }
}
// ReadConnMaxLifetime is the duration since creation after which a read
// connection will be automatically closed.
//
// This value defaults to having no maximum.
func ReadConnMaxLifetime(lifetime time.Duration) Option {
return func(po *crdbOptions) { po.readPoolOpts.ConnMaxLifetime = &lifetime }
}
// ReadConnMaxLifetimeJitter is an interval to wait up to after the max lifetime
// to close the connection.
//
// For CockroachDB, this value defaults to 30 minutes when not explicitly set.
func ReadConnMaxLifetimeJitter(jitter time.Duration) Option {
return func(po *crdbOptions) { po.readPoolOpts.ConnMaxLifetimeJitter = &jitter }
}
// WriteConnMaxLifetime is the duration since creation after which a write
// connection will be automatically closed.
//
// This value defaults to having no maximum.
func WriteConnMaxLifetime(lifetime time.Duration) Option {
return func(po *crdbOptions) { po.writePoolOpts.ConnMaxLifetime = &lifetime }
}
// WriteConnMaxLifetimeJitter is an interval to wait up to after the max lifetime
// to close the connection.
//
// For CockroachDB, this value defaults to 30 minutes when not explicitly set.
func WriteConnMaxLifetimeJitter(jitter time.Duration) Option {
return func(po *crdbOptions) { po.writePoolOpts.ConnMaxLifetimeJitter = &jitter }
}
// ReadConnsMinOpen is the minimum size of the connection pool used for reads.
//
// The health check will increase the number of connections to this amount if
// it had dropped below.
//
// This value defaults to the maximum open connections.
func ReadConnsMinOpen(conns int) Option {
return func(po *crdbOptions) { po.readPoolOpts.MinOpenConns = &conns }
}
// WriteConnsMinOpen is the minimum size of the connection pool used for writes.
//
// The health check will increase the number of connections to this amount if
// it had dropped below.
//
// This value defaults to the maximum open connections.
func WriteConnsMinOpen(conns int) Option {
return func(po *crdbOptions) { po.writePoolOpts.MinOpenConns = &conns }
}
// ReadConnsMaxOpen is the maximum size of the connection pool used for reads.
//
// This value defaults to having no maximum.
func ReadConnsMaxOpen(conns int) Option {
return func(po *crdbOptions) { po.readPoolOpts.MaxOpenConns = &conns }
}
// WriteConnsMaxOpen is the maximum size of the connection pool used for writes.
//
// This value defaults to having no maximum.
func WriteConnsMaxOpen(conns int) Option {
return func(po *crdbOptions) { po.writePoolOpts.MaxOpenConns = &conns }
}
// RevisionQuantization is the time bucket size to which advertised revisions
// will be rounded.
//
// This value defaults to 5 seconds.
func RevisionQuantization(bucketSize time.Duration) Option {
return func(po *crdbOptions) { po.revisionQuantization = bucketSize }
}
// FollowerReadDelay is the time delay to apply to enable historial reads.
//
// This value defaults to 0 seconds.
func FollowerReadDelay(delay time.Duration) Option {
return func(po *crdbOptions) { po.followerReadDelay = delay }
}
// MaxRevisionStalenessPercent is the amount of time, expressed as a percentage of
// the revision quantization window, that a previously computed rounded revision
// can still be advertised after the next rounded revision would otherwise be ready.
//
// This value defaults to 0.1 (10%).
func MaxRevisionStalenessPercent(stalenessPercent float64) Option {
return func(po *crdbOptions) { po.maxRevisionStalenessPercent = stalenessPercent }
}
// GCWindow is the maximum age of a passed revision that will be considered
// valid.
//
// This value defaults to 24 hours.
func GCWindow(window time.Duration) Option {
return func(po *crdbOptions) { po.gcWindow = window }
}
// ConnectRate is the rate at which new datastore connections can be made.
//
// This is a duration, the rate is 1/period.
func ConnectRate(rate time.Duration) Option {
return func(po *crdbOptions) { po.connectRate = rate }
}
// MaxRetries is the maximum number of times a retriable transaction will be
// client-side retried.
// Default: 5
func MaxRetries(maxRetries uint8) Option {
return func(po *crdbOptions) { po.maxRetries = maxRetries }
}
// OverlapStrategy is the strategy used to generate overlap keys on write.
// Default: 'static'
func OverlapStrategy(strategy string) Option {
return func(po *crdbOptions) { po.overlapStrategy = strategy }
}
// OverlapKey is a key touched on every write if OverlapStrategy is "static"
// Default: 'key'
func OverlapKey(key string) Option {
return func(po *crdbOptions) { po.overlapKey = key }
}
// WithEnablePrometheusStats marks whether Prometheus metrics provided by the Postgres
// clients being used by the datastore are enabled.
//
// Prometheus metrics are disabled by default.
func WithEnablePrometheusStats(enablePrometheusStats bool) Option {
return func(po *crdbOptions) { po.enablePrometheusStats = enablePrometheusStats }
}
// WithEnableConnectionBalancing marks whether Prometheus metrics provided by the Postgres
// clients being used by the datastore are enabled.
//
// Prometheus metrics are disabled by default.
func WithEnableConnectionBalancing(connectionBalancing bool) Option {
return func(po *crdbOptions) { po.enableConnectionBalancing = connectionBalancing }
}
// DebugAnalyzeBeforeStatistics signals to the Statistics method that it should
// run Analyze on the database before returning statistics. This should only be
// used for debug and testing.
//
// Disabled by default.
func DebugAnalyzeBeforeStatistics() Option {
return func(po *crdbOptions) { po.analyzeBeforeStatistics = true }
}
// FilterMaximumIDCount is the maximum number of IDs that can be used to filter IDs in queries
func FilterMaximumIDCount(filterMaximumIDCount uint16) Option {
return func(po *crdbOptions) { po.filterMaximumIDCount = filterMaximumIDCount }
}
// WithIntegrity marks whether the datastore should store and return integrity information.
func WithIntegrity(withIntegrity bool) Option {
return func(po *crdbOptions) { po.withIntegrity = withIntegrity }
}
// AllowedMigrations configures a set of additional migrations that will pass
// the health check (head migration is always allowed).
func AllowedMigrations(allowedMigrations []string) Option {
return func(po *crdbOptions) { po.allowedMigrations = allowedMigrations }
}
// IncludeQueryParametersInTraces marks whether query parameters should be included in traces.
func IncludeQueryParametersInTraces(includeQueryParametersInTraces bool) Option {
return func(po *crdbOptions) { po.includeQueryParametersInTraces = includeQueryParametersInTraces }
}
// WithColumnOptimization configures the column optimization option for the datastore.
func WithColumnOptimization(isEnabled bool) Option {
return func(po *crdbOptions) {
if isEnabled {
po.columnOptimizationOption = common.ColumnOptimizationOptionStaticValues
} else {
po.columnOptimizationOption = common.ColumnOptimizationOptionNone
}
}
}
// WithWatchDisabled configures the datastore to disable watch functionality.
func WithWatchDisabled(isDisabled bool) Option {
return func(po *crdbOptions) { po.watchDisabled = isDisabled }
}
// WithAcquireTimeout configures the amount of time to wait to acquire a connection
// from the pool with Try* methods before applying backpressure.
func WithAcquireTimeout(timeout time.Duration) Option {
return func(po *crdbOptions) { po.acquireTimeout = timeout }
}