forked from redpanda-data/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
catch.go
190 lines (161 loc) · 5.5 KB
/
catch.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
package processor
import (
"fmt"
"time"
"github.com/dafanshu/benthos/v3/internal/docs"
"github.com/dafanshu/benthos/v3/internal/interop"
"github.com/dafanshu/benthos/v3/lib/log"
"github.com/dafanshu/benthos/v3/lib/message"
"github.com/dafanshu/benthos/v3/lib/metrics"
"github.com/dafanshu/benthos/v3/lib/types"
)
//------------------------------------------------------------------------------
func init() {
Constructors[TypeCatch] = TypeSpec{
constructor: NewCatch,
Categories: []Category{
CategoryComposition,
},
Summary: `
Applies a list of child processors _only_ when a previous processing step has
failed.`,
Description: `
Behaves similarly to the ` + "[`for_each`](/docs/components/processors/for_each)" + ` processor, where a
list of child processors are applied to individual messages of a batch. However,
processors are only applied to messages that failed a processing step prior to
the catch.
For example, with the following config:
` + "```yaml" + `
pipeline:
processors:
- resource: foo
- catch:
- resource: bar
- resource: baz
` + "```" + `
If the processor ` + "`foo`" + ` fails for a particular message, that message
will be fed into the processors ` + "`bar` and `baz`" + `. Messages that do not
fail for the processor ` + "`foo`" + ` will skip these processors.
When messages leave the catch block their fail flags are cleared. This processor
is useful for when it's possible to recover failed messages, or when special
actions (such as logging/metrics) are required before dropping them.
More information about error handing can be found [here](/docs/configuration/error_handling).`,
config: docs.FieldComponent().Array().HasType(docs.FieldTypeProcessor).
Linter(func(ctx docs.LintContext, line, col int, value interface{}) []docs.Lint {
childProcs, ok := value.([]interface{})
if !ok {
return nil
}
for _, child := range childProcs {
childObj, ok := child.(map[string]interface{})
if !ok {
continue
}
if _, exists := childObj["catch"]; exists {
// No need to lint as a nested catch will clear errors,
// allowing nested try blocks to work as expected.
return nil
}
if _, exists := childObj["try"]; exists {
return []docs.Lint{
docs.NewLintError(line, "`catch` block contains a `try` block which will never execute due to errors only being cleared at the end of the `catch`, for more information about nesting `try` within `catch` read: https://www.benthos.dev/docs/components/processors/try#nesting-within-a-catch-block"),
}
}
}
return nil
}),
}
}
//------------------------------------------------------------------------------
// CatchConfig is a config struct containing fields for the Catch processor.
type CatchConfig []Config
// NewCatchConfig returns a default CatchConfig.
func NewCatchConfig() CatchConfig {
return []Config{}
}
//------------------------------------------------------------------------------
// Catch is a processor that applies a list of child processors to each message of
// a batch individually, where processors are skipped for messages that failed a
// previous processor step.
type Catch struct {
children []types.Processor
log log.Modular
mCount metrics.StatCounter
mErr metrics.StatCounter
mSent metrics.StatCounter
mBatchSent metrics.StatCounter
}
// NewCatch returns a Catch processor.
func NewCatch(
conf Config, mgr types.Manager, log log.Modular, stats metrics.Type,
) (Type, error) {
var children []types.Processor
for i, pconf := range conf.Catch {
pMgr, pLog, pStats := interop.LabelChild(fmt.Sprintf("%v", i), mgr, log, stats)
proc, err := New(pconf, pMgr, pLog, pStats)
if err != nil {
return nil, err
}
children = append(children, proc)
}
return &Catch{
children: children,
log: log,
mCount: stats.GetCounter("count"),
mErr: stats.GetCounter("error"),
mSent: stats.GetCounter("sent"),
mBatchSent: stats.GetCounter("batch.sent"),
}, nil
}
//------------------------------------------------------------------------------
// ProcessMessage applies the processor to a message, either creating >0
// resulting messages or a response to be sent back to the message source.
func (p *Catch) ProcessMessage(msg types.Message) ([]types.Message, types.Response) {
p.mCount.Incr(1)
resultMsgs := make([]types.Message, msg.Len())
msg.Iter(func(i int, p types.Part) error {
tmpMsg := message.New(nil)
tmpMsg.SetAll([]types.Part{p})
resultMsgs[i] = tmpMsg
return nil
})
var res types.Response
if resultMsgs, res = ExecuteCatchAll(p.children, resultMsgs...); res != nil {
return nil, res
}
resMsg := message.New(nil)
for _, m := range resultMsgs {
m.Iter(func(i int, p types.Part) error {
resMsg.Append(p)
return nil
})
}
if resMsg.Len() == 0 {
return nil, res
}
resMsg.Iter(func(i int, p types.Part) error {
ClearFail(p)
return nil
})
p.mBatchSent.Incr(1)
p.mSent.Incr(int64(resMsg.Len()))
resMsgs := [1]types.Message{resMsg}
return resMsgs[:], nil
}
// CloseAsync shuts down the processor and stops processing requests.
func (p *Catch) CloseAsync() {
for _, c := range p.children {
c.CloseAsync()
}
}
// WaitForClose blocks until the processor has closed down.
func (p *Catch) WaitForClose(timeout time.Duration) error {
stopBy := time.Now().Add(timeout)
for _, c := range p.children {
if err := c.WaitForClose(time.Until(stopBy)); err != nil {
return err
}
}
return nil
}
//------------------------------------------------------------------------------