| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- /*
- Copyright 2014 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 discovery
- import (
- "errors"
- "fmt"
- "log"
- "net/http"
- "net/url"
- "os"
- "path"
- "sort"
- "strconv"
- "strings"
- "time"
- "github.com/coreos/etcd/Godeps/_workspace/src/github.com/jonboulle/clockwork"
- "github.com/coreos/etcd/client"
- )
- var (
- ErrInvalidURL = errors.New("discovery: invalid URL")
- ErrBadSizeKey = errors.New("discovery: size key is bad")
- ErrSizeNotFound = errors.New("discovery: size key not found")
- ErrTokenNotFound = errors.New("discovery: token not found")
- ErrDuplicateID = errors.New("discovery: found duplicate id")
- ErrFullCluster = errors.New("discovery: cluster is full")
- ErrTooManyRetries = errors.New("discovery: too many retries")
- )
- const (
- // Environment variable used to configure an HTTP proxy for discovery
- DiscoveryProxyEnv = "ETCD_DISCOVERY_PROXY"
- // Number of retries discovery will attempt before giving up and erroring out.
- nRetries = uint(3)
- )
- type Discoverer interface {
- Discover() (string, error)
- }
- type discovery struct {
- cluster string
- id uint64
- config string
- c client.Client
- retries uint
- url *url.URL
- clock clockwork.Clock
- }
- // proxyFuncFromEnv builds a proxy function if the appropriate environment
- // variable is set. It performs basic sanitization of the environment variable
- // and returns any error encountered.
- func proxyFuncFromEnv() (func(*http.Request) (*url.URL, error), error) {
- proxy := os.Getenv(DiscoveryProxyEnv)
- if proxy == "" {
- return nil, nil
- }
- // Do a small amount of URL sanitization to help the user
- // Derived from net/http.ProxyFromEnvironment
- proxyURL, err := url.Parse(proxy)
- if err != nil || !strings.HasPrefix(proxyURL.Scheme, "http") {
- // proxy was bogus. Try prepending "http://" to it and
- // see if that parses correctly. If not, we ignore the
- // error and complain about the original one
- var err2 error
- proxyURL, err2 = url.Parse("http://" + proxy)
- if err2 == nil {
- err = nil
- }
- }
- if err != nil {
- return nil, fmt.Errorf("invalid proxy address %q: %v", proxy, err)
- }
- log.Printf("discovery: using proxy %q", proxyURL.String())
- return http.ProxyURL(proxyURL), nil
- }
- func New(durl string, id uint64, config string) (Discoverer, error) {
- u, err := url.Parse(durl)
- if err != nil {
- return nil, err
- }
- token := u.Path
- u.Path = ""
- pf, err := proxyFuncFromEnv()
- if err != nil {
- return nil, err
- }
- c, err := client.NewHTTPClient(&http.Transport{Proxy: pf}, u.String(), time.Second*5)
- if err != nil {
- return nil, err
- }
- // discovery service redirects /[key] to /v2/keys/[key]
- // set the prefix of client to "" to handle this
- c.SetPrefix("")
- return &discovery{
- cluster: token,
- id: id,
- config: config,
- c: c,
- url: u,
- clock: clockwork.NewRealClock(),
- }, nil
- }
- func (d *discovery) Discover() (string, error) {
- // fast path: if the cluster is full, returns the error
- // do not need to register itself to the cluster in this
- // case.
- if _, _, err := d.checkCluster(); err != nil {
- return "", err
- }
- if err := d.createSelf(); err != nil {
- // Fails, even on a timeout, if createSelf times out.
- // TODO(barakmich): Retrying the same node might want to succeed here
- // (ie, createSelf should be idempotent for discovery).
- return "", err
- }
- nodes, size, err := d.checkCluster()
- if err != nil {
- return "", err
- }
- all, err := d.waitNodes(nodes, size)
- if err != nil {
- return "", err
- }
- return nodesToCluster(all), nil
- }
- func (d *discovery) createSelf() error {
- resp, err := d.c.Create(d.selfKey(), d.config, -1)
- if err != nil {
- return err
- }
- // ensure self appears on the server we connected to
- w := d.c.Watch(d.selfKey(), resp.Node.CreatedIndex)
- _, err = w.Next()
- return err
- }
- func (d *discovery) checkCluster() (client.Nodes, int, error) {
- configKey := path.Join("/", d.cluster, "_config")
- // find cluster size
- resp, err := d.c.Get(path.Join(configKey, "size"))
- if err != nil {
- if err == client.ErrKeyNoExist {
- return nil, 0, ErrSizeNotFound
- }
- if err == client.ErrTimeout {
- return d.checkClusterRetry()
- }
- return nil, 0, err
- }
- size, err := strconv.Atoi(resp.Node.Value)
- if err != nil {
- return nil, 0, ErrBadSizeKey
- }
- resp, err = d.c.Get(d.cluster)
- if err != nil {
- if err == client.ErrTimeout {
- return d.checkClusterRetry()
- }
- return nil, 0, err
- }
- nodes := make(client.Nodes, 0)
- // append non-config keys to nodes
- for _, n := range resp.Node.Nodes {
- if !strings.Contains(n.Key, configKey) {
- nodes = append(nodes, n)
- }
- }
- snodes := sortableNodes{nodes}
- sort.Sort(snodes)
- // find self position
- for i := range nodes {
- if strings.Contains(nodes[i].Key, d.selfKey()) {
- break
- }
- if i >= size-1 {
- return nil, size, ErrFullCluster
- }
- }
- return nodes, size, nil
- }
- func (d *discovery) logAndBackoffForRetry(step string) {
- d.retries++
- retryTime := time.Second * (0x1 << d.retries)
- log.Println("discovery: during", step, "connection to", d.url, "timed out, retrying in", retryTime)
- d.clock.Sleep(retryTime)
- }
- func (d *discovery) checkClusterRetry() (client.Nodes, int, error) {
- if d.retries < nRetries {
- d.logAndBackoffForRetry("cluster status check")
- return d.checkCluster()
- }
- return nil, 0, ErrTooManyRetries
- }
- func (d *discovery) waitNodesRetry() (client.Nodes, error) {
- if d.retries < nRetries {
- d.logAndBackoffForRetry("waiting for other nodes")
- nodes, n, err := d.checkCluster()
- if err != nil {
- return nil, err
- }
- return d.waitNodes(nodes, n)
- }
- return nil, ErrTooManyRetries
- }
- func (d *discovery) waitNodes(nodes client.Nodes, size int) (client.Nodes, error) {
- if len(nodes) > size {
- nodes = nodes[:size]
- }
- w := d.c.RecursiveWatch(d.cluster, nodes[len(nodes)-1].ModifiedIndex+1)
- all := make(client.Nodes, len(nodes))
- copy(all, nodes)
- // wait for others
- for len(all) < size {
- resp, err := w.Next()
- if err != nil {
- if err == client.ErrTimeout {
- return d.waitNodesRetry()
- }
- return nil, err
- }
- all = append(all, resp.Node)
- }
- return all, nil
- }
- func (d *discovery) selfKey() string {
- return path.Join("/", d.cluster, fmt.Sprintf("%d", d.id))
- }
- func nodesToCluster(ns client.Nodes) string {
- s := make([]string, len(ns))
- for i, n := range ns {
- s[i] = n.Value
- }
- return strings.Join(s, ",")
- }
- type sortableNodes struct{ client.Nodes }
- func (ns sortableNodes) Len() int { return len(ns.Nodes) }
- func (ns sortableNodes) Less(i, j int) bool {
- return ns.Nodes[i].CreatedIndex < ns.Nodes[j].CreatedIndex
- }
- func (ns sortableNodes) Swap(i, j int) { ns.Nodes[i], ns.Nodes[j] = ns.Nodes[j], ns.Nodes[i] }
|