forked from redpanda-data/connect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
scale_proto.go
255 lines (218 loc) · 6.9 KB
/
scale_proto.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// Copyright (c) 2014 Ashley Jeffs
//
// 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 output
import (
"strings"
"sync/atomic"
"time"
"github.com/go-mangos/mangos"
"github.com/go-mangos/mangos/protocol/pub"
"github.com/go-mangos/mangos/protocol/push"
"github.com/go-mangos/mangos/transport/ipc"
"github.com/go-mangos/mangos/transport/tcp"
"github.com/Jeffail/benthos/lib/types"
"github.com/Jeffail/benthos/lib/util/service/log"
"github.com/Jeffail/benthos/lib/util/service/metrics"
)
//------------------------------------------------------------------------------
func init() {
Constructors["scalability_protocols"] = TypeSpec{
constructor: NewScaleProto,
description: `
The scalability protocols are common communication patterns which will be
familiar to anyone accustomed to service messaging protocols.
This outnput type should be compatible with any implementation of these
protocols, but nanomsg (http://nanomsg.org/index.html) is the specific target of
this type.
Since scale proto messages are only single part we would need a binary format
for sending multi part messages. We can use the benthos binary format for this
purpose. However, this format may appear to be gibberish to other services. If
you want to use the binary format you can set 'benthos_multi' to true.
Currently only PUSH and PUB sockets are supported.`,
}
}
//------------------------------------------------------------------------------
// ScaleProtoConfig is configuration for the ScaleProto output type.
type ScaleProtoConfig struct {
URLs []string `json:"urls" yaml:"urls"`
Bind bool `json:"bind" yaml:"bind"`
SocketType string `json:"socket_type" yaml:"socket_type"`
PollTimeoutMS int `json:"poll_timeout_ms" yaml:"poll_timeout_ms"`
}
// NewScaleProtoConfig creates a new ScaleProtoConfig with default values.
func NewScaleProtoConfig() ScaleProtoConfig {
return ScaleProtoConfig{
URLs: []string{"tcp://localhost:5556"},
Bind: false,
SocketType: "PUSH",
PollTimeoutMS: 5000,
}
}
//------------------------------------------------------------------------------
// ScaleProto is an output type that serves ScaleProto messages.
type ScaleProto struct {
running int32
log log.Modular
stats metrics.Type
urls []string
conf Config
socket mangos.Socket
transactions <-chan types.Transaction
closedChan chan struct{}
closeChan chan struct{}
}
// NewScaleProto creates a new ScaleProto output type.
func NewScaleProto(conf Config, mgr types.Manager, log log.Modular, stats metrics.Type) (Type, error) {
s := ScaleProto{
running: 1,
log: log.NewModule(".output.scale_proto"),
stats: stats,
conf: conf,
closedChan: make(chan struct{}),
closeChan: make(chan struct{}),
}
for _, u := range conf.ScaleProto.URLs {
for _, splitU := range strings.Split(u, ",") {
if len(splitU) > 0 {
s.urls = append(s.urls, splitU)
}
}
}
var err error
s.socket, err = getSocketFromType(conf.ScaleProto.SocketType)
if nil != err {
return nil, err
}
// Set timeout to prevent endless lock.
err = s.socket.SetOption(
mangos.OptionRecvDeadline,
time.Millisecond*time.Duration(s.conf.ScaleProto.PollTimeoutMS),
)
if nil != err {
return nil, err
}
s.socket.AddTransport(ipc.NewTransport())
s.socket.AddTransport(tcp.NewTransport())
if s.conf.ScaleProto.Bind {
for _, addr := range s.urls {
if err = s.socket.Listen(addr); err != nil {
break
}
}
} else {
for _, addr := range s.urls {
if err = s.socket.Dial(addr); err != nil {
break
}
}
}
if err != nil {
return nil, err
}
return &s, nil
}
//------------------------------------------------------------------------------
// getSocketFromType returns a socket based on a socket type string.
func getSocketFromType(t string) (mangos.Socket, error) {
switch t {
case "PUSH":
return push.NewSocket()
case "PUB":
return pub.NewSocket()
}
return nil, types.ErrInvalidScaleProtoType
}
//------------------------------------------------------------------------------
// loop is an internal loop that brokers incoming messages to output pipe, does
// not use select.
func (s *ScaleProto) loop() {
defer func() {
atomic.StoreInt32(&s.running, 0)
s.socket.Close()
s.stats.Decr("output.scale_proto.running", 1)
close(s.closedChan)
}()
s.stats.Incr("output.scale_proto.running", 1)
if s.conf.ScaleProto.Bind {
s.log.Infof(
"Sending Scalability Protocols messages to bound URLs: %s\n",
s.urls,
)
} else {
s.log.Infof(
"Sending Scalability Protocols messages to connected URLs: %s\n",
s.urls,
)
}
var open bool
for atomic.LoadInt32(&s.running) == 1 {
var ts types.Transaction
select {
case ts, open = <-s.transactions:
if !open {
return
}
case <-s.closeChan:
return
}
s.stats.Incr("output.scale_proto.count", 1)
var err error
for _, part := range ts.Payload.GetAll() {
if err = s.socket.Send(part); err != nil {
break
}
}
if err != nil {
s.stats.Incr("output.scale_proto.send.error", 1)
} else {
s.stats.Incr("output.scale_proto.send.success", 1)
}
select {
case ts.ResponseChan <- types.NewSimpleResponse(err):
case <-s.closeChan:
return
}
}
}
// StartReceiving assigns a messages channel for the output to read.
func (s *ScaleProto) StartReceiving(ts <-chan types.Transaction) error {
if s.transactions != nil {
return types.ErrAlreadyStarted
}
s.transactions = ts
go s.loop()
return nil
}
// CloseAsync shuts down the ScaleProto output and stops processing messages.
func (s *ScaleProto) CloseAsync() {
if atomic.CompareAndSwapInt32(&s.running, 1, 0) {
close(s.closeChan)
}
}
// WaitForClose blocks until the ScaleProto output has closed down.
func (s *ScaleProto) WaitForClose(timeout time.Duration) error {
select {
case <-s.closedChan:
case <-time.After(timeout):
return types.ErrTimeout
}
return nil
}
//------------------------------------------------------------------------------