mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
148 lines
3.5 KiB
Go
148 lines
3.5 KiB
Go
/*
|
|
Copyright 2013 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 main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"runtime"
|
|
"time"
|
|
|
|
"github.com/coreos/raft"
|
|
|
|
"github.com/coreos/etcd/log"
|
|
"github.com/coreos/etcd/metrics"
|
|
"github.com/coreos/etcd/server"
|
|
"github.com/coreos/etcd/store"
|
|
)
|
|
|
|
func main() {
|
|
// Load configuration.
|
|
var config = server.NewConfig()
|
|
if err := config.Load(os.Args[1:]); err != nil {
|
|
fmt.Println(server.Usage() + "\n")
|
|
fmt.Println(err.Error() + "\n")
|
|
os.Exit(1)
|
|
} else if config.ShowVersion {
|
|
fmt.Println(server.ReleaseVersion)
|
|
os.Exit(0)
|
|
} else if config.ShowHelp {
|
|
fmt.Println(server.Usage() + "\n")
|
|
os.Exit(0)
|
|
}
|
|
|
|
// Enable options.
|
|
if config.VeryVeryVerbose {
|
|
log.Verbose = true
|
|
raft.SetLogLevel(raft.Trace)
|
|
} else if config.VeryVerbose {
|
|
log.Verbose = true
|
|
raft.SetLogLevel(raft.Debug)
|
|
} else if config.Verbose {
|
|
log.Verbose = true
|
|
}
|
|
if config.CPUProfileFile != "" {
|
|
profile(config.CPUProfileFile)
|
|
}
|
|
|
|
if config.DataDir == "" {
|
|
log.Fatal("The data dir was not set and could not be guessed from machine name")
|
|
}
|
|
|
|
// Create data directory if it doesn't already exist.
|
|
if err := os.MkdirAll(config.DataDir, 0744); err != nil {
|
|
log.Fatalf("Unable to create path: %s", err)
|
|
}
|
|
|
|
// Load info object.
|
|
info, err := config.Info()
|
|
if err != nil {
|
|
log.Fatal("info:", err)
|
|
}
|
|
|
|
// Retrieve TLS configuration.
|
|
tlsConfig, err := info.EtcdTLS.Config()
|
|
if err != nil {
|
|
log.Fatal("Client TLS:", err)
|
|
}
|
|
peerTLSConfig, err := info.RaftTLS.Config()
|
|
if err != nil {
|
|
log.Fatal("Peer TLS:", err)
|
|
}
|
|
|
|
var mbName string
|
|
if config.Trace() {
|
|
mbName = config.MetricsBucketName()
|
|
runtime.SetBlockProfileRate(1)
|
|
}
|
|
|
|
mb := metrics.NewBucket(mbName)
|
|
|
|
if config.GraphiteHost != "" {
|
|
err := mb.Publish(config.GraphiteHost)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Retrieve CORS configuration
|
|
corsInfo, err := server.NewCORSInfo(config.CorsOrigins)
|
|
if err != nil {
|
|
log.Fatal("CORS:", err)
|
|
}
|
|
|
|
// Create etcd key-value store and registry.
|
|
store := store.New()
|
|
registry := server.NewRegistry(store)
|
|
|
|
// Create peer server.
|
|
psConfig := server.PeerServerConfig{
|
|
Name: info.Name,
|
|
Path: config.DataDir,
|
|
URL: info.RaftURL,
|
|
BindAddr: info.RaftListenHost,
|
|
SnapshotCount: config.SnapshotCount,
|
|
HeartbeatTimeout: time.Duration(config.Peer.HeartbeatTimeout) * time.Millisecond,
|
|
ElectionTimeout: time.Duration(config.Peer.ElectionTimeout) * time.Millisecond,
|
|
MaxClusterSize: config.MaxClusterSize,
|
|
RetryTimes: config.MaxRetryAttempts,
|
|
CORS: corsInfo,
|
|
}
|
|
ps := server.NewPeerServer(psConfig, &peerTLSConfig, &info.RaftTLS, registry, store, &mb)
|
|
|
|
// Create client server.
|
|
sConfig := server.ServerConfig{
|
|
Name: info.Name,
|
|
URL: info.EtcdURL,
|
|
BindAddr: info.EtcdListenHost,
|
|
CORS: corsInfo,
|
|
}
|
|
s := server.New(sConfig, &tlsConfig, &info.EtcdTLS, ps, registry, store, &mb)
|
|
|
|
if config.Trace() {
|
|
s.EnableTracing()
|
|
}
|
|
|
|
ps.SetServer(s)
|
|
|
|
// Run peer server in separate thread while the client server blocks.
|
|
go func() {
|
|
log.Fatal(ps.ListenAndServe(config.Snapshot, config.Peers))
|
|
}()
|
|
log.Fatal(s.ListenAndServe())
|
|
}
|