forked from tikv/pd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
etcd_kv.go
124 lines (106 loc) · 3.08 KB
/
etcd_kv.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// Copyright 2016 PingCAP, 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,
// See the License for the specific language governing permissions and
// limitations under the License.
package server
import (
"context"
"path"
"time"
"github.com/coreos/etcd/clientv3"
log "github.com/pingcap/log"
"github.com/pkg/errors"
"go.uber.org/zap"
)
const (
kvRequestTimeout = time.Second * 10
kvSlowRequestTime = time.Second * 1
)
var (
errTxnFailed = errors.New("failed to commit transaction")
)
type etcdKVBase struct {
server *Server
client *clientv3.Client
rootPath string
}
func newEtcdKVBase(s *Server) *etcdKVBase {
return &etcdKVBase{
server: s,
client: s.client,
rootPath: s.rootPath,
}
}
func (kv *etcdKVBase) Load(key string) (string, error) {
key = path.Join(kv.rootPath, key)
resp, err := kvGet(kv.server.client, key)
if err != nil {
return "", err
}
if n := len(resp.Kvs); n == 0 {
return "", nil
} else if n > 1 {
return "", errors.Errorf("load more than one kvs: key %v kvs %v", key, n)
}
return string(resp.Kvs[0].Value), nil
}
func (kv *etcdKVBase) LoadRange(key, endKey string, limit int) ([]string, error) {
key = path.Join(kv.rootPath, key)
endKey = path.Join(kv.rootPath, endKey)
withRange := clientv3.WithRange(endKey)
withLimit := clientv3.WithLimit(int64(limit))
resp, err := kvGet(kv.server.client, key, withRange, withLimit)
if err != nil {
return nil, err
}
res := make([]string, 0, len(resp.Kvs))
for _, item := range resp.Kvs {
res = append(res, string(item.Value))
}
return res, nil
}
func (kv *etcdKVBase) Save(key, value string) error {
key = path.Join(kv.rootPath, key)
resp, err := kv.server.leaderTxn().Then(clientv3.OpPut(key, value)).Commit()
if err != nil {
log.Error("save to etcd meet error", zap.Error(err))
return errors.WithStack(err)
}
if !resp.Succeeded {
return errors.WithStack(errTxnFailed)
}
return nil
}
func (kv *etcdKVBase) Delete(key string) error {
key = path.Join(kv.rootPath, key)
resp, err := kv.server.leaderTxn().Then(clientv3.OpDelete(key)).Commit()
if err != nil {
log.Error("delete from etcd meet error", zap.Error(err))
return errors.WithStack(err)
}
if !resp.Succeeded {
return errors.WithStack(errTxnFailed)
}
return nil
}
func kvGet(c *clientv3.Client, key string, opts ...clientv3.OpOption) (*clientv3.GetResponse, error) {
ctx, cancel := context.WithTimeout(c.Ctx(), kvRequestTimeout)
defer cancel()
start := time.Now()
resp, err := clientv3.NewKV(c).Get(ctx, key, opts...)
if err != nil {
log.Error("load from etcd meet error", zap.Error(err))
}
if cost := time.Since(start); cost > kvSlowRequestTime {
log.Warn("kv gets too slow", zap.String("request-key", key), zap.Duration("cost", cost), zap.Error(err))
}
return resp, errors.WithStack(err)
}