Skip to content

Commit

Permalink
Address comment from uber/cadence#4059
Browse files Browse the repository at this point in the history
  • Loading branch information
kraney committed Mar 19, 2021
1 parent 0e65be5 commit aba4f96
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/docs/07-operation-guide/01-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,9 @@ There are more dynamic configurations than static configurations. Dynamic config
| worker.TimeLimitPerArchivalIteration | controls the time limit of each iteration of archival workflow | archiver.MaxArchivalIterationTimeout()|
| worker.throttledLogRPS | the rate limit on number of log messages emitted per second for throttled logger | 20|
| worker.scannerPersistenceMaxQPS | the maximum rate of persistence calls from worker.Scanner | 100|
| worker.scannerMaxOrphanTasks | when cleaning the database of lingering tasks from deleted task lists, this is the maximum number returned from a single query | 1000 |
| worker.scannerTaskBatchSize | when cleaning the database of expired tasks for valid task lists, this is the maximum number of tasks returned from a single query | 16 |
| worker.scannerMaxTasksPerJob | when cleaning the database of expired tasks for valid task lists, this is the maximum number processed for a single task list before giving other tasks lists a turn | 256 |
| worker.taskListScannerEnabled | indicates if task list scanner should be started as part of worker.Scanner | TRUE|
| worker.historyScannerEnabled | indicates if history scanner should be started as part of worker.Scanner | TRUE|
| worker.executionsScannerEnabled | indicates if executions scanner should be started as part of worker.Scanner | FALSE|
Expand Down

0 comments on commit aba4f96

Please sign in to comment.