-
Notifications
You must be signed in to change notification settings - Fork 592
/
failover.go
408 lines (346 loc) · 14.4 KB
/
failover.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
package util
/*
Copyright 2018 - 2021 Crunchy Data Solutions, Inc.
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.
*/
import (
"encoding/json"
"errors"
"fmt"
"github.com/crunchydata/postgres-operator/internal/config"
"github.com/crunchydata/postgres-operator/internal/kubeapi"
log "github.com/sirupsen/logrus"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
)
// InstanceReplicationInfo is the user friendly information for the current
// status of key replication metrics for a PostgreSQL instance
type InstanceReplicationInfo struct {
Name string
Node string
ReplicationLag int
Status string
Timeline int
PendingRestart bool
Role string
}
type ReplicationStatusRequest struct {
RESTConfig *rest.Config
Clientset kubernetes.Interface
Namespace string
ClusterName string
}
type ReplicationStatusResponse struct {
Instances []InstanceReplicationInfo
}
// instanceReplicationInfoJSON is the information returned from the request to
// the Patroni REST endpoint for info on the replication status of all the
// replicas
type instanceReplicationInfoJSON struct {
PodName string `json:"Member"`
Type string `json:"Role"`
ReplicationLag int `json:"Lag in MB"`
State string
Timeline int `json:"TL"`
PendingRestart string `json:"Pending restart"`
}
// instanceInfo stores the name and node of a specific instance (primary or replica) within a
// PG cluster
type instanceInfo struct {
name string
node string
}
const (
// instanceReplicationInfoTypePrimary is the label used by Patroni to indicate that an instance
// is indeed a primary PostgreSQL instance
instanceReplicationInfoTypePrimary = "Leader"
// instanceReplicationInfoTypePrimaryStandby is the label used by Patroni to indicate that an
// instance is indeed a primary PostgreSQL instance, specifically within a standby cluster
instanceReplicationInfoTypePrimaryStandby = "Standby Leader"
// instanceRolePrimary indicates that an instance is a primary
instanceRolePrimary = "primary"
// instanceRoleReplica indicates that an instance is a replica
instanceRoleReplica = "replica"
// instanceRoleUnknown indicates that an instance is of an unknown typ
instanceRoleUnknown = "unknown"
// instanceStatusUnavailable indicates an instance is unavailable
instanceStatusUnavailable = "unavailable"
)
var (
// instanceInfoCommand is the command used to get information about the status
// and other statistics about the instances in a PostgreSQL cluster, e.g.
// replication lag
instanceInfoCommand = []string{"patronictl", "list", "-f", "json"}
)
// GetPod determines the best target to fail to
func GetPod(clientset kubernetes.Interface, deploymentName, namespace string) (*v1.Pod, error) {
var err error
var pod *v1.Pod
var pods *v1.PodList
selector := config.LABEL_DEPLOYMENT_NAME + "=" + deploymentName + "," + config.LABEL_PGHA_ROLE + "=replica"
pods, err = clientset.CoreV1().Pods(namespace).List(metav1.ListOptions{LabelSelector: selector})
if err != nil {
return pod, err
}
if len(pods.Items) != 1 {
return pod, errors.New("could not determine which pod to failover to")
}
for _, v := range pods.Items {
pod = &v
}
found := false
//make sure the pod has a database container it it
for _, c := range pod.Spec.Containers {
if c.Name == "database" {
found = true
}
}
if !found {
return pod, errors.New("could not find a database container in the pod")
}
return pod, err
}
// ReplicationStatus is responsible for retrieving and returning the replication
// information about the status of the replicas in a PostgreSQL cluster. It
// executes into a single replica pod and leverages the functionality of Patroni
// for getting the key metrics that are appropriate to help the user understand
// the current state of their replicas.
//
// Statistics include: the current node the replica is on, if it is up, the
// replication lag, etc.
//
// By default information is only returned for replicas within the cluster. However,
// if primary information is also needed, the inlcudePrimary flag can set set to true
// and primary information will will also be included in the ReplicationStatusResponse.
//
// Also by default we do not include any "busted" Pods, e.g. a Pod that is not
// in a happy phase. That Pod may be lacking a "role" label. From there, we zero
// out the statistics and apply an error
func ReplicationStatus(request ReplicationStatusRequest, includePrimary, includeBusted bool) (ReplicationStatusResponse, error) {
response := ReplicationStatusResponse{
Instances: make([]InstanceReplicationInfo, 0),
}
// Build up the selector. First, create the base, which restricts to the
// current cluster
// pg-cluster=clusterName,pgo-pg-database
selector := fmt.Sprintf("%s=%s,%s",
config.LABEL_PG_CLUSTER, request.ClusterName, config.LABEL_PG_DATABASE)
// if we are not including the primary, determine if we are including busted
// replicas or not
if !includePrimary {
if includeBusted {
// include all Pods that identify as a database, but **not** a primary
// pg-cluster=clusterName,pgo-pg-database,role!=config.LABEL_PGHA_ROLE_PRIMARY
selector += fmt.Sprintf(",%s!=%s", config.LABEL_PGHA_ROLE, config.LABEL_PGHA_ROLE_PRIMARY)
} else {
// include all Pods that identify as a database and have a replica label
// pg-cluster=clusterName,pgo-pg-database,role=replica
selector += fmt.Sprintf(",%s=%s", config.LABEL_PGHA_ROLE, config.LABEL_PGHA_ROLE_REPLICA)
}
}
log.Debugf(`searching for pods with "%s"`, selector)
pods, err := request.Clientset.CoreV1().Pods(request.Namespace).List(metav1.ListOptions{LabelSelector: selector})
// If there is an error trying to get the pods, return here. Allow the caller
// to handle the error
if err != nil {
return response, err
}
// See how many replica instances were found. If none were found then return
log.Debugf(`replica pods found "%d"`, len(pods.Items))
if len(pods.Items) == 0 {
return response, err
}
// We need to create a quick map of "pod name" => node name / instance name
// We will iterate through the pod list once to extract the name we refer to
// the specific instance as, as well as which node it is deployed on
instanceInfoMap := createInstanceInfoMap(pods)
// Now get the statistics about the current state of the replicas, which we
// can delegate to Patroni vis-a-vis the information that it collects
// We can get the statistics about the current state of the managed instance
// From executing and running a command in the first active pod
var pod *v1.Pod
for _, p := range pods.Items {
if p.Status.Phase == v1.PodRunning {
pod = &p
break
}
}
// if no active Pod can be found, we can only assume that all of the instances
// are unavailable, and we should indicate as such
if pod == nil {
for _, p := range pods.Items {
// set up the instance that will be returned
instance := InstanceReplicationInfo{
Name: instanceInfoMap[p.Name].name,
Node: instanceInfoMap[p.Name].node,
ReplicationLag: -1,
Role: instanceRoleUnknown,
Status: instanceStatusUnavailable,
Timeline: -1,
}
// append this newly created instance to the list that will be returned
response.Instances = append(response.Instances, instance)
}
return response, nil
}
// Execute the command that will retrieve the replica information from Patroni
commandStdOut, _, err := kubeapi.ExecToPodThroughAPI(
request.RESTConfig, request.Clientset, instanceInfoCommand,
pod.Spec.Containers[0].Name, pod.Name, request.Namespace, nil)
// if there is an error, return. We will log the error at a higher level
if err != nil {
return response, err
}
// parse the JSON and plast it into instanceInfoList
var rawInstances []instanceReplicationInfoJSON
json.Unmarshal([]byte(commandStdOut), &rawInstances)
log.Debugf("patroni instance info: %v", rawInstances)
// We need to iterate through this list to format the information for the
// response
for _, rawInstance := range rawInstances {
var role string
// skip the primary unless explicitly enabled
if !includePrimary && (rawInstance.Type == instanceReplicationInfoTypePrimary ||
rawInstance.Type == instanceReplicationInfoTypePrimaryStandby) {
continue
}
// if this is a busted instance and we are not including it, skip
if !includeBusted && rawInstance.State == "" {
continue
}
// determine the role of the instnace
switch rawInstance.Type {
default:
role = instanceRoleReplica
case instanceReplicationInfoTypePrimary, instanceReplicationInfoTypePrimaryStandby:
role = instanceRolePrimary
}
// set up the instance that will be returned
instance := InstanceReplicationInfo{
ReplicationLag: rawInstance.ReplicationLag,
Status: rawInstance.State,
Timeline: rawInstance.Timeline,
Role: role,
Name: instanceInfoMap[rawInstance.PodName].name,
Node: instanceInfoMap[rawInstance.PodName].node,
PendingRestart: rawInstance.PendingRestart == "*",
}
// update the instance info if the instance is busted
if rawInstance.State == "" {
instance.Status = instanceStatusUnavailable
instance.ReplicationLag = -1
instance.Timeline = -1
}
// append this newly created instance to the list that will be returned
response.Instances = append(response.Instances, instance)
}
// pass along the response for the requestor to process
return response, nil
}
// ToggleAutoFailover enables or disables autofailover for a cluster. Disabling autofailover means "pausing"
// Patroni, which will result in Patroni stepping aside from managing the cluster. This will effectively cause
// Patroni to stop responding to failures or other database activities, e.g. it will not attempt to start the
// database when stopped to perform maintenance
func ToggleAutoFailover(clientset kubernetes.Interface, enable bool, pghaScope, namespace string) error {
// find the "config" configMap created by Patroni
configMapName := pghaScope + "-config"
log.Debugf("setting autofailover to %t for cluster with pgha scope %s", enable, pghaScope)
configMap, err := clientset.CoreV1().ConfigMaps(namespace).Get(configMapName, metav1.GetOptions{})
if err != nil {
log.Error(err)
return err
}
// return ErrMissingConfigAnnotation error if configMap is missing the "config" annotation.
// This allows for graceful handling of scenarios where a failover toggle is attempted
// (e.g. during cluster removal), but this annotation has not been created yet (e.g. due to
// a failed cluster bootstrap)
if _, ok := configMap.ObjectMeta.Annotations["config"]; !ok {
return ErrMissingConfigAnnotation
}
configJSONStr := configMap.ObjectMeta.Annotations["config"]
var configJSON map[string]interface{}
json.Unmarshal([]byte(configJSONStr), &configJSON)
if !enable {
// disable autofail condition
disableFailover(clientset, configMap, configJSON, namespace)
} else {
// enable autofail
enableFailover(clientset, configMap, configJSON, namespace)
}
return nil
}
// createInstanceInfoMap creates a mapping between the pod names for the PostgreSQL
// pods in a cluster to the a struct containing the associated instance name and the
// Nodes that it runs on, all based upon the output from a Kubernetes API query
func createInstanceInfoMap(pods *v1.PodList) map[string]instanceInfo {
instanceInfoMap := make(map[string]instanceInfo)
// Iterate through each pod that is returned and get the mapping between the
// pod and the PostgreSQL instance name with node it is scheduled on
for _, pod := range pods.Items {
instanceInfoMap[pod.GetName()] = instanceInfo{
name: pod.ObjectMeta.Labels[config.LABEL_DEPLOYMENT_NAME],
node: pod.Spec.NodeName,
}
}
log.Debugf("instanceInfoMap: %v", instanceInfoMap)
return instanceInfoMap
}
// If "pause" is present in the config and set to "true", then it needs to be removed to enable
// failover. Otherwise, if "pause" isn't present in the config or if it has a value other than
// true, then assume autofail is enabled and do nothing (when Patroni see's an invalid value for
// "pause" it sets it to "true")
func enableFailover(clientset kubernetes.Interface, configMap *v1.ConfigMap, configJSON map[string]interface{},
namespace string) error {
if _, ok := configJSON["pause"]; ok && configJSON["pause"] == true {
log.Debugf("updating pause key in configMap %s to enable autofailover", configMap.Name)
// disabled autofail by removing "pause" from the config
delete(configJSON, "pause")
configJSONFinalStr, err := json.Marshal(configJSON)
if err != nil {
return err
}
configMap.ObjectMeta.Annotations["config"] = string(configJSONFinalStr)
_, err = clientset.CoreV1().ConfigMaps(namespace).Update(configMap)
if err != nil {
return err
}
} else {
log.Debugf("autofailover already enabled according to the pause key (or lack thereof) in configMap %s",
configMap.Name)
}
return nil
}
// If "pause" isn't present in the config then assume autofail is enabled and needs to be disabled
// by setting "pause" to true. Or if it is present and set to something other than "true" (e.g.
// "false" or "null"), then it also needs to be disabled by setting "pause" to true.
func disableFailover(clientset kubernetes.Interface, configMap *v1.ConfigMap, configJSON map[string]interface{},
namespace string) error {
if _, ok := configJSON["pause"]; !ok || configJSON["pause"] != true {
log.Debugf("updating pause key in configMap %s to disable autofailover", configMap.Name)
// disable autofail by setting "pause" to true
configJSON["pause"] = true
configJSONFinalStr, err := json.Marshal(configJSON)
if err != nil {
return err
}
configMap.ObjectMeta.Annotations["config"] = string(configJSONFinalStr)
_, err = clientset.CoreV1().ConfigMaps(namespace).Update(configMap)
if err != nil {
return err
}
} else {
log.Debugf("autofailover already disabled according to the pause key in configMap %s",
configMap.Name)
}
return nil
}