mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
pkg/srv, embed, etcdmain: Support multiple clusters in the same DNS discovery region.
This commit is contained in:
parent
80250827ab
commit
b664b9176c
@ -129,15 +129,16 @@ type Config struct {
|
|||||||
|
|
||||||
// clustering
|
// clustering
|
||||||
|
|
||||||
APUrls, ACUrls []url.URL
|
APUrls, ACUrls []url.URL
|
||||||
ClusterState string `json:"initial-cluster-state"`
|
ClusterState string `json:"initial-cluster-state"`
|
||||||
DNSCluster string `json:"discovery-srv"`
|
DNSCluster string `json:"discovery-srv"`
|
||||||
Dproxy string `json:"discovery-proxy"`
|
DNSClusterServiceName string `json:"discovery-srv-name"`
|
||||||
Durl string `json:"discovery"`
|
Dproxy string `json:"discovery-proxy"`
|
||||||
InitialCluster string `json:"initial-cluster"`
|
Durl string `json:"discovery"`
|
||||||
InitialClusterToken string `json:"initial-cluster-token"`
|
InitialCluster string `json:"initial-cluster"`
|
||||||
StrictReconfigCheck bool `json:"strict-reconfig-check"`
|
InitialClusterToken string `json:"initial-cluster-token"`
|
||||||
EnableV2 bool `json:"enable-v2"`
|
StrictReconfigCheck bool `json:"strict-reconfig-check"`
|
||||||
|
EnableV2 bool `json:"enable-v2"`
|
||||||
|
|
||||||
// security
|
// security
|
||||||
|
|
||||||
@ -463,7 +464,8 @@ func (cfg *Config) PeerURLsMapAndToken(which string) (urlsmap types.URLsMap, tok
|
|||||||
urlsmap[cfg.Name] = cfg.APUrls
|
urlsmap[cfg.Name] = cfg.APUrls
|
||||||
token = cfg.Durl
|
token = cfg.Durl
|
||||||
case cfg.DNSCluster != "":
|
case cfg.DNSCluster != "":
|
||||||
clusterStrs, cerr := srv.GetCluster("etcd-server", cfg.Name, cfg.DNSCluster, cfg.APUrls)
|
clusterStrs, cerr := cfg.GetDNSClusterNames()
|
||||||
|
|
||||||
if cerr != nil {
|
if cerr != nil {
|
||||||
plog.Errorf("couldn't resolve during SRV discovery (%v)", cerr)
|
plog.Errorf("couldn't resolve during SRV discovery (%v)", cerr)
|
||||||
return nil, "", cerr
|
return nil, "", cerr
|
||||||
@ -490,6 +492,28 @@ func (cfg *Config) PeerURLsMapAndToken(which string) (urlsmap types.URLsMap, tok
|
|||||||
return urlsmap, token, err
|
return urlsmap, token, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetDNSClusterNames uses DNS SRV records to get a list of initial nodes for cluster bootstrapping.
|
||||||
|
func (cfg *Config) GetDNSClusterNames() ([]string, error) {
|
||||||
|
var (
|
||||||
|
clusterStrs []string
|
||||||
|
cerr error
|
||||||
|
serviceNameSuffix string
|
||||||
|
)
|
||||||
|
if cfg.DNSClusterServiceName != "" {
|
||||||
|
serviceNameSuffix = "-" + cfg.DNSClusterServiceName
|
||||||
|
}
|
||||||
|
// Use both etcd-server-ssl and etcd-server for discovery. Combine the results if both are available.
|
||||||
|
clusterStrs, cerr = srv.GetCluster("https", "etcd-server-ssl"+serviceNameSuffix, cfg.Name, cfg.DNSCluster, cfg.APUrls)
|
||||||
|
defaultHTTPClusterStrs, httpCerr := srv.GetCluster("http", "etcd-server"+serviceNameSuffix, cfg.Name, cfg.DNSCluster, cfg.APUrls)
|
||||||
|
if cerr != nil {
|
||||||
|
clusterStrs = make([]string, 0)
|
||||||
|
}
|
||||||
|
if httpCerr != nil {
|
||||||
|
clusterStrs = append(clusterStrs, defaultHTTPClusterStrs...)
|
||||||
|
}
|
||||||
|
return clusterStrs, cerr
|
||||||
|
}
|
||||||
|
|
||||||
func (cfg Config) InitialClusterFromName(name string) (ret string) {
|
func (cfg Config) InitialClusterFromName(name string) (ret string) {
|
||||||
if len(cfg.APUrls) == 0 {
|
if len(cfg.APUrls) == 0 {
|
||||||
return ""
|
return ""
|
||||||
|
@ -155,6 +155,7 @@ func newConfig() *config {
|
|||||||
|
|
||||||
fs.StringVar(&cfg.ec.Dproxy, "discovery-proxy", cfg.ec.Dproxy, "HTTP proxy to use for traffic to discovery service.")
|
fs.StringVar(&cfg.ec.Dproxy, "discovery-proxy", cfg.ec.Dproxy, "HTTP proxy to use for traffic to discovery service.")
|
||||||
fs.StringVar(&cfg.ec.DNSCluster, "discovery-srv", cfg.ec.DNSCluster, "DNS domain used to bootstrap initial cluster.")
|
fs.StringVar(&cfg.ec.DNSCluster, "discovery-srv", cfg.ec.DNSCluster, "DNS domain used to bootstrap initial cluster.")
|
||||||
|
fs.StringVar(&cfg.ec.DNSClusterServiceName, "discovery-srv-name", cfg.ec.DNSClusterServiceName, "Service name to query when using DNS discovery.")
|
||||||
fs.StringVar(&cfg.ec.InitialCluster, "initial-cluster", cfg.ec.InitialCluster, "Initial cluster configuration for bootstrapping.")
|
fs.StringVar(&cfg.ec.InitialCluster, "initial-cluster", cfg.ec.InitialCluster, "Initial cluster configuration for bootstrapping.")
|
||||||
fs.StringVar(&cfg.ec.InitialClusterToken, "initial-cluster-token", cfg.ec.InitialClusterToken, "Initial cluster token for the etcd cluster during bootstrap.")
|
fs.StringVar(&cfg.ec.InitialClusterToken, "initial-cluster-token", cfg.ec.InitialClusterToken, "Initial cluster token for the etcd cluster during bootstrap.")
|
||||||
fs.Var(cfg.cf.clusterState, "initial-cluster-state", "Initial cluster state ('new' or 'existing').")
|
fs.Var(cfg.cf.clusterState, "initial-cluster-state", "Initial cluster state ('new' or 'existing').")
|
||||||
@ -285,7 +286,7 @@ func (cfg *config) configFromCmdLine() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// disable default initial-cluster if discovery is set
|
// disable default initial-cluster if discovery is set
|
||||||
if (cfg.ec.Durl != "" || cfg.ec.DNSCluster != "") && !flags.IsSet(cfg.cf.flagSet, "initial-cluster") {
|
if (cfg.ec.Durl != "" || cfg.ec.DNSCluster != "" || cfg.ec.DNSClusterServiceName != "") && !flags.IsSet(cfg.cf.flagSet, "initial-cluster") {
|
||||||
cfg.ec.InitialCluster = ""
|
cfg.ec.InitialCluster = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ var (
|
|||||||
|
|
||||||
// GetCluster gets the cluster information via DNS discovery.
|
// GetCluster gets the cluster information via DNS discovery.
|
||||||
// Also sees each entry as a separate instance.
|
// Also sees each entry as a separate instance.
|
||||||
func GetCluster(service, name, dns string, apurls types.URLs) ([]string, error) {
|
func GetCluster(serviceScheme, service, name, dns string, apurls types.URLs) ([]string, error) {
|
||||||
tempName := int(0)
|
tempName := int(0)
|
||||||
tcp2ap := make(map[string]url.URL)
|
tcp2ap := make(map[string]url.URL)
|
||||||
|
|
||||||
@ -83,20 +83,9 @@ func GetCluster(service, name, dns string, apurls types.URLs) ([]string, error)
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
failCount := 0
|
err := updateNodeMap(service, serviceScheme)
|
||||||
err := updateNodeMap(service+"-ssl", "https")
|
|
||||||
srvErr := make([]string, 2)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
srvErr[0] = fmt.Sprintf("error querying DNS SRV records for _%s-ssl %s", service, err)
|
return nil, fmt.Errorf("error querying DNS SRV records for _%s %s", service, err)
|
||||||
failCount++
|
|
||||||
}
|
|
||||||
err = updateNodeMap(service, "http")
|
|
||||||
if err != nil {
|
|
||||||
srvErr[1] = fmt.Sprintf("error querying DNS SRV records for _%s %s", service, err)
|
|
||||||
failCount++
|
|
||||||
}
|
|
||||||
if failCount == 2 {
|
|
||||||
return nil, fmt.Errorf("srv: too many errors querying DNS SRV records (%q, %q)", srvErr[0], srvErr[1])
|
|
||||||
}
|
}
|
||||||
return stringParts, nil
|
return stringParts, nil
|
||||||
}
|
}
|
||||||
|
@ -44,51 +44,51 @@ func TestSRVGetCluster(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
withSSL []*net.SRV
|
scheme string
|
||||||
withoutSSL []*net.SRV
|
records []*net.SRV
|
||||||
urls []string
|
urls []string
|
||||||
|
|
||||||
expected string
|
expected string
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
[]*net.SRV{},
|
"https",
|
||||||
[]*net.SRV{},
|
[]*net.SRV{},
|
||||||
nil,
|
nil,
|
||||||
|
|
||||||
"",
|
"",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"https",
|
||||||
srvAll,
|
srvAll,
|
||||||
[]*net.SRV{},
|
|
||||||
nil,
|
nil,
|
||||||
|
|
||||||
"0=https://1.example.com:2480,1=https://2.example.com:2480,2=https://3.example.com:2480",
|
"0=https://1.example.com:2480,1=https://2.example.com:2480,2=https://3.example.com:2480",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"http",
|
||||||
srvAll,
|
srvAll,
|
||||||
[]*net.SRV{{Target: "4.example.com.", Port: 2380}},
|
|
||||||
nil,
|
nil,
|
||||||
|
|
||||||
"0=https://1.example.com:2480,1=https://2.example.com:2480,2=https://3.example.com:2480,3=http://4.example.com:2380",
|
"0=http://1.example.com:2480,1=http://2.example.com:2480,2=http://3.example.com:2480",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"https",
|
||||||
srvAll,
|
srvAll,
|
||||||
[]*net.SRV{{Target: "4.example.com.", Port: 2380}},
|
|
||||||
[]string{"https://10.0.0.1:2480"},
|
[]string{"https://10.0.0.1:2480"},
|
||||||
|
|
||||||
"dnsClusterTest=https://1.example.com:2480,0=https://2.example.com:2480,1=https://3.example.com:2480,2=http://4.example.com:2380",
|
"dnsClusterTest=https://1.example.com:2480,0=https://2.example.com:2480,1=https://3.example.com:2480",
|
||||||
},
|
},
|
||||||
// matching local member with resolved addr and return unresolved hostnames
|
// matching local member with resolved addr and return unresolved hostnames
|
||||||
{
|
{
|
||||||
|
"https",
|
||||||
srvAll,
|
srvAll,
|
||||||
nil,
|
|
||||||
[]string{"https://10.0.0.1:2480"},
|
[]string{"https://10.0.0.1:2480"},
|
||||||
|
|
||||||
"dnsClusterTest=https://1.example.com:2480,0=https://2.example.com:2480,1=https://3.example.com:2480",
|
"dnsClusterTest=https://1.example.com:2480,0=https://2.example.com:2480,1=https://3.example.com:2480",
|
||||||
},
|
},
|
||||||
// reject if apurls are TLS but SRV is only http
|
// reject if apurls are TLS but SRV is only http
|
||||||
{
|
{
|
||||||
nil,
|
"http",
|
||||||
srvAll,
|
srvAll,
|
||||||
[]string{"https://10.0.0.1:2480"},
|
[]string{"https://10.0.0.1:2480"},
|
||||||
|
|
||||||
@ -109,16 +109,10 @@ func TestSRVGetCluster(t *testing.T) {
|
|||||||
|
|
||||||
for i, tt := range tests {
|
for i, tt := range tests {
|
||||||
lookupSRV = func(service string, proto string, domain string) (string, []*net.SRV, error) {
|
lookupSRV = func(service string, proto string, domain string) (string, []*net.SRV, error) {
|
||||||
if service == "etcd-server-ssl" {
|
return "", tt.records, nil
|
||||||
return "", tt.withSSL, nil
|
|
||||||
}
|
|
||||||
if service == "etcd-server" {
|
|
||||||
return "", tt.withoutSSL, nil
|
|
||||||
}
|
|
||||||
return "", nil, errors.New("Unknown service in mock")
|
|
||||||
}
|
}
|
||||||
urls := testutil.MustNewURLs(t, tt.urls)
|
urls := testutil.MustNewURLs(t, tt.urls)
|
||||||
str, err := GetCluster("etcd-server", name, "example.com", urls)
|
str, err := GetCluster(tt.scheme, "etcd-server", name, "example.com", urls)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("%d: err: %#v", i, err)
|
t.Fatalf("%d: err: %#v", i, err)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user