Signed-off-by: Rafael Chacon <rafael@slack-corp.com>
This commit is contained in:
Rafael Chacon 2019-02-16 14:22:31 -08:00
Родитель 3478e97670
Коммит f4cd023d1d
2 изменённых файлов: 9 добавлений и 34 удалений

Просмотреть файл

@ -18,7 +18,6 @@ package topotools
import (
"fmt"
"reflect"
"sync"
"golang.org/x/net/context"
@ -71,46 +70,22 @@ func RebuildKeyspaceLocked(ctx context.Context, log logutil.Logger, ts *topo.Ser
return err
}
// This is safe to rebuild as long there are not srvKeyspaces with tablet controls set.
// TODO: Add this validation.
// Build the list of cells to work on: we get the union
// of all the Cells of all the Shards, limited to the provided cells.
//
// srvKeyspaceMap is a map:
// key: cell
// value: topo.SrvKeyspace object being built
// We only build this in two scenarios:
// - The object does not exist.
// - ServedFrom changed.
srvKeyspaceMap := make(map[string]*topodatapb.SrvKeyspace)
for _, cell := range cells {
srvKeyspace, err := ts.GetSrvKeyspace(ctx, cell, keyspace)
switch {
case err == nil:
if !reflect.DeepEqual(srvKeyspace.ServedFrom, ki.ComputeCellServedFrom(cell)) {
srvKeyspaceMap[cell] = &topodatapb.SrvKeyspace{
ShardingColumnName: ki.ShardingColumnName,
ShardingColumnType: ki.ShardingColumnType,
ServedFrom: ki.ComputeCellServedFrom(cell),
}
}
if ki.ShardingColumnType != topodatapb.KeyspaceIdType_UNSET {
srvKeyspaceMap[cell] = &topodatapb.SrvKeyspace{
ShardingColumnName: ki.ShardingColumnName,
ShardingColumnType: ki.ShardingColumnType,
ServedFrom: ki.ComputeCellServedFrom(cell),
}
}
case topo.IsErrType(err, topo.NoNode):
srvKeyspaceMap[cell] = &topodatapb.SrvKeyspace{
ShardingColumnName: ki.ShardingColumnName,
ShardingColumnType: ki.ShardingColumnType,
ServedFrom: ki.ComputeCellServedFrom(cell),
}
default:
// Couldn't get srvKeyspace, not
log.Warningf("Couldn't get srvKeyspace for cell %v, skip rebuilding", cell)
srvKeyspaceMap[cell] = &topodatapb.SrvKeyspace{
ShardingColumnName: ki.ShardingColumnName,
ShardingColumnType: ki.ShardingColumnType,
ServedFrom: ki.ComputeCellServedFrom(cell),
}
}
servedTypes := []topodatapb.TabletType{topodatapb.TabletType_MASTER, topodatapb.TabletType_REPLICA, topodatapb.TabletType_RDONLY}

Просмотреть файл

@ -151,7 +151,7 @@ class TestCustomSharding(unittest.TestCase):
self._check_shards_count_in_srv_keyspace(1)
s = utils.run_vtctl_json(['GetShard', 'test_keyspace/0'])
self.assertEqual(len(s['served_types']), 3)
self.assertEqual(s['is_master_serving'], True)
# create a table on shard 0
sql = '''create table data(
@ -191,7 +191,7 @@ primary key (id)
t.wait_for_vttablet_state('NOT_SERVING')
s = utils.run_vtctl_json(['GetShard', 'test_keyspace/1'])
self.assertEqual(len(s['served_types']), 3)
self.assertEqual(s['is_master_serving'], True)
utils.run_vtctl(['InitShardMaster', '-force', 'test_keyspace/1',
shard_1_master.tablet_alias], auto_log=True)