etcd/rafthttp/transport.go

193 lines
4.4 KiB
Go
Raw Normal View History

// Copyright 2015 CoreOS, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package rafthttp
import (
2014-12-29 04:44:26 +03:00
"log"
"net/http"
2014-12-29 04:44:26 +03:00
"net/url"
"path"
"sync"
2015-01-30 02:59:58 +03:00
"github.com/coreos/etcd/Godeps/_workspace/src/golang.org/x/net/context"
"github.com/coreos/etcd/etcdserver/stats"
"github.com/coreos/etcd/pkg/types"
2015-03-01 19:17:14 +03:00
"github.com/coreos/etcd/raft"
"github.com/coreos/etcd/raft/raftpb"
)
2014-12-29 04:44:26 +03:00
type Raft interface {
Process(ctx context.Context, m raftpb.Message) error
ReportUnreachable(id uint64)
2015-03-01 19:17:14 +03:00
ReportSnapshot(id uint64, status raft.SnapshotStatus)
}
type Transporter interface {
Handler() http.Handler
Send(m []raftpb.Message)
AddPeer(id types.ID, urls []string)
RemovePeer(id types.ID)
RemoveAllPeers()
UpdatePeer(id types.ID, urls []string)
Stop()
}
2014-12-29 23:20:52 +03:00
type transport struct {
roundTripper http.RoundTripper
id types.ID
clusterID types.ID
raft Raft
serverStats *stats.ServerStats
leaderStats *stats.LeaderStats
2015-01-03 07:00:29 +03:00
mu sync.RWMutex // protect the peer map
peers map[types.ID]*peer // remote peers
errorc chan error
}
2015-01-03 07:00:29 +03:00
func NewTransporter(rt http.RoundTripper, id, cid types.ID, r Raft, errorc chan error, ss *stats.ServerStats, ls *stats.LeaderStats) Transporter {
2014-12-29 23:20:52 +03:00
return &transport{
roundTripper: rt,
id: id,
clusterID: cid,
raft: r,
serverStats: ss,
leaderStats: ls,
peers: make(map[types.ID]*peer),
2015-01-03 07:00:29 +03:00
errorc: errorc,
}
2014-12-29 04:44:26 +03:00
}
2014-12-29 23:20:52 +03:00
func (t *transport) Handler() http.Handler {
pipelineHandler := NewHandler(t.raft, t.clusterID)
streamHandler := newStreamHandler(t, t.id, t.clusterID)
mux := http.NewServeMux()
mux.Handle(RaftPrefix, pipelineHandler)
mux.Handle(RaftStreamPrefix+"/", streamHandler)
2014-12-29 04:44:26 +03:00
return mux
}
2015-02-23 11:15:45 +03:00
func (t *transport) Get(id types.ID) Peer {
2014-12-29 04:44:26 +03:00
t.mu.RLock()
defer t.mu.RUnlock()
return t.peers[id]
}
2014-12-29 23:20:52 +03:00
func (t *transport) Send(msgs []raftpb.Message) {
2014-12-29 04:44:26 +03:00
for _, m := range msgs {
// intentionally dropped message
if m.To == 0 {
continue
}
to := types.ID(m.To)
p, ok := t.peers[to]
if !ok {
log.Printf("etcdserver: send message to unknown receiver %s", to)
continue
}
if m.Type == raftpb.MsgApp {
t.serverStats.SendAppendReq(m.Size())
2014-12-29 04:44:26 +03:00
}
p.Send(m)
}
}
2014-12-29 23:20:52 +03:00
func (t *transport) Stop() {
2014-12-29 04:44:26 +03:00
for _, p := range t.peers {
p.Stop()
}
if tr, ok := t.roundTripper.(*http.Transport); ok {
2014-12-29 04:44:26 +03:00
tr.CloseIdleConnections()
}
}
2014-12-29 23:20:52 +03:00
func (t *transport) AddPeer(id types.ID, urls []string) {
2014-12-29 04:44:26 +03:00
t.mu.Lock()
defer t.mu.Unlock()
if _, ok := t.peers[id]; ok {
return
}
// TODO: considering how to switch between all available peer urls
peerURL := urls[0]
u, err := url.Parse(peerURL)
if err != nil {
log.Panicf("unexpect peer url %s", peerURL)
}
2014-12-31 00:48:07 +03:00
u.Path = path.Join(u.Path, RaftPrefix)
fs := t.leaderStats.Follower(id.String())
t.peers[id] = startPeer(t.roundTripper, u.String(), t.id, id, t.clusterID, t.raft, fs, t.errorc)
2014-12-29 04:44:26 +03:00
}
2014-12-29 23:20:52 +03:00
func (t *transport) RemovePeer(id types.ID) {
2014-12-29 04:44:26 +03:00
t.mu.Lock()
defer t.mu.Unlock()
t.removePeer(id)
}
func (t *transport) RemoveAllPeers() {
t.mu.Lock()
defer t.mu.Unlock()
for id, _ := range t.peers {
t.removePeer(id)
}
}
// the caller of this function must have the peers mutex.
func (t *transport) removePeer(id types.ID) {
if peer, ok := t.peers[id]; ok {
peer.Stop()
} else {
log.Panicf("rafthttp: unexpected removal of unknown peer '%d'", id)
}
2014-12-29 04:44:26 +03:00
delete(t.peers, id)
delete(t.leaderStats.Followers, id.String())
2014-12-29 04:44:26 +03:00
}
2014-12-29 23:20:52 +03:00
func (t *transport) UpdatePeer(id types.ID, urls []string) {
2014-12-29 04:44:26 +03:00
t.mu.Lock()
defer t.mu.Unlock()
// TODO: return error or just panic?
if _, ok := t.peers[id]; !ok {
return
}
peerURL := urls[0]
u, err := url.Parse(peerURL)
if err != nil {
log.Panicf("unexpect peer url %s", peerURL)
}
2014-12-31 00:48:07 +03:00
u.Path = path.Join(u.Path, RaftPrefix)
2014-12-29 04:44:26 +03:00
t.peers[id].Update(u.String())
}
2014-12-29 23:20:52 +03:00
type Pausable interface {
Pause()
Resume()
}
2014-12-29 04:44:26 +03:00
// for testing
2014-12-29 23:20:52 +03:00
func (t *transport) Pause() {
2014-12-29 04:44:26 +03:00
for _, p := range t.peers {
p.Pause()
}
}
2014-12-29 23:20:52 +03:00
func (t *transport) Resume() {
2014-12-29 04:44:26 +03:00
for _, p := range t.peers {
p.Resume()
}
}