mirror of https://github.com/etcd-io/dbtester.git
192 lines
5.9 KiB
Go
192 lines
5.9 KiB
Go
// Copyright 2017 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 agent
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"html/template"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/coreos/dbtester/dbtesterpb"
|
|
)
|
|
|
|
var (
|
|
zkTemplate = `tickTime={{.TickTime}}
|
|
dataDir={{.DataDir}}
|
|
clientPort={{.ClientPort}}
|
|
initLimit={{.InitLimit}}
|
|
syncLimit={{.SyncLimit}}
|
|
maxClientCnxns={{.MaxClientConnections}}
|
|
snapCount={{.SnapCount}}
|
|
{{range .Peers}}server.{{.MyID}}={{.IP}}:2888:3888
|
|
{{end}}
|
|
`
|
|
)
|
|
|
|
// ZookeeperConfig is zookeeper configuration.
|
|
// http://zookeeper.apache.org/doc/trunk/zookeeperAdmin.html
|
|
type ZookeeperConfig struct {
|
|
TickTime int64
|
|
DataDir string
|
|
ClientPort int64
|
|
InitLimit int64
|
|
SyncLimit int64
|
|
MaxClientConnections int64
|
|
SnapCount int64
|
|
Peers []ZookeeperPeer
|
|
}
|
|
|
|
// ZookeeperPeer defines Zookeeper peer configuration.
|
|
type ZookeeperPeer struct {
|
|
MyID int
|
|
IP string
|
|
}
|
|
|
|
var shell = os.Getenv("SHELL")
|
|
|
|
func init() {
|
|
if len(shell) == 0 {
|
|
shell = "sh"
|
|
}
|
|
}
|
|
|
|
// Java class paths for Zookeeper.
|
|
// '-cp' is for 'class search path of directories and zip/jar files'.
|
|
// See https://zookeeper.apache.org/doc/trunk/zookeeperAdmin.html for more.
|
|
// UPDATE FOR EACH ZOOKEEPER RELEASES!
|
|
// Search correct paths with 'find ./zookeeper/lib | sort'.
|
|
const (
|
|
// JavaClassPathZookeeperr353beta is the Java class paths of Zookeeper r3.5.3-beta.
|
|
// http://zookeeper.apache.org/doc/r3.5.3-beta/zookeeperAdmin.html#sc_zkMulitServerSetup
|
|
JavaClassPathZookeeperr353beta = `-cp zookeeper-3.5.3-beta.jar:lib/slf4j-api-1.7.5.jar:lib/slf4j-log4j12-1.7.5.jar:lib/log4j-1.2.17.jar:conf org.apache.zookeeper.server.quorum.QuorumPeerMain`
|
|
)
|
|
|
|
// startZookeeper starts Zookeeper.
|
|
func startZookeeper(fs *flags, t *transporterServer) error {
|
|
if !exist(fs.javaExec) {
|
|
return fmt.Errorf("Java binary %q does not exist", globalFlags.javaExec)
|
|
}
|
|
if err := os.RemoveAll(fs.zkDataDir); err != nil {
|
|
return err
|
|
}
|
|
if err := os.MkdirAll(fs.zkDataDir, 0777); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Zookeeper requires correct relative-path for runtime
|
|
// needs manual 'cd' into the Zookeeper working directory!
|
|
if err := os.Chdir(fs.zkWorkDir); err != nil {
|
|
return err
|
|
}
|
|
|
|
ipath := filepath.Join(fs.zkDataDir, "myid")
|
|
switch t.req.DatabaseID {
|
|
case dbtesterpb.DatabaseID_zookeeper__r3_5_3_beta:
|
|
if t.req.Flag_Zookeeper_R3_5_3Beta == nil {
|
|
return fmt.Errorf("request 'Flag_Zookeeper_R3_5_3Beta' is nil")
|
|
}
|
|
plog.Infof("writing Zookeeper myid file %d to %s", t.req.Flag_Zookeeper_R3_5_3Beta.MyID, ipath)
|
|
if err := toFile(fmt.Sprintf("%d", t.req.Flag_Zookeeper_R3_5_3Beta.MyID), ipath); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
return fmt.Errorf("database ID %q is not supported", t.req.DatabaseID)
|
|
}
|
|
|
|
var cfg ZookeeperConfig
|
|
peerIPs := strings.Split(t.req.PeerIPsString, "___")
|
|
peers := []ZookeeperPeer{}
|
|
for i := range peerIPs {
|
|
peers = append(peers, ZookeeperPeer{MyID: i + 1, IP: peerIPs[i]})
|
|
}
|
|
switch t.req.DatabaseID {
|
|
case dbtesterpb.DatabaseID_zookeeper__r3_5_3_beta:
|
|
cfg = ZookeeperConfig{
|
|
TickTime: t.req.Flag_Zookeeper_R3_5_3Beta.TickTime,
|
|
DataDir: fs.zkDataDir,
|
|
ClientPort: t.req.Flag_Zookeeper_R3_5_3Beta.ClientPort,
|
|
InitLimit: t.req.Flag_Zookeeper_R3_5_3Beta.InitLimit,
|
|
SyncLimit: t.req.Flag_Zookeeper_R3_5_3Beta.SyncLimit,
|
|
MaxClientConnections: t.req.Flag_Zookeeper_R3_5_3Beta.MaxClientConnections,
|
|
Peers: peers,
|
|
SnapCount: t.req.Flag_Zookeeper_R3_5_3Beta.SnapCount,
|
|
}
|
|
default:
|
|
return fmt.Errorf("database ID %q is not supported", t.req.DatabaseID)
|
|
}
|
|
tpl := template.Must(template.New("zkTemplate").Parse(zkTemplate))
|
|
buf := new(bytes.Buffer)
|
|
if err := tpl.Execute(buf, cfg); err != nil {
|
|
return err
|
|
}
|
|
zctxt := buf.String()
|
|
plog.Infof("writing Zookeeper config file %q (config %q)", fs.zkConfig, zctxt)
|
|
if err := toFile(zctxt, fs.zkConfig); err != nil {
|
|
return err
|
|
}
|
|
|
|
var flagString string
|
|
switch t.req.DatabaseID {
|
|
case dbtesterpb.DatabaseID_zookeeper__r3_5_3_beta:
|
|
if t.req.Flag_Zookeeper_R3_5_3Beta.JavaDJuteMaxBuffer != 0 {
|
|
if len(flagString) > 0 {
|
|
flagString += " "
|
|
}
|
|
flagString += fmt.Sprintf("-Djute.maxbuffer=%d", t.req.Flag_Zookeeper_R3_5_3Beta.JavaDJuteMaxBuffer)
|
|
}
|
|
if t.req.Flag_Zookeeper_R3_5_3Beta.JavaDJuteMaxBuffer != 0 {
|
|
if len(flagString) > 0 {
|
|
flagString += " "
|
|
}
|
|
flagString += fmt.Sprintf("-Xms%s", t.req.Flag_Zookeeper_R3_5_3Beta.JavaXms)
|
|
}
|
|
if t.req.Flag_Zookeeper_R3_5_3Beta.JavaDJuteMaxBuffer != 0 {
|
|
if len(flagString) > 0 {
|
|
flagString += " "
|
|
}
|
|
flagString += fmt.Sprintf("-Xmx%s", t.req.Flag_Zookeeper_R3_5_3Beta.JavaXmx)
|
|
}
|
|
// -Djute.maxbuffer=33554432 -Xms50G -Xmx50G
|
|
if len(flagString) > 0 {
|
|
flagString += " "
|
|
}
|
|
flagString += JavaClassPathZookeeperr353beta
|
|
|
|
default:
|
|
return fmt.Errorf("database ID %q is not supported", t.req.DatabaseID)
|
|
}
|
|
|
|
args := []string{shell, "-c", fs.javaExec + " " + flagString + " " + fs.zkConfig}
|
|
cmd := exec.Command(args[0], args[1:]...)
|
|
cmd.Stdout = t.databaseLogFile
|
|
cmd.Stderr = t.databaseLogFile
|
|
cs := fmt.Sprintf("%s %s", cmd.Path, strings.Join(args[1:], " "))
|
|
|
|
plog.Infof("starting database %q", cs)
|
|
if err := cmd.Start(); err != nil {
|
|
return err
|
|
}
|
|
t.cmd = cmd
|
|
t.cmdWait = make(chan struct{})
|
|
t.pid = int64(cmd.Process.Pid)
|
|
|
|
plog.Infof("started database %q (PID: %d)", cs, t.pid)
|
|
return nil
|
|
}
|