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
/
lifecycle.go
79 lines (67 loc) · 2.05 KB
/
lifecycle.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
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
log "github.com/Sirupsen/logrus"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/crewjam/ec2cluster"
)
// handleLifecycleEvent is invoked whenever we get a lifecycle terminate message. It removes
// terminated instances from the etcd cluster.
func handleLifecycleEvent(m *ec2cluster.LifecycleMessage) (shouldContinue bool, err error) {
if m.LifecycleTransition != "autoscaling:EC2_INSTANCE_TERMINATING" {
return true, nil
}
// look for the instance in the cluster
resp, err := http.Get(fmt.Sprintf("%s/v2/members", etcdLocalURL))
if err != nil {
return false, err
}
members := etcdMembers{}
if err := json.NewDecoder(resp.Body).Decode(&members); err != nil {
return false, err
}
memberID := ""
for _, member := range members.Members {
if member.Name == m.EC2InstanceID {
memberID = member.ID
}
}
if memberID == "" {
log.WithField("InstanceID", m.EC2InstanceID).Warn("received termination event for non-member")
return true, nil
}
log.WithFields(log.Fields{
"InstanceID": m.EC2InstanceID,
"MemberID": memberID}).Info("removing from cluster")
req, _ := http.NewRequest("DELETE", fmt.Sprintf("%s/v2/members/%s", etcdLocalURL, memberID), nil)
_, err = http.DefaultClient.Do(req)
if err != nil {
return false, err
}
return false, nil
}
func watchLifecycleEvents(s *ec2cluster.Cluster, localInstance *ec2.Instance) {
etcdLocalURL = fmt.Sprintf("http://%s:2379", *localInstance.PrivateIpAddress)
for {
queueUrl, err := s.LifecycleEventQueueURL()
// The lifecycle hook might not exist yet if we're being created
// by cloudformation.
if err == ec2cluster.ErrLifecycleHookNotFound {
log.Printf("WARNING: %s", err)
time.Sleep(10 * time.Second)
continue
}
if err != nil {
log.Fatalf("ERROR: LifecycleEventQueueUrl: %s", err)
}
log.Printf("Found Lifecycle SQS Queue: %s", queueUrl)
err = s.WatchLifecycleEvents(queueUrl, handleLifecycleEvent)
if err != nil {
log.Fatalf("ERROR: WatchLifecycleEvents: %s", err)
}
panic("not reached")
}
}