-
Notifications
You must be signed in to change notification settings - Fork 1
/
drain_manager_impl.cc
217 lines (183 loc) · 8.43 KB
/
drain_manager_impl.cc
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
#include "source/server/drain_manager_impl.h"
#include <chrono>
#include <cstdint>
#include <functional>
#include <memory>
#include "envoy/config/listener/v3/listener.pb.h"
#include "envoy/event/dispatcher.h"
#include "envoy/event/timer.h"
#include "source/common/common/assert.h"
namespace Envoy {
namespace Server {
DrainManagerImpl::DrainManagerImpl(Instance& server,
envoy::config::listener::v3::Listener::DrainType drain_type,
Event::Dispatcher& dispatcher)
: server_(server), dispatcher_(dispatcher), drain_type_(drain_type),
children_(Common::ThreadSafeCallbackManager::create()) {}
DrainManagerPtr
DrainManagerImpl::createChildManager(Event::Dispatcher& dispatcher,
envoy::config::listener::v3::Listener::DrainType drain_type) {
auto child = std::make_unique<DrainManagerImpl>(server_, drain_type, dispatcher);
// Wire up the child so that when the parent starts draining, the child also sees the
// state-change
auto child_cb = children_->add(dispatcher, [child = child.get()] {
if (!child->draining_) {
child->startDrainSequence([] {});
}
});
child->parent_callback_handle_ = std::move(child_cb);
return child;
}
DrainManagerPtr DrainManagerImpl::createChildManager(Event::Dispatcher& dispatcher) {
return createChildManager(dispatcher, drain_type_);
}
bool DrainManagerImpl::drainClose() const {
// If we are actively health check failed and the drain type is default, always drain close.
//
// TODO(mattklein123): In relation to x-envoy-immediate-health-check-fail, it would be better
// if even in the case of server health check failure we had some period of drain ramp up. This
// would allow the other side to fail health check for the host which will require some thread
// jumps versus immediately start GOAWAY/connection thrashing.
if (drain_type_ == envoy::config::listener::v3::Listener::DEFAULT &&
server_.healthCheckFailed()) {
return true;
}
if (!draining_) {
return false;
}
if (server_.options().drainStrategy() == Server::DrainStrategy::Immediate) {
return true;
}
ASSERT(server_.options().drainStrategy() == Server::DrainStrategy::Gradual);
// P(return true) = elapsed time / drain timeout
// If the drain deadline is exceeded, skip the probability calculation.
const MonotonicTime current_time = dispatcher_.timeSource().monotonicTime();
if (current_time >= drain_deadline_) {
return true;
}
const auto remaining_time =
std::chrono::duration_cast<std::chrono::seconds>(drain_deadline_ - current_time);
const auto drain_time = server_.options().drainTime();
ASSERT(server_.options().drainTime() >= remaining_time);
const auto drain_time_count = drain_time.count();
// If the user hasn't specified a drain timeout it will be zero, so we'll
// confirm the drainClose immediately. Otherwise we'll use the drain timeout
// as a modulus to a random number to salt the drain timing.
if (drain_time_count == 0) {
return true;
}
const auto elapsed_time = drain_time - remaining_time;
return static_cast<uint64_t>(elapsed_time.count()) >
(server_.api().randomGenerator().random() % drain_time_count);
}
Common::CallbackHandlePtr DrainManagerImpl::addOnDrainCloseCb(DrainCloseCb cb) const {
ASSERT(dispatcher_.isThreadSafe());
if (draining_) {
const MonotonicTime current_time = dispatcher_.timeSource().monotonicTime();
// Calculate the delay. If using an immediate drain-strategy or past our deadline, use
// a zero millisecond delay. Otherwise, pick a random value within the remaining time-span.
std::chrono::milliseconds drain_delay{0};
if (server_.options().drainStrategy() != Server::DrainStrategy::Immediate) {
if (current_time < drain_deadline_) {
const auto delta = drain_deadline_ - current_time;
const auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(delta).count();
// Note; current_time may be less than drain_deadline_ by only a
// microsecond (delta will be 1000 nanoseconds), in which case when we
// convert to milliseconds that will be 0, which will throw a SIGFPE
// if used as a modulus unguarded.
if (ms > 0) {
drain_delay = std::chrono::milliseconds(server_.api().randomGenerator().random() % ms);
}
}
}
cb(drain_delay);
return nullptr;
}
return cbs_.add(cb);
}
void DrainManagerImpl::addDrainCompleteCallback(std::function<void()> cb) {
ASSERT(dispatcher_.isThreadSafe());
ASSERT(draining_);
// If the drain-tick-timer is active, add the callback to the queue. If not defined
// then it must have already expired, invoke the callback immediately.
if (drain_tick_timer_) {
drain_complete_cbs_.push_back(cb);
} else {
cb();
}
}
void DrainManagerImpl::startDrainSequence(std::function<void()> drain_complete_cb) {
ASSERT(dispatcher_.isThreadSafe());
ASSERT(drain_complete_cb);
// If we've already started draining (either through direct invocation or through
// parent-initiated draining), enqueue the drain_complete_cb and return
if (draining_) {
addDrainCompleteCallback(drain_complete_cb);
return;
}
ASSERT(!drain_tick_timer_);
const std::chrono::seconds drain_delay(server_.options().drainTime());
// Note https://github.com/envoyproxy/envoy/issues/31457, previous to which,
// drain_deadline_ was set *after* draining_ resulting in a read/write race between
// the main thread running this function from admin, and the worker thread calling
// drainClose. Note that drain_deadline_ is default-constructed which guarantees
// to set the time-since epoch to a count of 0
// (https://en.cppreference.com/w/cpp/chrono/time_point/time_point).
ASSERT(drain_deadline_.time_since_epoch().count() == 0, "drain_deadline_ cannot be set twice.");
// Since draining_ is atomic, it is safe to set drain_deadline_ without a mutex
// as drain_close() only reads from drain_deadline_ if draining_ is true, and
// C++ will not re-order an assign to an atomic. See
// https://stackoverflow.com/questions/40320254/reordering-atomic-operations-in-c .
drain_deadline_ = dispatcher_.timeSource().monotonicTime() + drain_delay;
// Atomic assign must come after the assign to drain_deadline_.
draining_.store(true, std::memory_order_seq_cst);
// Signal to child drain-managers to start their drain sequence
children_->runCallbacks();
// Schedule callback to run at end of drain time
drain_tick_timer_ = dispatcher_.createTimer([this]() {
for (auto& cb : drain_complete_cbs_) {
cb();
}
drain_complete_cbs_.clear();
drain_tick_timer_.reset();
});
addDrainCompleteCallback(drain_complete_cb);
drain_tick_timer_->enableTimer(drain_delay);
// Call registered on-drain callbacks - with gradual delays
// Note: This will distribute drain events in the first 1/4th of the drain window
// to ensure that we initiate draining with enough time for graceful shutdowns.
const MonotonicTime current_time = dispatcher_.timeSource().monotonicTime();
std::chrono::seconds remaining_time{0};
if (server_.options().drainStrategy() != Server::DrainStrategy::Immediate &&
current_time < drain_deadline_) {
remaining_time =
std::chrono::duration_cast<std::chrono::seconds>(drain_deadline_ - current_time);
ASSERT(server_.options().drainTime() >= remaining_time);
}
uint32_t step_count = 0;
size_t num_cbs = cbs_.size();
cbs_.runCallbacksWith([&]() {
// switch to floating-point math to avoid issues with integer division
std::chrono::milliseconds delay{static_cast<int64_t>(
static_cast<double>(step_count) / 4 / num_cbs *
std::chrono::duration_cast<std::chrono::milliseconds>(remaining_time).count())};
step_count++;
return delay;
});
}
void DrainManagerImpl::startParentShutdownSequence() {
// Do not initiate parent shutdown sequence when hot restart is disabled.
if (server_.options().hotRestartDisabled()) {
return;
}
ASSERT(!parent_shutdown_timer_);
parent_shutdown_timer_ = server_.dispatcher().createTimer([this]() -> void {
// Shut down the parent now. It should have already been draining.
ENVOY_LOG(info, "shutting down parent after drain");
server_.hotRestart().sendParentTerminateRequest();
});
parent_shutdown_timer_->enableTimer(std::chrono::duration_cast<std::chrono::milliseconds>(
server_.options().parentShutdownTime()));
}
} // namespace Server
} // namespace Envoy