本文整理汇总了Golang中github.com/youtube/vitess/go/vt/topo.NewShardReplicationInfo函数的典型用法代码示例。如果您正苦于以下问题:Golang NewShardReplicationInfo函数的具体用法?Golang NewShardReplicationInfo怎么用?Golang NewShardReplicationInfo使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了NewShardReplicationInfo函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: UpdateShardReplicationFields
// UpdateShardReplicationFields implements topo.Server.
func (s *Server) UpdateShardReplicationFields(ctx context.Context, cell, keyspace, shard string, updateFunc func(*topodatapb.ShardReplication) error) error {
var sri *topo.ShardReplicationInfo
var version int64
var err error
for {
if sri, version, err = s.getShardReplication(cell, keyspace, shard); err != nil {
if err == topo.ErrNoNode {
// Pass an empty struct to the update func, as specified in topo.Server.
sri = topo.NewShardReplicationInfo(&topodatapb.ShardReplication{}, cell, keyspace, shard)
version = -1
} else {
return err
}
}
if err = updateFunc(sri.ShardReplication); err != nil {
return err
}
if version == -1 {
if _, err = s.createShardReplication(sri); err != topo.ErrNodeExists {
return err
}
} else {
if _, err = s.updateShardReplication(sri, version); err != topo.ErrBadVersion {
return err
}
}
}
}
开发者ID:littleyang,项目名称:vitess,代码行数:30,代码来源:replication_graph.go
示例2: GetShardReplication
// GetShardReplication is part of the topo.Server interface
func (zkts *Server) GetShardReplication(ctx context.Context, cell, keyspace, shard string) (*topo.ShardReplicationInfo, error) {
zkPath := shardReplicationPath(cell, keyspace, shard)
data, _, err := zkts.zconn.Get(zkPath)
if err != nil {
return nil, convertError(err)
}
sr := &topodatapb.ShardReplication{}
if err = json.Unmarshal([]byte(data), sr); err != nil {
return nil, fmt.Errorf("bad ShardReplication data %v", err)
}
return topo.NewShardReplicationInfo(sr, cell, keyspace, shard), nil
}
开发者ID:CowLeo,项目名称:vitess,代码行数:15,代码来源:replication_graph.go
示例3: GetShardReplication
func (zkts *Server) GetShardReplication(cell, keyspace, shard string) (*topo.ShardReplicationInfo, error) {
zkPath := shardReplicationPath(cell, keyspace, shard)
data, _, err := zkts.zconn.Get(zkPath)
if err != nil {
if zookeeper.IsError(err, zookeeper.ZNONODE) {
err = topo.ErrNoNode
}
return nil, err
}
sr := &topo.ShardReplication{}
if err = json.Unmarshal([]byte(data), sr); err != nil {
return nil, fmt.Errorf("bad ShardReplication data %v", err)
}
return topo.NewShardReplicationInfo(sr, cell, keyspace, shard), nil
}
开发者ID:CERN-Stage-3,项目名称:vitess,代码行数:17,代码来源:replication_graph.go
示例4: GetShardReplication
// GetShardReplication should return all the nodes in a shard,
// but instead we cheat for this test and just return all the
// tablets in the cell.
func (ft *fakeTopo) GetShardReplication(ctx context.Context, cell, keyspace, shard string) (*topo.ShardReplicationInfo, error) {
if ft.expectGetTabletsByCell {
return nil, fmt.Errorf("unexpected GetShardReplication")
}
ft.mu.RLock()
defer ft.mu.RUnlock()
nodes := make([]*topodatapb.ShardReplication_Node, 0, 1)
for alias, tablet := range ft.tablets {
if tablet.Alias.Cell == cell {
nodes = append(nodes, &topodatapb.ShardReplication_Node{
TabletAlias: &alias,
})
}
}
return topo.NewShardReplicationInfo(&topodatapb.ShardReplication{
Nodes: nodes,
}, cell, keyspace, shard), nil
}
开发者ID:jmptrader,项目名称:vitess,代码行数:22,代码来源:topology_watcher_test.go
示例5: getShardReplication
func (s *Server) getShardReplication(cellName, keyspace, shard string) (*topo.ShardReplicationInfo, int64, error) {
cell, err := s.getCell(cellName)
if err != nil {
return nil, -1, err
}
resp, err := cell.Get(shardReplicationFilePath(keyspace, shard), false /* sort */, false /* recursive */)
if err != nil {
return nil, -1, convertError(err)
}
if resp.Node == nil {
return nil, -1, ErrBadResponse
}
value := &topodatapb.ShardReplication{}
if err := json.Unmarshal([]byte(resp.Node.Value), value); err != nil {
return nil, -1, fmt.Errorf("bad shard replication data (%v): %q", err, resp.Node.Value)
}
return topo.NewShardReplicationInfo(value, cellName, keyspace, shard), int64(resp.Node.ModifiedIndex), nil
}
开发者ID:littleyang,项目名称:vitess,代码行数:21,代码来源:replication_graph.go
注:本文中的github.com/youtube/vitess/go/vt/topo.NewShardReplicationInfo函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论