forked from cadence-workflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scanner.go
217 lines (200 loc) · 6.97 KB
/
scanner.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// The MIT License (MIT)
//
// Copyright (c) 2017-2020 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 shardscanner
import (
"context"
"fmt"
"github.com/pborman/uuid"
"github.com/uber/cadence/common/blobstore"
"github.com/uber/cadence/common/cache"
"github.com/uber/cadence/common/metrics"
"github.com/uber/cadence/common/pagination"
"github.com/uber/cadence/common/reconciliation/entity"
"github.com/uber/cadence/common/reconciliation/invariant"
"github.com/uber/cadence/common/reconciliation/store"
)
// Scanner is used to scan over given iterator. It is responsible for three things:
// 1. Checking invariants for each entity.
// 2. Recording corruption and failures to durable store.
// 3. Producing a ScanReport
type Scanner interface {
Scan() ScanReport
}
type (
// ShardScanner is a generic scanner which iterates over entities provided by iterator
// implementations of this scanner have to provided invariant manager and iterator
ShardScanner struct {
shardID int
itr pagination.Iterator
failedWriter store.ExecutionWriter
corruptedWriter store.ExecutionWriter
invariantManager invariant.Manager
progressReportFn func()
scope metrics.Scope
domainCache cache.DomainCache
}
)
// NewScanner constructs a new ShardScanner
func NewScanner(
shardID int,
iterator pagination.Iterator,
blobstoreClient blobstore.Client,
blobstoreFlushThreshold int,
manager invariant.Manager,
progressReportFn func(),
scope metrics.Scope,
domainCache cache.DomainCache,
) *ShardScanner {
id := uuid.New()
return &ShardScanner{
shardID: shardID,
itr: iterator,
failedWriter: store.NewBlobstoreWriter(id, store.FailedExtension, blobstoreClient, blobstoreFlushThreshold),
corruptedWriter: store.NewBlobstoreWriter(id, store.CorruptedExtension, blobstoreClient, blobstoreFlushThreshold),
invariantManager: manager,
progressReportFn: progressReportFn,
scope: scope,
domainCache: domainCache,
}
}
// Scan scans over all executions in shard and runs invariant checks per execution.
func (s *ShardScanner) Scan(ctx context.Context) ScanReport {
result := ScanReport{
ShardID: s.shardID,
Stats: ScanStats{
CorruptionByType: make(map[invariant.Name]int64),
},
DomainStats: map[string]*ScanStats{},
}
for s.itr.HasNext() {
s.progressReportFn()
execution, err := s.itr.Next()
if err != nil {
result.Result.ControlFlowFailure = &ControlFlowFailure{
Info: "persistence iterator returned error",
InfoDetails: err.Error(),
}
return result
}
checkResult := s.invariantManager.RunChecks(ctx, execution)
domainID, err := s.getDomainIDFromEntity(execution)
if err != nil {
result.Result.ControlFlowFailure = &ControlFlowFailure{
Info: "failed to get domainID from entity",
InfoDetails: err.Error(),
}
return result
}
domainName, err := s.domainCache.GetDomainName(*domainID)
if err != nil {
result.Result.ControlFlowFailure = &ControlFlowFailure{
Info: "failed to get domain name from cache",
InfoDetails: err.Error(),
}
return result
}
if _, ok := result.DomainStats[*domainID]; !ok {
result.DomainStats[*domainID] = &ScanStats{
CorruptionByType: make(map[invariant.Name]int64),
}
}
result.DomainStats[*domainID].EntitiesCount++
result.Stats.EntitiesCount++
invariantName := ""
if checkResult.DeterminingInvariantType != nil {
invariantName = string(*checkResult.DeterminingInvariantType)
}
s.scope.Tagged(
metrics.DomainTag(domainName),
metrics.InvariantTypeTag(invariantName),
metrics.ShardScannerScanResult(string(checkResult.CheckResultType)),
).IncCounter(metrics.ShardScannerScan)
switch checkResult.CheckResultType {
case invariant.CheckResultTypeHealthy:
// do nothing if execution is healthy
case invariant.CheckResultTypeCorrupted:
if err := s.corruptedWriter.Add(store.ScanOutputEntity{
Execution: execution,
Result: checkResult,
}); err != nil {
result.Result.ControlFlowFailure = &ControlFlowFailure{
Info: "blobstore add failed for corrupted execution check",
InfoDetails: err.Error(),
}
return result
}
result.Stats.CorruptedCount++
result.Stats.CorruptionByType[*checkResult.DeterminingInvariantType]++
result.DomainStats[*domainID].CorruptedCount++
result.DomainStats[*domainID].CorruptionByType[*checkResult.DeterminingInvariantType]++
case invariant.CheckResultTypeFailed:
if err := s.failedWriter.Add(store.ScanOutputEntity{
Execution: execution,
Result: checkResult,
}); err != nil {
result.Result.ControlFlowFailure = &ControlFlowFailure{
Info: "blobstore add failed for failed execution check",
InfoDetails: err.Error(),
}
return result
}
result.Stats.CheckFailedCount++
result.DomainStats[*domainID].CheckFailedCount++
default:
panic(fmt.Sprintf("unknown CheckResultType: %v", checkResult.CheckResultType))
}
}
if err := s.failedWriter.Flush(); err != nil {
result.Result.ControlFlowFailure = &ControlFlowFailure{
Info: "failed to flush for failed execution checks",
InfoDetails: err.Error(),
}
return result
}
if err := s.corruptedWriter.Flush(); err != nil {
result.Result.ControlFlowFailure = &ControlFlowFailure{
Info: "failed to flush for corrupted execution checks",
InfoDetails: err.Error(),
}
return result
}
result.Result.ShardScanKeys = &ScanKeys{
Corrupt: s.corruptedWriter.FlushedKeys(),
Failed: s.failedWriter.FlushedKeys(),
}
return result
}
func (s *ShardScanner) getDomainIDFromEntity(e interface{}) (*string, error) {
concreteExecution, ok := e.(*entity.ConcreteExecution)
if ok {
return &concreteExecution.DomainID, nil
}
currentExecution, ok := e.(*entity.CurrentExecution)
if ok {
return ¤tExecution.DomainID, nil
}
timer, ok := e.(*entity.Timer)
if ok {
return &timer.DomainID, nil
}
return nil, fmt.Errorf("unknown entity type in scanner: %T", e)
}