forked from redpanda-data/connect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
http_client.go
358 lines (300 loc) · 9.38 KB
/
http_client.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
// Copyright (c) 2018 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 input
import (
"bytes"
"io"
"net/http"
"strings"
"sync"
"sync/atomic"
"time"
"github.com/Jeffail/benthos/lib/input/reader"
"github.com/Jeffail/benthos/lib/log"
"github.com/Jeffail/benthos/lib/message"
"github.com/Jeffail/benthos/lib/metrics"
"github.com/Jeffail/benthos/lib/types"
"github.com/Jeffail/benthos/lib/util/http/client"
)
//------------------------------------------------------------------------------
func init() {
Constructors[TypeHTTPClient] = TypeSpec{
constructor: NewHTTPClient,
description: `
The HTTP client input type connects to a server and continuously performs
requests for a single message.
You should set a sensible retry period and max backoff so as to not flood your
target server.
The URL and header values of this type can be dynamically set using function
interpolations described [here](../config_interpolation.md#functions).
### Streaming
If you enable streaming then Benthos will consume the body of the response as a
line delimited list of message parts. Each part is read as an individual message
unless multipart is set to true, in which case an empty line indicates the end
of a message.`,
}
}
//------------------------------------------------------------------------------
// StreamConfig contains fields for specifying consumption behaviour when the
// body of a request is a constant stream of bytes.
type StreamConfig struct {
Enabled bool `json:"enabled" yaml:"enabled"`
Reconnect bool `json:"reconnect" yaml:"reconnect"`
Multipart bool `json:"multipart" yaml:"multipart"`
MaxBuffer int `json:"max_buffer" yaml:"max_buffer"`
Delim string `json:"delimiter" yaml:"delimiter"`
}
// HTTPClientConfig contains configuration for the HTTPClient output type.
type HTTPClientConfig struct {
client.Config `json:",inline" yaml:",inline"`
Payload string `json:"payload" yaml:"payload"`
Stream StreamConfig `json:"stream" yaml:"stream"`
}
// NewHTTPClientConfig creates a new HTTPClientConfig with default values.
func NewHTTPClientConfig() HTTPClientConfig {
cConf := client.NewConfig()
cConf.Verb = "GET"
cConf.URL = "http://localhost:4195/get"
return HTTPClientConfig{
Config: cConf,
Payload: "",
Stream: StreamConfig{
Enabled: false,
Reconnect: true,
Multipart: false,
MaxBuffer: 1000000,
Delim: "",
},
}
}
//------------------------------------------------------------------------------
// HTTPClient is an input type that continuously makes HTTP requests and reads
// the response bodies as message payloads.
type HTTPClient struct {
running int32
stats metrics.Type
log log.Modular
conf Config
buffer *bytes.Buffer
client *client.Type
payload types.Message
transactions chan types.Transaction
closeChan chan struct{}
closedChan chan struct{}
}
// NewHTTPClient creates a new HTTPClient input type.
func NewHTTPClient(conf Config, mgr types.Manager, log log.Modular, stats metrics.Type) (Type, error) {
h := HTTPClient{
running: 1,
stats: stats,
log: log.NewModule(".input.http_client"),
conf: conf,
buffer: &bytes.Buffer{},
transactions: make(chan types.Transaction),
closeChan: make(chan struct{}),
closedChan: make(chan struct{}),
}
if h.conf.HTTPClient.Stream.Enabled {
// Timeout should be left at zero if we are streaming.
h.conf.HTTPClient.TimeoutMS = 0
}
if len(h.conf.HTTPClient.Payload) > 0 {
h.payload = message.New([][]byte{[]byte(h.conf.HTTPClient.Payload)})
}
var err error
if h.client, err = client.New(
h.conf.HTTPClient.Config,
client.OptSetCloseChan(h.closeChan),
client.OptSetLogger(h.log),
client.OptSetStats(metrics.Namespaced(h.stats, "input.http_client")),
); err != nil {
return nil, err
}
if !h.conf.HTTPClient.Stream.Enabled {
go h.loop()
return &h, nil
}
delim := conf.HTTPClient.Stream.Delim
if len(delim) == 0 {
delim = "\n"
}
var resMux sync.Mutex
var closed bool
var res *http.Response
conn := false
var (
mStrmConstructor = h.stats.GetCounter("input.http_client.stream.constructor")
mStrmReqErr = h.stats.GetCounter("input.http_client.stream.request.error")
mStrnOnClose = h.stats.GetCounter("input.http_client.stream.on_close")
)
rdr, err := reader.NewLines(
func() (io.Reader, error) {
mStrmConstructor.Incr(1)
resMux.Lock()
defer resMux.Unlock()
if conn && !conf.HTTPClient.Stream.Reconnect {
return nil, io.EOF
}
if res != nil {
res.Body.Close()
}
var err error
res, err = h.doRequest()
for err != nil && !closed {
h.log.Errorf("HTTP stream request failed: %v\n", err)
mStrmReqErr.Incr(1)
resMux.Unlock()
<-time.After(time.Second)
resMux.Lock()
res, err = h.doRequest()
}
if closed {
return nil, io.EOF
}
conn = true
return res.Body, nil
},
func() {
mStrnOnClose.Incr(1)
resMux.Lock()
defer resMux.Unlock()
closed = true
// On shutdown we close the response body, this should end any
// blocked Read calls.
if res != nil {
res.Body.Close()
res = nil
}
},
reader.OptLinesSetDelimiter(delim),
reader.OptLinesSetMaxBuffer(conf.HTTPClient.Stream.MaxBuffer),
reader.OptLinesSetMultipart(conf.HTTPClient.Stream.Multipart),
)
if err != nil {
return nil, err
}
return NewReader(
"http_client",
reader.NewPreserver(rdr),
log, stats,
)
}
//------------------------------------------------------------------------------
func (h *HTTPClient) doRequest() (*http.Response, error) {
return h.client.Do(h.payload)
}
func (h *HTTPClient) parseResponse(res *http.Response) (types.Message, error) {
msg, err := h.client.ParseResponse(res)
if err != nil {
return nil, err
}
return msg, nil
}
//------------------------------------------------------------------------------
// loop is an internal loop brokers incoming messages to output pipe through
// POST requests.
func (h *HTTPClient) loop() {
var (
mRunning = h.stats.GetCounter("input.http_client.running")
mReqTimedOut = h.stats.GetCounter("input.http_client.request.timed_out")
mReqErr = h.stats.GetCounter("input.http_client.request.error")
mReqParseErr = h.stats.GetCounter("input.http_client.request.parse.error")
mReqSucc = h.stats.GetCounter("input.http_client.request.success")
mCount = h.stats.GetCounter("input.http_client.count")
mSendErr = h.stats.GetCounter("input.http_client.send.error")
mSendSucc = h.stats.GetCounter("input.http_client.send.success")
)
defer func() {
atomic.StoreInt32(&h.running, 0)
mRunning.Decr(1)
close(h.transactions)
close(h.closedChan)
}()
mRunning.Incr(1)
h.log.Infof("Polling for HTTP messages from: %s\n", h.conf.HTTPClient.URL)
resOut := make(chan types.Response)
var msgOut types.Message
for atomic.LoadInt32(&h.running) == 1 {
if msgOut == nil {
var res *http.Response
var err error
if res, err = h.doRequest(); err != nil {
if strings.Contains(err.Error(), "(Client.Timeout exceeded while awaiting headers)") {
// Hate this ^
mReqTimedOut.Incr(1)
} else {
h.log.Errorf("Request failed: %v\n", err)
mReqErr.Incr(1)
}
} else {
if msgOut, err = h.parseResponse(res); err != nil {
mReqParseErr.Incr(1)
h.log.Errorf("Failed to decode response: %v\n", err)
} else {
mReqSucc.Incr(1)
}
res.Body.Close()
}
mCount.Incr(1)
}
if msgOut != nil {
select {
case h.transactions <- types.NewTransaction(msgOut, resOut):
case <-h.closeChan:
return
}
select {
case res, open := <-resOut:
if !open {
return
}
if res.Error() != nil {
mSendErr.Incr(1)
} else {
msgOut = nil
mSendSucc.Incr(1)
}
case <-h.closeChan:
return
}
}
}
}
// TransactionChan returns a transactions channel for consuming messages from
// this input type.
func (h *HTTPClient) TransactionChan() <-chan types.Transaction {
return h.transactions
}
// CloseAsync shuts down the HTTPClient input.
func (h *HTTPClient) CloseAsync() {
if atomic.CompareAndSwapInt32(&h.running, 1, 0) {
close(h.closeChan)
}
}
// WaitForClose blocks until the HTTPClient input has closed down.
func (h *HTTPClient) WaitForClose(timeout time.Duration) error {
select {
case <-h.closedChan:
case <-time.After(timeout):
return types.ErrTimeout
}
return nil
}
//------------------------------------------------------------------------------