forked from xmidt-org/caduceus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
senderWrapper.go
233 lines (200 loc) · 6.47 KB
/
senderWrapper.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
/**
* Copyright 2017 Comcast Cable Communications Management, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package main
import (
"errors"
"net/http"
"sync"
"time"
"github.com/go-kit/kit/log"
"github.com/go-kit/kit/metrics"
"github.com/xmidt-org/ancla"
"github.com/xmidt-org/wrp-go/v3"
)
// SenderWrapperFactory configures the CaduceusSenderWrapper for creation
type SenderWrapperFactory struct {
// The number of workers to assign to each OutboundSender created.
NumWorkersPerSender int
// The queue size to assign to each OutboundSender created.
QueueSizePerSender int
// The cut off time to assign to each OutboundSender created.
CutOffPeriod time.Duration
// Number of delivery retries before giving up
DeliveryRetries int
// Time in between delivery retries
DeliveryInterval time.Duration
// The HTTP status codes to retry on.
RetryCodes []int
// The amount of time to let expired OutboundSenders linger before
// shutting them down and cleaning up the resources associated with them.
Linger time.Duration
// Metrics registry.
MetricsRegistry CaduceusMetricsRegistry
// The metrics counter for dropped messages due to invalid payloads
DroppedMsgCounter metrics.Counter
EventType metrics.Counter
// The logger implementation to share with OutboundSenders.
Logger log.Logger
// The http client Do() function to share with OutboundSenders.
Sender func(*http.Request) (*http.Response, error)
}
type SenderWrapper interface {
Update([]ancla.Webhook)
Queue(*wrp.Message)
Shutdown(bool)
}
// CaduceusSenderWrapper contains no external parameters.
type CaduceusSenderWrapper struct {
sender func(*http.Request) (*http.Response, error)
numWorkersPerSender int
queueSizePerSender int
deliveryRetries int
deliveryInterval time.Duration
retryCodes []int
cutOffPeriod time.Duration
linger time.Duration
logger log.Logger
mutex sync.RWMutex
senders map[string]OutboundSender
metricsRegistry CaduceusMetricsRegistry
eventType metrics.Counter
wg sync.WaitGroup
shutdown chan struct{}
}
// New produces a new SenderWrapper implemented by CaduceusSenderWrapper
// based on the factory configuration.
func (swf SenderWrapperFactory) New() (sw SenderWrapper, err error) {
caduceusSenderWrapper := &CaduceusSenderWrapper{
sender: swf.Sender,
numWorkersPerSender: swf.NumWorkersPerSender,
queueSizePerSender: swf.QueueSizePerSender,
deliveryRetries: swf.DeliveryRetries,
deliveryInterval: swf.DeliveryInterval,
retryCodes: swf.RetryCodes,
cutOffPeriod: swf.CutOffPeriod,
linger: swf.Linger,
logger: swf.Logger,
metricsRegistry: swf.MetricsRegistry,
}
if swf.Linger <= 0 {
err = errors.New("Linger must be positive.")
sw = nil
return
}
caduceusSenderWrapper.eventType = swf.MetricsRegistry.NewCounter(IncomingEventTypeCounter)
caduceusSenderWrapper.senders = make(map[string]OutboundSender)
caduceusSenderWrapper.shutdown = make(chan struct{})
caduceusSenderWrapper.wg.Add(1)
go undertaker(caduceusSenderWrapper)
sw = caduceusSenderWrapper
return
}
// Update is called when we get changes to our webhook listeners with either
// additions, or updates. This code takes care of building new OutboundSenders
// and maintaining the existing OutboundSenders.
func (sw *CaduceusSenderWrapper) Update(list []ancla.Webhook) {
// We'll like need this, so let's get one ready
osf := OutboundSenderFactory{
Sender: sw.sender,
CutOffPeriod: sw.cutOffPeriod,
NumWorkers: sw.numWorkersPerSender,
QueueSize: sw.queueSizePerSender,
MetricsRegistry: sw.metricsRegistry,
DeliveryRetries: sw.deliveryRetries,
DeliveryInterval: sw.deliveryInterval,
RetryCodes: sw.retryCodes,
Logger: sw.logger,
}
ids := make([]struct {
Listener ancla.Webhook
ID string
}, len(list))
for i, v := range list {
ids[i].Listener = v
ids[i].ID = v.Config.URL
}
sw.mutex.Lock()
for _, inValue := range ids {
sender, ok := sw.senders[inValue.ID]
if !ok {
osf.Listener = inValue.Listener
obs, err := osf.New()
if nil == err {
sw.senders[inValue.ID] = obs
}
continue
}
sender.Update(inValue.Listener)
}
sw.mutex.Unlock()
}
// Queue is used to send all the possible outbound senders a request. This
// function performs the fan-out and filtering to multiple possible endpoints.
func (sw *CaduceusSenderWrapper) Queue(msg *wrp.Message) {
sw.mutex.RLock()
sw.eventType.With("event", msg.FindEventStringSubMatch())
for _, v := range sw.senders {
v.Queue(msg)
}
sw.mutex.RUnlock()
}
// Shutdown closes down the delivery mechanisms and cleans up the underlying
// OutboundSenders either gently (waiting for delivery queues to empty) or not
// (dropping enqueued messages)
func (sw *CaduceusSenderWrapper) Shutdown(gentle bool) {
sw.mutex.Lock()
for k, v := range sw.senders {
v.Shutdown(gentle)
delete(sw.senders, k)
}
sw.mutex.Unlock()
close(sw.shutdown)
}
// undertaker looks at the OutboundSenders periodically and prunes the ones
// that have been retired for too long, freeing up resources.
func undertaker(sw *CaduceusSenderWrapper) {
defer sw.wg.Done()
// Collecting unused OutboundSenders isn't a huge priority, so do it
// slowly.
ticker := time.NewTicker(2 * sw.linger)
for {
select {
case <-ticker.C:
threshold := time.Now().Add(-1 * sw.linger)
deadList := make(map[string]OutboundSender)
// Actually shutting these down could take longer then we
// want to lock the mutex, so just remove them from the active
// list & shut them down afterwards.
sw.mutex.Lock()
for k, v := range sw.senders {
retired := v.RetiredSince()
if threshold.After(retired) {
deadList[k] = v
delete(sw.senders, k)
}
}
sw.mutex.Unlock()
// Shut them down
for _, v := range deadList {
v.Shutdown(false)
}
case <-sw.shutdown:
ticker.Stop()
return
}
}
}