forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drain_manager_impl.h
46 lines (35 loc) · 1.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
#pragma once
#include <functional>
#include "envoy/common/time.h"
#include "envoy/config/listener/v3/listener.pb.h"
#include "envoy/event/timer.h"
#include "envoy/server/drain_manager.h"
#include "envoy/server/instance.h"
#include "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);
// Network::DrainDecision
bool drainClose() const override;
// Server::DrainManager
void startDrainSequence(std::function<void()> drain_complete_cb) override;
bool draining() const override { return draining_; }
void startParentShutdownSequence() override;
private:
Instance& server_;
const envoy::config::listener::v3::Listener::DrainType drain_type_;
std::atomic<bool> draining_{false};
Event::TimerPtr drain_tick_timer_;
MonotonicTime drain_deadline_;
Event::TimerPtr parent_shutdown_timer_;
};
} // namespace Server
} // namespace Envoy