This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
etcd-aws.go
245 lines (215 loc) · 7.33 KB
/
etcd-aws.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
package main
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"net/http"
"os"
"os/exec"
"path/filepath"
"strings"
"time"
log "github.com/Sirupsen/logrus"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/coreos/go-etcd/etcd"
"github.com/crewjam/awsregion"
"github.com/crewjam/ec2cluster"
)
type etcdState struct {
Name string `json:"name"`
ID string `json:"id"`
State string `json:"state"`
StartTime time.Time `json:"startTime"`
LeaderInfo etcdLeaderInfo `json:"leaderInfo"`
}
type etcdLeaderInfo struct {
Leader string `json:"leader"`
Uptime string `json:"uptime"`
StartTime time.Time `json:"startTime"`
RecvAppendRequestCnt int `json:"recvAppendRequestCnt"`
RecvPkgRate int `json:"recvPkgRate"`
RecvBandwidthRate int `json:"recvBandwidthRate"`
SendAppendRequestCnt int `json:"sendAppendRequestCnt"`
}
type etcdMembers struct {
Members []etcdMember `json:"members,omitempty"`
}
type etcdMember struct {
ID string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
PeerURLs []string `json:"peerURLs,omitempty"`
ClientURLs []string `json:"clientURLs,omitempty"`
}
var etcdLocalURL string
func buildCluster(s *ec2cluster.Cluster) (initialClusterState string, initialCluster []string, err error) {
localInstance, err := s.Instance()
if err != nil {
return "", nil, err
}
clusterInstances, err := s.Members()
if err != nil {
return "", nil, fmt.Errorf("list members: %s", err)
}
initialClusterState = "new"
initialCluster = []string{}
for _, instance := range clusterInstances {
if instance.PrivateIpAddress == nil {
continue
}
// add this instance to the initialCluster expression
initialCluster = append(initialCluster, fmt.Sprintf("%s=http://%s:2380",
*instance.InstanceId, *instance.PrivateIpAddress))
// skip the local node, since we know it is not running yet
if *instance.InstanceId == *localInstance.InstanceId {
continue
}
// fetch the state of the node.
resp, err := http.Get(fmt.Sprintf("http://%s:2379/v2/stats/self", *instance.PrivateIpAddress))
if err != nil {
log.Printf("%s: http://%s:2379/v2/stats/self: %s", *instance.InstanceId,
*instance.PrivateIpAddress, err)
continue
}
nodeState := etcdState{}
if err := json.NewDecoder(resp.Body).Decode(&nodeState); err != nil {
log.Printf("%s: http://%s:2379/v2/stats/self: %s", *instance.InstanceId,
*instance.PrivateIpAddress, err)
continue
}
if nodeState.LeaderInfo.Leader == "" {
log.Printf("%s: http://%s:2379/v2/stats/self: alive, no leader", *instance.InstanceId,
*instance.PrivateIpAddress)
continue
}
log.Printf("%s: http://%s:2379/v2/stats/self: has leader %s", *instance.InstanceId,
*instance.PrivateIpAddress, nodeState.LeaderInfo.Leader)
if initialClusterState != "existing" {
initialClusterState = "existing"
// inform the know we found about the new node we're about to add so that
// when etcd starts we can avoid etcd thinking the cluster is out of sync.
log.Printf("joining cluster via %s", *instance.InstanceId)
m := etcdMember{
Name: *localInstance.InstanceId,
PeerURLs: []string{fmt.Sprintf("http://%s:2380", *localInstance.PrivateIpAddress)},
}
body, _ := json.Marshal(m)
http.Post(fmt.Sprintf("http://%s:2379/v2/members", *instance.PrivateIpAddress),
"application/json", bytes.NewReader(body))
}
}
return initialClusterState, initialCluster, nil
}
func main() {
instanceID := flag.String("instance", "",
"The instance ID of the cluster member. If not supplied, then the instance ID is determined from EC2 metadata")
clusterTagName := flag.String("tag", "aws:autoscaling:groupName",
"The instance tag that is common to all members of the cluster")
defaultBackupInterval := 5 * time.Minute
if d := os.Getenv("ETCD_BACKUP_INTERVAL"); d != "" {
var err error
defaultBackupInterval, err = time.ParseDuration(d)
if err != nil {
log.Fatalf("ERROR: %s", err)
}
}
backupInterval := flag.Duration("backup-interval", defaultBackupInterval,
"How frequently to back up the etcd data to S3")
backupBucket := flag.String("backup-bucket", os.Getenv("ETCD_BACKUP_BUCKET"),
"The name of the S3 bucket where tha backup is stored. "+
"Environment variable: ETCD_BACKUP_BUCKET")
defaultBackupKey := "/etcd-backup.gz"
if d := os.Getenv("ETCD_BACKUP_KEY"); d != "" {
defaultBackupKey = d
}
backupKey := flag.String("backup-key", defaultBackupKey,
"The name of the S3 key where tha backup is stored. "+
"Environment variable: ETCD_BACKUP_KEY")
defaultDataDir := "/var/lib/etcd2"
if d := os.Getenv("ETCD_DATA_DIR"); d != "" {
defaultDataDir = d
}
dataDir := flag.String("data-dir", defaultDataDir,
"The path to the etcd2 data directory. "+
"Environment variable: ETCD_DATA_DIR")
flag.Parse()
var err error
if *instanceID == "" {
*instanceID, err = ec2cluster.DiscoverInstanceID()
if err != nil {
log.Fatalf("ERROR: %s", err)
}
}
awsSession := session.New()
if region := os.Getenv("AWS_REGION"); region != "" {
awsSession.Config.WithRegion(region)
}
awsregion.GuessRegion(awsSession.Config)
s := &ec2cluster.Cluster{
AwsSession: awsSession,
InstanceID: *instanceID,
TagName: *clusterTagName,
}
localInstance, err := s.Instance()
if err != nil {
log.Fatalf("ERROR: %s", err)
}
initialClusterState, initialCluster, err := buildCluster(s)
// start the backup and restore goroutine.
shouldTryRestore := false
if initialClusterState == "new" {
_, err := os.Stat(filepath.Join(*dataDir, "member"))
if os.IsNotExist(err) {
shouldTryRestore = true
} else {
log.Printf("%s: %s", filepath.Join(*dataDir, "member"), err)
}
}
go func() {
// wait for etcd to start
for {
etcdClient := etcd.NewClient([]string{fmt.Sprintf("http://%s:2379",
*localInstance.PrivateIpAddress)})
if success := etcdClient.SyncCluster(); success {
break
}
time.Sleep(time.Second)
}
if shouldTryRestore {
if err := restoreBackup(s, *backupBucket, *backupKey, *dataDir); err != nil {
log.Fatalf("ERROR: %s", err)
}
}
if err := backupService(s, *backupBucket, *backupKey, *dataDir, *backupInterval); err != nil {
log.Fatalf("ERROR: %s", err)
}
}()
// watch for lifecycle events and remove nodes from the cluster as they are
// terminated.
go watchLifecycleEvents(s, localInstance)
// Run the etcd command
cmd := exec.Command("etcd")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
cmd.Env = []string{
fmt.Sprintf("ETCD_NAME=%s", *localInstance.InstanceId),
fmt.Sprintf("ETCD_DATA_DIR=%s", *dataDir),
fmt.Sprintf("ETCD_ELECTION_TIMEOUT=1200"),
fmt.Sprintf("ETCD_ADVERTISE_CLIENT_URLS=http://%s:2379", *localInstance.PrivateIpAddress),
fmt.Sprintf("ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379"),
fmt.Sprintf("ETCD_LISTEN_PEER_URLS=http://0.0.0.0:2380"),
fmt.Sprintf("ETCD_INITIAL_CLUSTER_STATE=%s", initialClusterState),
fmt.Sprintf("ETCD_INITIAL_CLUSTER=%s", strings.Join(initialCluster, ",")),
fmt.Sprintf("ETCD_INITIAL_ADVERTISE_PEER_URLS=http://%s:2380", *localInstance.PrivateIpAddress),
}
asg, _ := s.AutoscalingGroup()
if asg != nil {
cmd.Env = append(cmd.Env, fmt.Sprintf("ETCD_INITIAL_CLUSTER_TOKEN=%s", *asg.AutoScalingGroupARN))
}
for _, env := range cmd.Env {
log.Printf("%s", env)
}
if err := cmd.Run(); err != nil {
log.Fatalf("%s", err)
}
}