main: listen for client requests on multiple sockets

release-2.0
Jonathan Boulle 2014-09-16 12:32:03 -07:00
parent 757f400f5d
commit 936ecd097a
2 changed files with 56 additions and 23 deletions

View File

@ -1,5 +1,5 @@
# Use goreman to run `go get github.com/mattn/goreman` # Use goreman to run `go get github.com/mattn/goreman`
etcd1: ./etcd -id 0x1 -l 127.0.0.1:4001 -r :7001 -peers '0x1=localhost:7001&0x2=localhost:7002&0x3=localhost:7003' etcd1: ./etcd -id 0x1 -bind-addr 127.0.0.1:4001 -peer-bind-addr :7001 -peers '0x1=localhost:7001&0x2=localhost:7002&0x3=localhost:7003'
etcd2: ./etcd -id 0x2 -l 127.0.0.1:4002 -r :7002 -peers '0x1=localhost:7001&0x2=localhost:7002&0x3=localhost:7003' etcd2: ./etcd -id 0x2 -bind-addr 127.0.0.1:4002 -peer-bind-addr :7002 -peers '0x1=localhost:7001&0x2=localhost:7002&0x3=localhost:7003'
etcd3: ./etcd -id 0x3 -l 127.0.0.1:4003 -r :7003 -peers '0x1=localhost:7001&0x2=localhost:7002&0x3=localhost:7003' etcd3: ./etcd -id 0x3 -bind-addr 127.0.0.1:4003 -peer-bind-addr :7003 -peers '0x1=localhost:7001&0x2=localhost:7002&0x3=localhost:7003'
proxy: ./etcd -proxy-mode -l 127.0.0.1:8080 -peers '0x1=localhost:7001&0x2=localhost:7002&0x3=localhost:7003' proxy: ./etcd -proxy-mode -bind-addr 127.0.0.1:8080 -peers '0x1=localhost:7001&0x2=localhost:7002&0x3=localhost:7003'

71
main.go
View File

@ -1,6 +1,7 @@
package main package main
import ( import (
"errors"
"flag" "flag"
"fmt" "fmt"
"log" "log"
@ -8,6 +9,7 @@ import (
"os" "os"
"path" "path"
"strconv" "strconv"
"strings"
"time" "time"
"github.com/coreos/etcd/etcdserver" "github.com/coreos/etcd/etcdserver"
@ -26,17 +28,19 @@ const (
var ( var (
fid = flag.String("id", "0x1", "ID of this server") fid = flag.String("id", "0x1", "ID of this server")
timeout = flag.Duration("timeout", 10*time.Second, "Request Timeout") timeout = flag.Duration("timeout", 10*time.Second, "Request Timeout")
laddr = flag.String("l", ":4001", "HTTP service address (e.g., ':4001')") paddr = flag.String("peer-bind-addr", ":7001", "Peer service address (e.g., ':7001')")
paddr = flag.String("r", ":7001", "Peer service address (e.g., ':7001')")
dir = flag.String("data-dir", "", "Path to the data directory") dir = flag.String("data-dir", "", "Path to the data directory")
proxyMode = flag.Bool("proxy-mode", false, "Forward HTTP requests to peers, do not participate in raft.") proxyMode = flag.Bool("proxy-mode", false, "Forward HTTP requests to peers, do not participate in raft.")
peers = &etcdhttp.Peers{} peers = &etcdhttp.Peers{}
addrs = &Addrs{}
) )
func init() { func init() {
peers.Set("0x1=localhost:8080")
flag.Var(peers, "peers", "your peers") flag.Var(peers, "peers", "your peers")
flag.Var(addrs, "bind-addr", "List of HTTP service addresses (e.g., '127.0.0.1:4001,10.0.0.1:8080')")
peers.Set("0x1=localhost:8080")
addrs.Set("127.0.0.1:4001")
} }
func main() { func main() {
@ -47,10 +51,12 @@ func main() {
} else { } else {
startEtcd() startEtcd()
} }
// Block indefinitely
<-make(chan struct{})
} }
// startEtcd launches the etcd server and HTTP handlers for client/server communication. // startEtcd launches the etcd server and HTTP handlers for client/server communication.
// Never returns.
func startEtcd() { func startEtcd() {
id, err := strconv.ParseInt(*fid, 0, 64) id, err := strconv.ParseInt(*fid, 0, 64)
if err != nil { if err != nil {
@ -88,19 +94,18 @@ func startEtcd() {
// Start the peer server in a goroutine // Start the peer server in a goroutine
go func() { go func() {
ps := &http.Server{ log.Print("Listening for peers on ", *paddr)
Addr: *paddr, log.Fatal(http.ListenAndServe(*paddr, ph))
Handler: ph,
}
log.Fatal(ps.ListenAndServe())
}() }()
// Client server takes over the main goroutine // Start a client server goroutine for each listen address
cs := &http.Server{ for _, addr := range *addrs {
Addr: *laddr, addr := addr
Handler: ch, go func() {
log.Print("Listening for client requests on ", addr)
log.Fatal(http.ListenAndServe(addr, ch))
}()
} }
log.Fatal(cs.ListenAndServe())
} }
// startRaft starts a raft node from the given wal dir. // startRaft starts a raft node from the given wal dir.
@ -135,13 +140,41 @@ func startRaft(id int64, peerIDs []int64, waldir string) (raft.Node, *wal.WAL) {
return n, w return n, w
} }
// startEtcd launches an HTTP proxy for client communication which proxies to other etcd nodes. // startProxy launches an HTTP proxy for client communication which proxies to other etcd nodes.
// Never returns.
func startProxy() { func startProxy() {
h, err := proxy.NewHandler((*peers).Endpoints()) ph, err := proxy.NewHandler((*peers).Endpoints())
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)
} }
http.Handle("/", h) // Start a proxy server goroutine for each listen address
log.Fatal(http.ListenAndServe(*laddr, h)) for _, addr := range *addrs {
addr := addr
go func() {
log.Print("Listening for client requests on ", addr)
log.Fatal(http.ListenAndServe(addr, ph))
}()
}
}
// Addrs implements the flag.Value interface to allow users to define multiple
// listen addresses on the command-line
type Addrs []string
// Set parses a command line set of listen addresses, formatted like:
// 127.0.0.1:7001,unix:///var/run/etcd.sock,10.1.1.1:8080
func (as *Addrs) Set(s string) error {
// TODO(jonboulle): validate things.
parsed := make([]string, 0)
for _, a := range strings.Split(s, ",") {
parsed = append(parsed, strings.TrimSpace(a))
}
if len(parsed) == 0 {
return errors.New("no valid addresses given!")
}
*as = parsed
return nil
}
func (as *Addrs) String() string {
return strings.Join(*as, ",")
} }