forked from uber/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crosscluster.go
166 lines (153 loc) · 6.55 KB
/
crosscluster.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
// Copyright (c) 2019 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package canary
import (
"context"
"fmt"
"time"
shared "go.uber.org/cadence/.gen/go/shared"
"github.com/google/uuid"
"go.uber.org/cadence/activity"
"go.uber.org/cadence/workflow"
"go.uber.org/zap"
)
// some sample data to be passed around
type Data struct {
Val string
Iterations int
}
func (c canaryImpl) crossClusterParentWf(ctx workflow.Context) error {
// first try launching a child workflow in another cluster, active in another region
logger := workflow.GetLogger(ctx)
logger.Info("starting child workflow in domain1, cluster 1")
ctx1 := workflow.WithChildOptions(ctx, workflow.ChildWorkflowOptions{
Domain: c.getCrossClusterTargetDomain(),
WorkflowID: "wf-domain-1-" + uuid.New().String(),
TaskList: crossClusterDestTasklist,
ExecutionStartToCloseTimeout: 1 * time.Minute,
})
err := workflow.ExecuteChildWorkflow(ctx1, wfTypeCrossClusterChild, Data{Val: "test"}).Get(ctx1, nil)
if err != nil {
logger.Error("got error executing child workflow", zap.Error(err))
return err
}
logger.Info("test success - Cross-cluster cross-domain workflow completed", zap.Any("return-value", nil))
ao := workflow.ActivityOptions{
ScheduleToStartTimeout: time.Minute,
StartToCloseTimeout: 4 * time.Minute,
}
ctx = workflow.WithActivityOptions(ctx, ao)
err = workflow.ExecuteActivity(ctx, c.failoverDestDomainActivity).Get(ctx, nil)
if err != nil {
logger.Error("error during cross-cluster failover", zap.Error(err))
return err
}
return nil
}
func (c canaryImpl) crossClusterChildWf(ctx workflow.Context, args Data) error {
if args.Val != "test" {
panic("wf1 did not receive expected args")
}
ao := workflow.ActivityOptions{
ScheduleToStartTimeout: time.Minute,
StartToCloseTimeout: 4 * time.Minute,
}
ctx = workflow.WithActivityOptions(ctx, ao)
logger := workflow.GetLogger(ctx)
logger.Info("workflow child wf starting activity.")
err := workflow.ExecuteActivity(ctx, activityTypeCrossCluster).Get(ctx, nil)
if err != nil {
logger.Error("activity error", zap.Error(err))
}
// make the workflow do a loop
if args.Iterations == 0 {
logger.Info("continuing as new")
return workflow.NewContinueAsNewError(ctx, c.crossClusterChildWf, Data{
Val: args.Val,
Iterations: args.Iterations + 1,
})
}
logger.Info("workflow child wf completed.")
return nil
}
func (c canaryImpl) crossClusterSampleActivity(ctx context.Context) (string, error) {
logger := activity.GetLogger(ctx)
logger.Info("activity 1 - running")
return "Hello - activity 1", nil
}
// fails over the Dest domain so that both types of cross cluster operations can be tested
func (c canaryImpl) failoverDestDomainActivity(ctx context.Context) error {
logger := activity.GetLogger(ctx)
srcReplicationInfo, err := getReplicationInfo(ctx, c.canaryClient, c.canaryDomain)
fmt.Println("Src replication info", srcReplicationInfo)
if err != nil {
return err
}
destReplicationInfo, err := getReplicationInfo(ctx, *c.crossClusterDestClient, c.getCrossClusterTargetDomain())
fmt.Println("dest replication info", srcReplicationInfo)
if err != nil {
return err
}
srcActiveCluster := srcReplicationInfo.GetActiveClusterName()
destActiveCluster := destReplicationInfo.GetActiveClusterName()
currentlyInSameCluster := srcActiveCluster == destActiveCluster
// don't do this every iteration so as to not get rate-limited
smallProbability := time.Now().Second() <= 10
targetDomain := c.getCrossClusterTargetDomain()
if currentlyInSameCluster && smallProbability {
// do a failover to move the dest to a different cluster
// thereby making the next iteration of the canary be cross-cluster AND cross domain
// this operation is probably nondeterministic, but that's ok in this instance
for _, cluster := range destReplicationInfo.GetClusters() {
if cluster.GetClusterName() != srcActiveCluster {
err = c.crossClusterDestClient.DomainClient.Update(ctx,
&shared.UpdateDomainRequest{
Name: &targetDomain,
ReplicationConfiguration: &shared.DomainReplicationConfiguration{ActiveClusterName: cluster.ClusterName},
})
if err != nil {
return fmt.Errorf("failed to update destination domain for failover in crossdomain canary test: cluster trying to move dest domain to %s, error: %w ", cluster.GetClusterName(), err)
}
logger.Info("failed over cross-cluster domain to ", zap.String("cluster", cluster.GetClusterName()))
return nil
}
}
} else if smallProbability {
// else they're not currently in the same cluster, so fail the destination domain back to the same cluster
// so the next iteration of the cross cluster canary test will be just cross domain
err = c.crossClusterDestClient.DomainClient.Update(ctx,
&shared.UpdateDomainRequest{
ReplicationConfiguration: &shared.DomainReplicationConfiguration{ActiveClusterName: &srcActiveCluster},
Name: &targetDomain,
})
if err != nil {
return fmt.Errorf("failed to update destination domain for failover in crossdomain canary test - in this instance the dest back to the same cluster as the source: %w", err)
}
logger.Info("failed over cross-cluster domain to ", zap.String("cluster", srcActiveCluster))
}
return nil
}
func getReplicationInfo(ctx context.Context, client cadenceClient, domain string) (*shared.DomainReplicationConfiguration, error) {
res, err := client.DomainClient.Describe(ctx, domain)
if err != nil {
return nil, err
}
return res.GetReplicationConfiguration(), nil
}