@@ -98,11 +98,7 @@ type Config struct {
98
98
// TimerQueueProcessor settings
99
99
TimerTaskHighPriorityRPS dynamicconfig.IntPropertyFnWithNamespaceFilter
100
100
TimerTaskBatchSize dynamicconfig.IntPropertyFn
101
- TimerTaskWorkerCount dynamicconfig.IntPropertyFn
102
101
TimerTaskMaxRetryCount dynamicconfig.IntPropertyFn
103
- TimerProcessorEnableSingleProcessor dynamicconfig.BoolPropertyFn
104
- TimerProcessorEnableMultiCursor dynamicconfig.BoolPropertyFn
105
- TimerProcessorEnablePriorityTaskScheduler dynamicconfig.BoolPropertyFn
106
102
TimerProcessorSchedulerWorkerCount dynamicconfig.IntPropertyFn
107
103
TimerProcessorSchedulerActiveRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
108
104
TimerProcessorSchedulerStandbyRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
@@ -124,11 +120,7 @@ type Config struct {
124
120
// TransferQueueProcessor settings
125
121
TransferTaskHighPriorityRPS dynamicconfig.IntPropertyFnWithNamespaceFilter
126
122
TransferTaskBatchSize dynamicconfig.IntPropertyFn
127
- TransferTaskWorkerCount dynamicconfig.IntPropertyFn
128
123
TransferTaskMaxRetryCount dynamicconfig.IntPropertyFn
129
- TransferProcessorEnableSingleProcessor dynamicconfig.BoolPropertyFn
130
- TransferProcessorEnableMultiCursor dynamicconfig.BoolPropertyFn
131
- TransferProcessorEnablePriorityTaskScheduler dynamicconfig.BoolPropertyFn
132
124
TransferProcessorSchedulerWorkerCount dynamicconfig.IntPropertyFn
133
125
TransferProcessorSchedulerActiveRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
134
126
TransferProcessorSchedulerStandbyRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
@@ -260,10 +252,7 @@ type Config struct {
260
252
// VisibilityQueueProcessor settings
261
253
VisibilityTaskHighPriorityRPS dynamicconfig.IntPropertyFnWithNamespaceFilter
262
254
VisibilityTaskBatchSize dynamicconfig.IntPropertyFn
263
- VisibilityTaskWorkerCount dynamicconfig.IntPropertyFn
264
255
VisibilityTaskMaxRetryCount dynamicconfig.IntPropertyFn
265
- VisibilityProcessorEnableMultiCursor dynamicconfig.BoolPropertyFn
266
- VisibilityProcessorEnablePriorityTaskScheduler dynamicconfig.BoolPropertyFn
267
256
VisibilityProcessorSchedulerWorkerCount dynamicconfig.IntPropertyFn
268
257
VisibilityProcessorSchedulerActiveRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
269
258
VisibilityProcessorSchedulerStandbyRoundRobinWeights dynamicconfig.MapPropertyFnWithNamespaceFilter
@@ -364,11 +353,7 @@ func NewConfig(dc *dynamicconfig.Collection, numberOfShards int32, isAdvancedVis
364
353
TaskSchedulerNamespaceMaxQPS : dc .GetIntPropertyFilteredByNamespace (dynamicconfig .TaskSchedulerNamespaceMaxQPS , 0 ),
365
354
366
355
TimerTaskBatchSize : dc .GetIntProperty (dynamicconfig .TimerTaskBatchSize , 100 ),
367
- TimerTaskWorkerCount : dc .GetIntProperty (dynamicconfig .TimerTaskWorkerCount , 10 ),
368
356
TimerTaskMaxRetryCount : dc .GetIntProperty (dynamicconfig .TimerTaskMaxRetryCount , 20 ),
369
- TimerProcessorEnableSingleProcessor : dc .GetBoolProperty (dynamicconfig .TimerProcessorEnableSingleProcessor , false ),
370
- TimerProcessorEnableMultiCursor : dc .GetBoolProperty (dynamicconfig .TimerProcessorEnableMultiCursor , true ),
371
- TimerProcessorEnablePriorityTaskScheduler : dc .GetBoolProperty (dynamicconfig .TimerProcessorEnablePriorityTaskScheduler , true ),
372
357
TimerProcessorSchedulerWorkerCount : dc .GetIntProperty (dynamicconfig .TimerProcessorSchedulerWorkerCount , 512 ),
373
358
TimerProcessorSchedulerActiveRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .TimerProcessorSchedulerActiveRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultActiveTaskPriorityWeight )),
374
359
TimerProcessorSchedulerStandbyRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .TimerProcessorSchedulerStandbyRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultStandbyTaskPriorityWeight )),
@@ -388,11 +373,7 @@ func NewConfig(dc *dynamicconfig.Collection, numberOfShards int32, isAdvancedVis
388
373
RetentionTimerJitterDuration : dc .GetDurationProperty (dynamicconfig .RetentionTimerJitterDuration , 30 * time .Minute ),
389
374
390
375
TransferTaskBatchSize : dc .GetIntProperty (dynamicconfig .TransferTaskBatchSize , 100 ),
391
- TransferTaskWorkerCount : dc .GetIntProperty (dynamicconfig .TransferTaskWorkerCount , 10 ),
392
376
TransferTaskMaxRetryCount : dc .GetIntProperty (dynamicconfig .TransferTaskMaxRetryCount , 20 ),
393
- TransferProcessorEnableSingleProcessor : dc .GetBoolProperty (dynamicconfig .TransferProcessorEnableSingleProcessor , false ),
394
- TransferProcessorEnableMultiCursor : dc .GetBoolProperty (dynamicconfig .TransferProcessorEnableMultiCursor , true ),
395
- TransferProcessorEnablePriorityTaskScheduler : dc .GetBoolProperty (dynamicconfig .TransferProcessorEnablePriorityTaskScheduler , true ),
396
377
TransferProcessorSchedulerWorkerCount : dc .GetIntProperty (dynamicconfig .TransferProcessorSchedulerWorkerCount , 512 ),
397
378
TransferProcessorSchedulerActiveRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .TransferProcessorSchedulerActiveRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultActiveTaskPriorityWeight )),
398
379
TransferProcessorSchedulerStandbyRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .TransferProcessorSchedulerStandbyRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultStandbyTaskPriorityWeight )),
@@ -497,10 +478,7 @@ func NewConfig(dc *dynamicconfig.Collection, numberOfShards int32, isAdvancedVis
497
478
VisibilityTaskBatchSize : dc .GetIntProperty (dynamicconfig .VisibilityTaskBatchSize , 100 ),
498
479
VisibilityProcessorMaxPollRPS : dc .GetIntProperty (dynamicconfig .VisibilityProcessorMaxPollRPS , 20 ),
499
480
VisibilityProcessorMaxPollHostRPS : dc .GetIntProperty (dynamicconfig .VisibilityProcessorMaxPollHostRPS , 0 ),
500
- VisibilityTaskWorkerCount : dc .GetIntProperty (dynamicconfig .VisibilityTaskWorkerCount , 10 ),
501
481
VisibilityTaskMaxRetryCount : dc .GetIntProperty (dynamicconfig .VisibilityTaskMaxRetryCount , 20 ),
502
- VisibilityProcessorEnableMultiCursor : dc .GetBoolProperty (dynamicconfig .VisibilityProcessorEnableMultiCursor , true ),
503
- VisibilityProcessorEnablePriorityTaskScheduler : dc .GetBoolProperty (dynamicconfig .VisibilityProcessorEnablePriorityTaskScheduler , true ),
504
482
VisibilityProcessorSchedulerWorkerCount : dc .GetIntProperty (dynamicconfig .VisibilityProcessorSchedulerWorkerCount , 512 ),
505
483
VisibilityProcessorSchedulerActiveRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .VisibilityProcessorSchedulerActiveRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultActiveTaskPriorityWeight )),
506
484
VisibilityProcessorSchedulerStandbyRoundRobinWeights : dc .GetMapPropertyFnWithNamespaceFilter (dynamicconfig .VisibilityProcessorSchedulerStandbyRoundRobinWeights , ConvertWeightsToDynamicConfigValue (DefaultStandbyTaskPriorityWeight )),
0 commit comments