forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
shard.go
126 lines (110 loc) · 3.43 KB
/
shard.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
125
126
// Copyright 2013, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package zktopo
import (
"encoding/json"
"fmt"
"path"
"sort"
"github.com/youtube/vitess/go/vt/topo"
"github.com/youtube/vitess/go/zk"
"golang.org/x/net/context"
"launchpad.net/gozk/zookeeper"
topodatapb "github.com/youtube/vitess/go/vt/proto/topodata"
)
/*
This file contains the shard management code for zktopo.Server
*/
// CreateShard is part of the topo.Server interface
func (zkts *Server) CreateShard(ctx context.Context, keyspace, shard string, value *topodatapb.Shard) error {
shardPath := path.Join(GlobalKeyspacesPath, keyspace, "shards", shard)
pathList := []string{
shardPath,
path.Join(shardPath, "action"),
path.Join(shardPath, "actionlog"),
}
data, err := json.MarshalIndent(value, "", " ")
if err != nil {
return err
}
alreadyExists := false
for i, zkPath := range pathList {
c := ""
if i == 0 {
c = string(data)
}
_, err := zk.CreateRecursive(zkts.zconn, zkPath, c, 0, zookeeper.WorldACL(zookeeper.PERM_ALL))
if err != nil {
if zookeeper.IsError(err, zookeeper.ZNODEEXISTS) {
alreadyExists = true
} else {
return convertError(err)
}
}
}
if alreadyExists {
return topo.ErrNodeExists
}
return nil
}
// UpdateShard is part of the topo.Server interface
func (zkts *Server) UpdateShard(ctx context.Context, keyspace, shard string, value *topodatapb.Shard, existingVersion int64) (int64, error) {
shardPath := path.Join(GlobalKeyspacesPath, keyspace, "shards", shard)
data, err := json.MarshalIndent(value, "", " ")
if err != nil {
return -1, err
}
stat, err := zkts.zconn.Set(shardPath, string(data), int(existingVersion))
if err != nil {
return -1, convertError(err)
}
return int64(stat.Version()), nil
}
// ValidateShard is part of the topo.Server interface
func (zkts *Server) ValidateShard(ctx context.Context, keyspace, shard string) error {
shardPath := path.Join(GlobalKeyspacesPath, keyspace, "shards", shard)
zkPaths := []string{
path.Join(shardPath, "action"),
path.Join(shardPath, "actionlog"),
}
for _, zkPath := range zkPaths {
_, _, err := zkts.zconn.Get(zkPath)
if err != nil {
return convertError(err)
}
}
return nil
}
// GetShard is part of the topo.Server interface
func (zkts *Server) GetShard(ctx context.Context, keyspace, shard string) (*topodatapb.Shard, int64, error) {
shardPath := path.Join(GlobalKeyspacesPath, keyspace, "shards", shard)
data, stat, err := zkts.zconn.Get(shardPath)
if err != nil {
return nil, 0, convertError(err)
}
s := &topodatapb.Shard{}
if err = json.Unmarshal([]byte(data), s); err != nil {
return nil, 0, fmt.Errorf("bad shard data %v", err)
}
return s, int64(stat.Version()), nil
}
// GetShardNames is part of the topo.Server interface
func (zkts *Server) GetShardNames(ctx context.Context, keyspace string) ([]string, error) {
shardsPath := path.Join(GlobalKeyspacesPath, keyspace, "shards")
children, _, err := zkts.zconn.Children(shardsPath)
if err != nil {
return nil, convertError(err)
}
sort.Strings(children)
return children, nil
}
// DeleteShard is part of the topo.Server interface
func (zkts *Server) DeleteShard(ctx context.Context, keyspace, shard string) error {
shardPath := path.Join(GlobalKeyspacesPath, keyspace, "shards", shard)
err := zk.DeleteRecursive(zkts.zconn, shardPath, -1)
if err != nil {
return convertError(err)
}
return nil
}