@@ -98,7 +98,6 @@ type Config struct {
98
98
// TimerQueueProcessor settings
99
99
TimerTaskHighPriorityRPS dynamicconfig.IntPropertyFnWithNamespaceFilter
100
100
TimerTaskBatchSize dynamicconfig.IntPropertyFn
101
- TimerTaskMaxRetryCount dynamicconfig.IntPropertyFn
102
101
TimerProcessorSchedulerWorkerCount dynamicconfig.IntPropertyFn
103
102
TimerProcessorSchedulerActiveRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
104
103
TimerProcessorSchedulerStandbyRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
@@ -119,7 +118,6 @@ type Config struct {
119
118
// TransferQueueProcessor settings
120
119
TransferTaskHighPriorityRPS dynamicconfig.IntPropertyFnWithNamespaceFilter
121
120
TransferTaskBatchSize dynamicconfig.IntPropertyFn
122
- TransferTaskMaxRetryCount dynamicconfig.IntPropertyFn
123
121
TransferProcessorSchedulerWorkerCount dynamicconfig.IntPropertyFn
124
122
TransferProcessorSchedulerActiveRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
125
123
TransferProcessorSchedulerStandbyRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
@@ -139,7 +137,6 @@ type Config struct {
139
137
// TODO: clean up unused replicator settings
140
138
ReplicatorTaskBatchSize dynamicconfig.IntPropertyFn
141
139
ReplicatorTaskWorkerCount dynamicconfig.IntPropertyFn
142
- ReplicatorTaskMaxRetryCount dynamicconfig.IntPropertyFn
143
140
ReplicatorProcessorMaxPollRPS dynamicconfig.IntPropertyFn
144
141
ReplicatorProcessorMaxPollInterval dynamicconfig.DurationPropertyFn
145
142
ReplicatorProcessorMaxPollIntervalJitterCoefficient dynamicconfig.FloatPropertyFn
@@ -249,7 +246,6 @@ type Config struct {
249
246
// VisibilityQueueProcessor settings
250
247
VisibilityTaskHighPriorityRPS dynamicconfig.IntPropertyFnWithNamespaceFilter
251
248
VisibilityTaskBatchSize dynamicconfig.IntPropertyFn
252
- VisibilityTaskMaxRetryCount dynamicconfig.IntPropertyFn
253
249
VisibilityProcessorSchedulerWorkerCount dynamicconfig.IntPropertyFn
254
250
VisibilityProcessorSchedulerActiveRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
255
251
VisibilityProcessorSchedulerStandbyRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
@@ -290,7 +286,6 @@ type Config struct {
290
286
ArchivalProcessorUpdateAckInterval dynamicconfig.DurationPropertyFn
291
287
ArchivalProcessorUpdateAckIntervalJitterCoefficient dynamicconfig.FloatPropertyFn
292
288
ArchivalProcessorArchiveDelay dynamicconfig.DurationPropertyFn
293
- ArchivalProcessorRetryWarningLimit dynamicconfig.IntPropertyFn
294
289
ArchivalBackendMaxRPS dynamicconfig.FloatPropertyFn
295
290
}
296
291
@@ -350,7 +345,6 @@ func NewConfig(dc *dynamicconfig.Collection, numberOfShards int32, isAdvancedVis
350
345
TaskSchedulerNamespaceMaxQPS : dc .GetIntPropertyFilteredByNamespace (dynamicconfig .TaskSchedulerNamespaceMaxQPS , 0 ),
351
346
352
347
TimerTaskBatchSize : dc .GetIntProperty (dynamicconfig .TimerTaskBatchSize , 100 ),
353
- TimerTaskMaxRetryCount : dc .GetIntProperty (dynamicconfig .TimerTaskMaxRetryCount , 20 ),
354
348
TimerProcessorSchedulerWorkerCount : dc .GetIntProperty (dynamicconfig .TimerProcessorSchedulerWorkerCount , 512 ),
355
349
TimerProcessorSchedulerActiveRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .TimerProcessorSchedulerActiveRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultActiveTaskPriorityWeight )),
356
350
TimerProcessorSchedulerStandbyRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .TimerProcessorSchedulerStandbyRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultStandbyTaskPriorityWeight )),
@@ -369,7 +363,6 @@ func NewConfig(dc *dynamicconfig.Collection, numberOfShards int32, isAdvancedVis
369
363
RetentionTimerJitterDuration : dc .GetDurationProperty (dynamicconfig .RetentionTimerJitterDuration , 30 * time .Minute ),
370
364
371
365
TransferTaskBatchSize : dc .GetIntProperty (dynamicconfig .TransferTaskBatchSize , 100 ),
372
- TransferTaskMaxRetryCount : dc .GetIntProperty (dynamicconfig .TransferTaskMaxRetryCount , 20 ),
373
366
TransferProcessorSchedulerWorkerCount : dc .GetIntProperty (dynamicconfig .TransferProcessorSchedulerWorkerCount , 512 ),
374
367
TransferProcessorSchedulerActiveRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .TransferProcessorSchedulerActiveRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultActiveTaskPriorityWeight )),
375
368
TransferProcessorSchedulerStandbyRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .TransferProcessorSchedulerStandbyRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultStandbyTaskPriorityWeight )),
@@ -387,7 +380,6 @@ func NewConfig(dc *dynamicconfig.Collection, numberOfShards int32, isAdvancedVis
387
380
388
381
ReplicatorTaskBatchSize : dc .GetIntProperty (dynamicconfig .ReplicatorTaskBatchSize , 100 ),
389
382
ReplicatorTaskWorkerCount : dc .GetIntProperty (dynamicconfig .ReplicatorTaskWorkerCount , 10 ),
390
- ReplicatorTaskMaxRetryCount : dc .GetIntProperty (dynamicconfig .ReplicatorTaskMaxRetryCount , 100 ),
391
383
ReplicatorProcessorMaxPollRPS : dc .GetIntProperty (dynamicconfig .ReplicatorProcessorMaxPollRPS , 20 ),
392
384
ReplicatorProcessorMaxPollInterval : dc .GetDurationProperty (dynamicconfig .ReplicatorProcessorMaxPollInterval , 1 * time .Minute ),
393
385
ReplicatorProcessorMaxPollIntervalJitterCoefficient : dc .GetFloat64Property (dynamicconfig .ReplicatorProcessorMaxPollIntervalJitterCoefficient , 0.15 ),
@@ -469,7 +461,6 @@ func NewConfig(dc *dynamicconfig.Collection, numberOfShards int32, isAdvancedVis
469
461
VisibilityTaskBatchSize : dc .GetIntProperty (dynamicconfig .VisibilityTaskBatchSize , 100 ),
470
462
VisibilityProcessorMaxPollRPS : dc .GetIntProperty (dynamicconfig .VisibilityProcessorMaxPollRPS , 20 ),
471
463
VisibilityProcessorMaxPollHostRPS : dc .GetIntProperty (dynamicconfig .VisibilityProcessorMaxPollHostRPS , 0 ),
472
- VisibilityTaskMaxRetryCount : dc .GetIntProperty (dynamicconfig .VisibilityTaskMaxRetryCount , 20 ),
473
464
VisibilityProcessorSchedulerWorkerCount : dc .GetIntProperty (dynamicconfig .VisibilityProcessorSchedulerWorkerCount , 512 ),
474
465
VisibilityProcessorSchedulerActiveRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .VisibilityProcessorSchedulerActiveRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultActiveTaskPriorityWeight )),
475
466
VisibilityProcessorSchedulerStandbyRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .VisibilityProcessorSchedulerStandbyRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultStandbyTaskPriorityWeight )),
@@ -514,7 +505,6 @@ func NewConfig(dc *dynamicconfig.Collection, numberOfShards int32, isAdvancedVis
514
505
ArchivalProcessorUpdateAckIntervalJitterCoefficient , 0.15 ),
515
506
ArchivalProcessorPollBackoffInterval : dc .GetDurationProperty (dynamicconfig .ArchivalProcessorPollBackoffInterval , 5 * time .Second ),
516
507
ArchivalProcessorArchiveDelay : dc .GetDurationProperty (dynamicconfig .ArchivalProcessorArchiveDelay , 5 * time .Minute ),
517
- ArchivalProcessorRetryWarningLimit : dc .GetIntProperty (dynamicconfig .ArchivalProcessorRetryWarningLimit , 100 ),
518
508
ArchivalBackendMaxRPS : dc .GetFloat64Property (dynamicconfig .ArchivalBackendMaxRPS , 10000.0 ),
519
509
}
520
510
0 commit comments