-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.go
More file actions
210 lines (181 loc) · 5.76 KB
/
options.go
File metadata and controls
210 lines (181 loc) · 5.76 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
package worker
import "time"
const (
defaultDurableLease = 30 * time.Second
defaultDurablePollInterval = 200 * time.Millisecond
)
// TaskManagerOption configures a TaskManager.
type TaskManagerOption func(*taskManagerConfig)
type taskManagerConfig struct {
maxWorkers int
maxTasks int
tasksPerSecond float64
timeout time.Duration
retryDelay time.Duration
maxRetries int
defaultQueue string
queueWeights map[string]int
auditEventLimit int
auditRetention time.Duration
auditArchiveDir string
auditArchiveInt time.Duration
durableBackend DurableBackend
durableHandlers map[string]DurableHandlerSpec
durableCodec DurableCodec
durableLease time.Duration
durablePollInterval time.Duration
durableBatchSize int
durableLeaseRenewal time.Duration
cronLocation *time.Location
}
func defaultTaskManagerConfig() taskManagerConfig {
return taskManagerConfig{
maxWorkers: 0,
maxTasks: DefaultMaxTasks,
tasksPerSecond: DefaultTasksPerSecond,
timeout: DefaultTimeout,
retryDelay: DefaultRetryDelay,
maxRetries: DefaultMaxRetries,
defaultQueue: DefaultQueueName,
queueWeights: map[string]int{},
durableLease: defaultDurableLease,
durablePollInterval: defaultDurablePollInterval,
durableBatchSize: 1,
durableLeaseRenewal: 0,
durableCodec: ProtoDurableCodec{},
cronLocation: time.UTC,
auditEventLimit: defaultAdminAuditEventLimit,
auditRetention: 0,
auditArchiveDir: "",
auditArchiveInt: 0,
}
}
// WithMaxWorkers sets the maximum number of workers.
func WithMaxWorkers(n int) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.maxWorkers = n
}
}
// WithMaxTasks sets the maximum number of tasks in the queue.
func WithMaxTasks(n int) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.maxTasks = n
}
}
// WithTasksPerSecond sets the maximum number of tasks to start per second.
func WithTasksPerSecond(n float64) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.tasksPerSecond = n
}
}
// WithTimeout sets the task execution timeout.
func WithTimeout(timeout time.Duration) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.timeout = timeout
}
}
// WithRetryDelay sets the delay between task retries.
func WithRetryDelay(delay time.Duration) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.retryDelay = delay
}
}
// WithMaxRetries sets the maximum number of retries for a task.
func WithMaxRetries(n int) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.maxRetries = n
}
}
// WithDefaultQueue sets the default queue name for tasks without a queue.
func WithDefaultQueue(name string) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.defaultQueue = name
}
}
// WithQueueWeights sets the queue weight map for named queues.
func WithQueueWeights(weights map[string]int) TaskManagerOption {
return func(cfg *taskManagerConfig) {
if weights == nil {
cfg.queueWeights = map[string]int{}
return
}
cfg.queueWeights = copyQueueWeights(weights)
}
}
// WithDurableBackend sets the durable backend for the TaskManager.
func WithDurableBackend(backend DurableBackend) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.durableBackend = backend
}
}
// WithDurableHandlers sets the durable handlers for the TaskManager.
func WithDurableHandlers(handlers map[string]DurableHandlerSpec) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.durableHandlers = handlers
}
}
// WithDurableCodec sets the durable codec for the TaskManager.
func WithDurableCodec(codec DurableCodec) TaskManagerOption {
return func(cfg *taskManagerConfig) {
if codec != nil {
cfg.durableCodec = codec
}
}
}
// WithDurableLease sets the durable task lease duration.
func WithDurableLease(lease time.Duration) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.durableLease = lease
}
}
// WithDurablePollInterval sets the durable task polling interval.
func WithDurablePollInterval(interval time.Duration) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.durablePollInterval = interval
}
}
// WithDurableBatchSize sets the durable task batch size.
func WithDurableBatchSize(size int) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.durableBatchSize = size
}
}
// WithDurableLeaseRenewalInterval sets the interval for renewing durable task leases.
// Set to <= 0 to disable renewal.
func WithDurableLeaseRenewalInterval(interval time.Duration) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.durableLeaseRenewal = interval
}
}
// WithCronLocation sets the time zone for cron schedules.
func WithCronLocation(location *time.Location) TaskManagerOption {
return func(cfg *taskManagerConfig) {
if location != nil {
cfg.cronLocation = location
}
}
}
// WithAdminAuditEventLimit sets the maximum number of in-memory admin audit events.
func WithAdminAuditEventLimit(limit int) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.auditEventLimit = limit
}
}
// WithAdminAuditRetention sets a max age for admin audit events. Set <= 0 to disable age pruning.
func WithAdminAuditRetention(ttl time.Duration) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.auditRetention = ttl
}
}
// WithAdminAuditArchiveDir enables file archival for aged-out audit events.
func WithAdminAuditArchiveDir(dir string) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.auditArchiveDir = dir
}
}
// WithAdminAuditArchiveInterval sets the flush interval for audit archival.
func WithAdminAuditArchiveInterval(interval time.Duration) TaskManagerOption {
return func(cfg *taskManagerConfig) {
cfg.auditArchiveInt = interval
}
}