You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/07-operation-guide/01-setup.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ The default directory for configuration files is named **config/**. This directo
28
28
* Availability Zone File: If an availability zone is specified (either through the `$CADENCE_AVAILABILITY_ZONE` environment variable or as a command-line argument), a file named after the zone will be merged. For example, if you specify "az1" as the zone, `production_az1.yaml` will be used as well.
29
29
30
30
To merge `base.yaml`, `production.yaml`, and `production_az1.yaml` files, you need to specify "production" as the runtime environment and "az1" as the zone.
31
-
```
31
+
```log
32
32
// base.yaml -> production.yaml -> production_az1.yaml = final configuration
33
33
```
34
34
@@ -115,7 +115,7 @@ For example, search for "EnableGlobalDomain" in Dynamic Configuration [Comments
115
115
*`N/A` means no filters can be set. The config will be global.
116
116
117
117
For example, if you want to change the ratelimiting for List API, below is the config:
118
-
```
118
+
```clike
119
119
// FrontendVisibilityListMaxQPS is max qps frontend can list open/close workflows
120
120
// KeyName: frontend.visibilityListMaxQPS
121
121
// Value type: Int
@@ -152,9 +152,9 @@ By default, Cadence uses file-based client to manage dynamic configurations. Fol
Copy file name to clipboardExpand all lines: docs/07-operation-guide/02-maintain.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ There are a few things to know when using this feature:
38
38
* Because of above, when scaling down the number of partitions, you must decrease the WritePartitions first, to wait for a certain time to ensure that tasks are drained, and then decrease ReadPartitions.
39
39
* Both domain names and taskListName should be specified in the dynamic config. An example of using this feature. See more details about dynamic config format using file based [dynamic config](/docs/operation-guide/setup/#static-configuration).
Run the command below to refresh the domain after adding a new cluster to the cluster list; we need to update the active_cluster to the same value that it appears to be.
Run a signal command against any workflow and check that it was replicated to the new cluster. Example:
153
153
154
-
```
154
+
```bash
155
155
cadence --address <initialClusterAddress> --do <domain_name> workflow signal --workflow_id <wfID> --name <anything not functional, e.g. replicationTriggeringSignal>
156
156
```
157
157
This command will send a noop signal to workflows to trigger a decision, which will trigger history replication if needed.
158
158
159
159
160
160
Verify the workflow is replicated in the new cluster
0 commit comments