forked from CrunchyData/crunchy-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
286 lines (235 loc) · 6.9 KB
/
main.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
package main
import (
"fmt"
"os"
"os/signal"
"syscall"
"time"
log "github.com/sirupsen/logrus"
flag "github.com/spf13/pflag"
config "github.com/spf13/viper"
"github.com/crunchydata/crunchy-watch/flags"
"github.com/crunchydata/crunchy-watch/util"
)
// Valid supported platforms.
var platforms = []string{
"docker",
"kube",
"openshift",
}
var flagSet *flag.FlagSet
// Define common flag information
var (
Primary = flags.FlagInfo{
Namespace: "general",
Name: "primary",
EnvVar: "CRUNCHY_WATCH_PRIMARY",
Description: "host of the primary PostgreSQL instance",
}
PrimaryPort = flags.FlagInfo{
Namespace: "general",
Name: "primary-port",
EnvVar: "CRUNCHY_WATCH_PRIMARY_PORT",
Description: "port of the primary PostgreSQL instance",
}
Replica = flags.FlagInfo{
Namespace: "general",
Name: "replica",
EnvVar: "CRUNCHY_WATCH_REPLICA",
Description: "host of the replica PostgreSQL instance",
}
ReplicaPort = flags.FlagInfo{
Namespace: "general",
Name: "replica-port",
EnvVar: "CRUNCHY_WATCH_REPLICA_PORT",
Description: "port of the replica PostgreSQL instance",
}
Username = flags.FlagInfo{
Namespace: "general",
Name: "username",
EnvVar: "CRUNCHY_WATCH_USERNAME",
Description: "login user to connect to PostgreSQL",
}
Password = flags.FlagInfo{
Namespace: "general",
Name: "password",
EnvVar: "CRUNCHY_WATCH_PASSWORD",
Description: "login user's password to connect to PostgreSQL",
}
Database = flags.FlagInfo{
Namespace: "general",
Name: "database",
EnvVar: "CRUNCHY_WATCH_DATABASE",
Description: "database connect to",
}
Timeout = flags.FlagInfo{
Namespace: "general",
Name: "timeout",
EnvVar: "CRUNCHY_WATCH_TIMEOUT",
Description: "connection timeout",
}
MaxFailures = flags.FlagInfo{
Namespace: "general",
Name: "max-failures",
EnvVar: "CRUNCHY_WATCH_MAX_FAILURES",
Description: "maximum number of failures before performing failover",
}
HealthcheckInterval = flags.FlagInfo{
Namespace: "general",
Name: "healthcheck-interval",
EnvVar: "CRUNCHY_WATCH_HEALTHCHECK_INTERVAL",
Description: "interval between healthchecks",
}
FailoverWait = flags.FlagInfo{
Namespace: "general",
Name: "failover-wait",
EnvVar: "CRUNCHY_WATCH_FAILOVER_WAIT",
Description: "time to wait for failover to process",
}
PreHook = flags.FlagInfo{
Namespace: "general",
Name: "pre-hook",
EnvVar: "CRUNCHY_WATCH_PRE_HOOK",
Description: "failover pre-hook to execute before processing failover",
}
PostHook = flags.FlagInfo{
Namespace: "general",
Name: "post-hook",
EnvVar: "CRUNCHY_WATCH_POST_HOOK",
Description: "failover post-hook to execute after processing failover",
}
)
const (
DefaultHealthCheckInterval = 10 * time.Second
DefaultFailoverWait = 50 * time.Second
)
type FailoverHandler interface {
Failover() error
SetFlags(*flag.FlagSet)
}
func init() {
log.SetOutput(os.Stdout)
log.SetFormatter(&log.TextFormatter{
ForceColors: true,
FullTimestamp: true,
})
flagSet = flag.NewFlagSet("main", flag.ContinueOnError)
flags.String(flagSet, Primary, "")
flags.Int(flagSet, PrimaryPort, 5432)
flags.String(flagSet, Replica, "")
flags.Int(flagSet, ReplicaPort, 5432)
flags.String(flagSet, Database, "postgres")
flags.String(flagSet, Username, "postgres")
flags.String(flagSet, Password, "")
flags.Duration(flagSet, Timeout, 10*time.Second)
flags.Int(flagSet, MaxFailures, 0)
flags.Duration(flagSet, HealthcheckInterval, DefaultHealthCheckInterval)
flags.Duration(flagSet, FailoverWait, DefaultFailoverWait)
flags.String(flagSet, PreHook, "")
flags.String(flagSet, PostHook, "")
}
func main() {
go func() {
ch := make(chan os.Signal, 1)
signal.Notify(ch,
syscall.SIGINT,
syscall.SIGTERM,
)
log.Info("Waiting for signal...")
s := <-ch
log.Infof("Received signal: %s", s)
os.Exit(0)
}()
platform := os.Args[1]
validPlatform := checkPlatform(platform)
// Check that platform is valid.
if !validPlatform {
log.Error("Usage: crunchy-watch <platform> [flags]")
log.Errorf("Error: '%s' is not a valid platform\n\n", platform)
log.Error("Valid platform options are:")
for _, p := range platforms {
log.Errorf(" - %s", p)
}
os.Exit(1)
}
// Load platform module
log.Infof("Loading Platform Module: %s", platform)
handler := loadPlatformModule(platform)
// Allow platform module to add it's command-line flags
handler.SetFlags(flagSet)
// Parse all command-line flags
err := flagSet.Parse(os.Args[2:])
if err != nil {
log.Error(err.Error())
os.Exit(1)
}
// Check that required flags/envs were set
if config.GetString(Primary.EnvVar) == "" {
log.Error("Must specify a primary PostgreSQL instance.")
log.Errorf("This value can be provided by either the '--%s' flag or the '%s' environment variable",
Primary.Name, Primary.EnvVar)
os.Exit(1)
}
if config.GetString(Replica.EnvVar) == "" {
log.Error("Must specify a replica PostgreSQL instance for failover.")
log.Errorf("This value can be provided by either the '--%s' flag or the '%s' environment variable",
Replica.Name, Replica.EnvVar)
os.Exit(1)
}
timeout := config.GetDuration(Timeout.EnvVar)
// Construct connection string to primary
target := fmt.Sprintf("postgresql://%s:%s@%s:%d/%s?sslmode=disable&connect_timeout=%d",
config.GetString(Username.EnvVar),
config.GetString(Password.EnvVar),
config.GetString(Primary.EnvVar),
config.GetInt(PrimaryPort.EnvVar),
config.GetString(Database.EnvVar),
int(timeout.Seconds()),
)
// Watch
failures := 0
for {
log.Infof("Health Checking: '%s'", config.GetString(Primary.EnvVar))
err := util.HealthCheck(target)
if err == nil {
log.Infof("Successfully reached '%s'", config.GetString(Primary.EnvVar))
} else {
failures += 1
log.Errorf("Could not reach '%s' (Attempt: %d)",
config.GetString(Primary.EnvVar),
failures,
)
// If max failure has been exceeded then process failover
if failures > config.GetInt(MaxFailures.EnvVar) {
// process failover pre-hook
preHook := config.GetString(PreHook.EnvVar)
if preHook != "" {
log.Infof("Executing pre-hook: %s", preHook)
err := execute(preHook)
if err != nil {
log.Error("Could not execute pre-hook")
log.Error(err.Error())
}
}
// Process failover
err = handler.Failover()
if err != nil {
log.Errorf("Failover process failed: %s", err.Error())
}
// Process failover post-hook
postHook := config.GetString(PostHook.EnvVar)
if postHook != "" {
log.Infof("Executing post-hook: %s", postHook)
err := execute(postHook)
if err != nil {
log.Error("Could not execute post-hook")
log.Error(err.Error())
}
}
// reset retry count.
failures = 0
}
}
time.Sleep(config.GetDuration(HealthcheckInterval.EnvVar))
}
}