123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- // Copyright 2016 The etcd Authors
- //
- // 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 command
- import (
- "context"
- "errors"
- "fmt"
- "strings"
- "sync/atomic"
- "time"
- "github.com/coreos/etcd/clientv3"
- "github.com/coreos/etcd/clientv3/mirror"
- "github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes"
- "github.com/coreos/etcd/mvcc/mvccpb"
- "github.com/spf13/cobra"
- )
- var (
- mminsecureTr bool
- mmcert string
- mmkey string
- mmcacert string
- mmprefix string
- mmdestprefix string
- mmnodestprefix bool
- )
- // NewMakeMirrorCommand returns the cobra command for "makeMirror".
- func NewMakeMirrorCommand() *cobra.Command {
- c := &cobra.Command{
- Use: "make-mirror [options] <destination>",
- Short: "Makes a mirror at the destination etcd cluster",
- Run: makeMirrorCommandFunc,
- }
- c.Flags().StringVar(&mmprefix, "prefix", "", "Key-value prefix to mirror")
- c.Flags().StringVar(&mmdestprefix, "dest-prefix", "", "destination prefix to mirror a prefix to a different prefix in the destination cluster")
- c.Flags().BoolVar(&mmnodestprefix, "no-dest-prefix", false, "mirror key-values to the root of the destination cluster")
- c.Flags().StringVar(&mmcert, "dest-cert", "", "Identify secure client using this TLS certificate file for the destination cluster")
- c.Flags().StringVar(&mmkey, "dest-key", "", "Identify secure client using this TLS key file")
- c.Flags().StringVar(&mmcacert, "dest-cacert", "", "Verify certificates of TLS enabled secure servers using this CA bundle")
- // TODO: secure by default when etcd enables secure gRPC by default.
- c.Flags().BoolVar(&mminsecureTr, "dest-insecure-transport", true, "Disable transport security for client connections")
- return c
- }
- func makeMirrorCommandFunc(cmd *cobra.Command, args []string) {
- if len(args) != 1 {
- ExitWithError(ExitBadArgs, errors.New("make-mirror takes one destination argument."))
- }
- dialTimeout := dialTimeoutFromCmd(cmd)
- keepAliveTime := keepAliveTimeFromCmd(cmd)
- keepAliveTimeout := keepAliveTimeoutFromCmd(cmd)
- sec := &secureCfg{
- cert: mmcert,
- key: mmkey,
- cacert: mmcacert,
- insecureTransport: mminsecureTr,
- }
- cc := &clientConfig{
- endpoints: []string{args[0]},
- dialTimeout: dialTimeout,
- keepAliveTime: keepAliveTime,
- keepAliveTimeout: keepAliveTimeout,
- scfg: sec,
- acfg: nil,
- }
- dc := cc.mustClient()
- c := mustClientFromCmd(cmd)
- err := makeMirror(context.TODO(), c, dc)
- ExitWithError(ExitError, err)
- }
- func makeMirror(ctx context.Context, c *clientv3.Client, dc *clientv3.Client) error {
- total := int64(0)
- go func() {
- for {
- time.Sleep(30 * time.Second)
- fmt.Println(atomic.LoadInt64(&total))
- }
- }()
- s := mirror.NewSyncer(c, mmprefix, 0)
- rc, errc := s.SyncBase(ctx)
- // if destination prefix is specified and remove destination prefix is true return error
- if mmnodestprefix && len(mmdestprefix) > 0 {
- ExitWithError(ExitBadArgs, fmt.Errorf("`--dest-prefix` and `--no-dest-prefix` cannot be set at the same time, choose one."))
- }
- // if remove destination prefix is false and destination prefix is empty set the value of destination prefix same as prefix
- if !mmnodestprefix && len(mmdestprefix) == 0 {
- mmdestprefix = mmprefix
- }
- for r := range rc {
- for _, kv := range r.Kvs {
- _, err := dc.Put(ctx, modifyPrefix(string(kv.Key)), string(kv.Value))
- if err != nil {
- return err
- }
- atomic.AddInt64(&total, 1)
- }
- }
- err := <-errc
- if err != nil {
- return err
- }
- wc := s.SyncUpdates(ctx)
- for wr := range wc {
- if wr.CompactRevision != 0 {
- return rpctypes.ErrCompacted
- }
- var lastRev int64
- ops := []clientv3.Op{}
- for _, ev := range wr.Events {
- nextRev := ev.Kv.ModRevision
- if lastRev != 0 && nextRev > lastRev {
- _, err := dc.Txn(ctx).Then(ops...).Commit()
- if err != nil {
- return err
- }
- ops = []clientv3.Op{}
- }
- lastRev = nextRev
- switch ev.Type {
- case mvccpb.PUT:
- ops = append(ops, clientv3.OpPut(modifyPrefix(string(ev.Kv.Key)), string(ev.Kv.Value)))
- atomic.AddInt64(&total, 1)
- case mvccpb.DELETE:
- ops = append(ops, clientv3.OpDelete(modifyPrefix(string(ev.Kv.Key))))
- atomic.AddInt64(&total, 1)
- default:
- panic("unexpected event type")
- }
- }
- if len(ops) != 0 {
- _, err := dc.Txn(ctx).Then(ops...).Commit()
- if err != nil {
- return err
- }
- }
- }
- return nil
- }
- func modifyPrefix(key string) string {
- return strings.Replace(key, mmprefix, mmdestprefix, 1)
- }
|