-
Notifications
You must be signed in to change notification settings - Fork 1
/
drain_manager_impl.h
68 lines (54 loc) · 2.29 KB
/
drain_manager_impl.h
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
#pragma once
#include <chrono>
#include <functional>
#include <vector>
#include "envoy/common/time.h"
#include "envoy/config/listener/v3/listener.pb.h"
#include "envoy/event/dispatcher.h"
#include "envoy/event/timer.h"
#include "envoy/server/drain_manager.h"
#include "envoy/server/instance.h"
#include "source/common/common/callback_impl.h"
#include "source/common/common/logger.h"
namespace Envoy {
namespace Server {
/**
* Implementation of drain manager that does the following by default:
* 1) Terminates the parent process after 15 minutes.
* 2) Drains the parent process over a period of 10 minutes where drain close becomes more
* likely each second that passes.
*/
class DrainManagerImpl : Logger::Loggable<Logger::Id::main>, public DrainManager {
public:
DrainManagerImpl(Instance& server, envoy::config::listener::v3::Listener::DrainType drain_type,
Event::Dispatcher& dispatcher);
// Network::DrainDecision
bool drainClose() const override;
Common::CallbackHandlePtr addOnDrainCloseCb(DrainCloseCb cb) const override;
// Server::DrainManager
void startDrainSequence(std::function<void()> drain_complete_cb) override;
bool draining() const override { return draining_; }
void startParentShutdownSequence() override;
DrainManagerPtr
createChildManager(Event::Dispatcher& dispatcher,
envoy::config::listener::v3::Listener::DrainType drain_type) override;
DrainManagerPtr createChildManager(Event::Dispatcher& dispatcher) override;
private:
void addDrainCompleteCallback(std::function<void()> cb);
Instance& server_;
Event::Dispatcher& dispatcher_;
const envoy::config::listener::v3::Listener::DrainType drain_type_;
std::atomic<bool> draining_{false};
Event::TimerPtr drain_tick_timer_;
MonotonicTime drain_deadline_;
mutable Common::CallbackManager<std::chrono::milliseconds> cbs_{};
std::vector<std::function<void()>> drain_complete_cbs_{};
// Callbacks called by startDrainSequence to cascade/proxy to children
std::shared_ptr<Common::ThreadSafeCallbackManager> children_;
// Callback handle parent will invoke to initiate drain-sequence. Created and set
// by the parent drain-manager.
Common::CallbackHandlePtr parent_callback_handle_;
Event::TimerPtr parent_shutdown_timer_;
};
} // namespace Server
} // namespace Envoy