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: client/client.go
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,10 @@ type (
92
92
// Valid values are QueryConsistencyLevelEventual (served by the receiving cluster), and QueryConsistencyLevelStrong (redirects to the active cluster).
// ClusterAttribute represents a secondary attribute of global domains. Each domain can have multiple cluster attributes and each cluster attribute manages its own
96
+
// active cluster independently. It provides a way to split workflows from a domain into sub-domains by, distinguished by cluster attributes.
97
+
ClusterAttribute= internal.ClusterAttribute
98
+
95
99
// ActiveClusterSelectionPolicy - Policy for selecting the active cluster to start the workflow execution on for active-active domains.
96
100
// An example policy is:
97
101
// {
@@ -101,7 +105,7 @@ type (
101
105
// }
102
106
// }
103
107
// The workflow will be active in the corresponding active cluster of that cluster attribute specified in the policy
104
-
// If the policy is empty or nil, the workflow will be active in the domain's active cluster.
108
+
// If the policy is empty or nil or the cluster attribute doesn't exist, the workflow will be active in the domain's active cluster.
0 commit comments