forked from nsqio/nsq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lookup.go
151 lines (138 loc) · 3.95 KB
/
lookup.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
package main
import (
"bytes"
"encoding/json"
"log"
"net"
"os"
"strconv"
"time"
"github.com/bitly/go-nsq"
"github.com/bitly/nsq/util"
)
func (n *NSQD) lookupLoop() {
syncTopicChan := make(chan *LookupPeer)
hostname, err := os.Hostname()
if err != nil {
log.Fatalf("ERROR: failed to get hostname - %s", err.Error())
}
for _, host := range n.options.NSQLookupdTCPAddresses {
log.Printf("LOOKUP: adding peer %s", host)
lookupPeer := NewLookupPeer(host, func(lp *LookupPeer) {
ci := make(map[string]interface{})
ci["version"] = util.BINARY_VERSION
ci["tcp_port"] = n.tcpAddr.Port
ci["http_port"] = n.httpAddr.Port
ci["hostname"] = hostname
ci["broadcast_address"] = n.options.BroadcastAddress
cmd, err := nsq.Identify(ci)
if err != nil {
lp.Close()
return
}
resp, err := lp.Command(cmd)
if err != nil {
log.Printf("LOOKUPD(%s): ERROR %s - %s", lp, cmd, err.Error())
} else if bytes.Equal(resp, []byte("E_INVALID")) {
log.Printf("LOOKUPD(%s): lookupd returned %s", lp, resp)
} else {
err = json.Unmarshal(resp, &lp.Info)
if err != nil {
log.Printf("LOOKUPD(%s): ERROR parsing response - %v", lp, resp)
} else {
log.Printf("LOOKUPD(%s): peer info %+v", lp, lp.Info)
}
}
go func() {
syncTopicChan <- lp
}()
})
lookupPeer.Command(nil) // start the connection
n.lookupPeers = append(n.lookupPeers, lookupPeer)
}
// for announcements, lookupd determines the host automatically
ticker := time.Tick(15 * time.Second)
for {
select {
case <-ticker:
// send a heartbeat and read a response (read detects closed conns)
for _, lookupPeer := range n.lookupPeers {
log.Printf("LOOKUPD(%s): sending heartbeat", lookupPeer)
cmd := nsq.Ping()
_, err := lookupPeer.Command(cmd)
if err != nil {
log.Printf("LOOKUPD(%s): ERROR %s - %s", lookupPeer, cmd, err.Error())
}
}
case val := <-n.notifyChan:
var cmd *nsq.Command
var branch string
switch val.(type) {
case *Channel:
// notify all nsqlookupds that a new channel exists, or that it's removed
branch = "channel"
channel := val.(*Channel)
if channel.Exiting() == true {
cmd = nsq.UnRegister(channel.topicName, channel.name)
} else {
cmd = nsq.Register(channel.topicName, channel.name)
}
case *Topic:
// notify all nsqlookupds that a new topic exists, or that it's removed
branch = "topic"
topic := val.(*Topic)
if topic.Exiting() == true {
cmd = nsq.UnRegister(topic.name, "")
} else {
cmd = nsq.Register(topic.name, "")
}
}
for _, lookupPeer := range n.lookupPeers {
log.Printf("LOOKUPD(%s): %s %s", lookupPeer, branch, cmd)
_, err := lookupPeer.Command(cmd)
if err != nil {
log.Printf("LOOKUPD(%s): ERROR %s - %s", lookupPeer, cmd, err.Error())
}
}
case lookupPeer := <-syncTopicChan:
commands := make([]*nsq.Command, 0)
// build all the commands first so we exit the lock(s) as fast as possible
n.RLock()
for _, topic := range n.topicMap {
topic.RLock()
if len(topic.channelMap) == 0 {
commands = append(commands, nsq.Register(topic.name, ""))
} else {
for _, channel := range topic.channelMap {
commands = append(commands, nsq.Register(channel.topicName, channel.name))
}
}
topic.RUnlock()
}
n.RUnlock()
for _, cmd := range commands {
log.Printf("LOOKUPD(%s): %s", lookupPeer, cmd)
_, err := lookupPeer.Command(cmd)
if err != nil {
log.Printf("LOOKUPD(%s): ERROR %s - %s", lookupPeer, cmd, err.Error())
break
}
}
case <-n.exitChan:
goto exit
}
}
exit:
log.Printf("LOOKUP: closing")
}
func (n *NSQD) lookupHttpAddrs() []string {
var lookupHttpAddrs []string
for _, lp := range n.lookupPeers {
if len(lp.Info.BroadcastAddress) <= 0 {
continue
}
addr := net.JoinHostPort(lp.Info.BroadcastAddress, strconv.Itoa(lp.Info.HttpPort))
lookupHttpAddrs = append(lookupHttpAddrs, addr)
}
return lookupHttpAddrs
}