-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
health_state.go
140 lines (112 loc) · 3.2 KB
/
health_state.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
/*
Copyright 2019 The Knative Authors
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 health
import (
"io"
"net/http"
"sync"
)
const (
// Return `queue` as body for 200 responses to indicate the response is from queue-proxy.
aliveBody = "queue"
notAliveBody = "queue not ready"
)
// State holds state about the current healthiness of the component.
type State struct {
alive bool
shuttingDown bool
mutex sync.RWMutex
drainCh chan struct{}
drainCompleted bool
}
// IsAlive returns whether or not the health server is in a known
// working state currently.
func (h *State) IsAlive() bool {
h.mutex.RLock()
defer h.mutex.RUnlock()
return h.alive
}
// IsShuttingDown returns whether or not the health server is currently
// shutting down.
func (h *State) IsShuttingDown() bool {
h.mutex.RLock()
defer h.mutex.RUnlock()
return h.shuttingDown
}
// setAlive updates the state to declare the service alive.
func (h *State) setAlive() {
h.mutex.Lock()
defer h.mutex.Unlock()
h.alive = true
h.shuttingDown = false
}
// shutdown updates the state to declare the service shutting down.
func (h *State) shutdown() {
h.mutex.Lock()
defer h.mutex.Unlock()
h.alive = false
h.shuttingDown = true
}
// drainFinish updates that we finished draining.
func (h *State) drainFinished() {
h.mutex.Lock()
defer h.mutex.Unlock()
if !h.drainCompleted && h.drainCh != nil {
close(h.drainCh)
}
h.drainCompleted = true
}
// HandleHealthProbe handles the probe according to the current state of the
// health server. If isAggressive is false and prober has succeeded previously,
// the function return success without probing user-container again (until
// shutdown).
func (h *State) HandleHealthProbe(prober func() bool, isAggressive bool, w http.ResponseWriter) {
sendAlive := func() {
io.WriteString(w, aliveBody)
}
sendNotAlive := func() {
w.WriteHeader(http.StatusServiceUnavailable)
io.WriteString(w, notAliveBody)
}
switch {
case !isAggressive && h.IsAlive():
sendAlive()
case h.IsShuttingDown():
sendNotAlive()
case prober != nil && !prober():
sendNotAlive()
default:
h.setAlive()
sendAlive()
}
}
// DrainHandlerFunc constructs an HTTP handler that waits until the proxy server is shut down.
func (h *State) DrainHandlerFunc() func(_ http.ResponseWriter, _ *http.Request) {
h.mutex.Lock()
defer h.mutex.Unlock()
if h.drainCh == nil {
h.drainCh = make(chan struct{})
}
return func(_ http.ResponseWriter, _ *http.Request) {
<-h.drainCh
}
}
// Shutdown marks the proxy server as no ready and begins its shutdown process. This
// results in unblocking any connections waiting for drain.
func (h *State) Shutdown(drain func()) {
h.shutdown()
if drain != nil {
drain()
}
h.drainFinished()
}