-
Notifications
You must be signed in to change notification settings - Fork 727
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
keyspace, api2: fix the keyspace assignment patrol consistency #6397
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
6e8e2ac
Fix the keyspace assignment patrol consistency
JmPotato ab62dbd
Reduce the defer function number
JmPotato a2bf8a4
Fix patrolKeyspaceAssignmentState lock
JmPotato 2e1f8d1
Add a TODO
JmPotato 40b99b2
Merge branch 'master' into fix_keyspace_partrol
rleungx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,15 @@ package keyspace | |
|
||
import ( | ||
"context" | ||
"strconv" | ||
"time" | ||
|
||
"github.com/pingcap/errors" | ||
"github.com/pingcap/failpoint" | ||
"github.com/pingcap/kvproto/pkg/keyspacepb" | ||
"github.com/pingcap/log" | ||
"github.com/tikv/pd/pkg/id" | ||
"github.com/tikv/pd/pkg/mcs/utils" | ||
"github.com/tikv/pd/pkg/schedule" | ||
"github.com/tikv/pd/pkg/schedule/labeler" | ||
"github.com/tikv/pd/pkg/slice" | ||
|
@@ -72,7 +74,8 @@ type Manager struct { | |
ctx context.Context | ||
// config is the configurations of the manager. | ||
config Config | ||
kgm *GroupManager | ||
// kgm is the keyspace group manager of the server. | ||
kgm *GroupManager | ||
} | ||
|
||
// CreateKeyspaceRequest represents necessary arguments to create a keyspace. | ||
|
@@ -86,7 +89,9 @@ type CreateKeyspaceRequest struct { | |
} | ||
|
||
// NewKeyspaceManager creates a Manager of keyspace related data. | ||
func NewKeyspaceManager(store endpoint.KeyspaceStorage, | ||
func NewKeyspaceManager( | ||
ctx context.Context, | ||
store endpoint.KeyspaceStorage, | ||
cluster schedule.Cluster, | ||
idAllocator id.Allocator, | ||
config Config, | ||
|
@@ -97,7 +102,7 @@ func NewKeyspaceManager(store endpoint.KeyspaceStorage, | |
idAllocator: idAllocator, | ||
store: store, | ||
cluster: cluster, | ||
ctx: context.TODO(), | ||
ctx: ctx, | ||
config: config, | ||
kgm: kgm, | ||
} | ||
|
@@ -540,7 +545,18 @@ func (manager *Manager) LoadRangeKeyspace(startID uint32, limit int) ([]*keyspac | |
if startID > spaceIDMax { | ||
return nil, errors.Errorf("startID of the scan %d exceeds spaceID Max %d", startID, spaceIDMax) | ||
} | ||
return manager.store.LoadRangeKeyspace(startID, limit) | ||
var ( | ||
keyspaces []*keyspacepb.KeyspaceMeta | ||
err error | ||
) | ||
err = manager.store.RunInTxn(manager.ctx, func(txn kv.Txn) error { | ||
keyspaces, err = manager.store.LoadRangeKeyspace(txn, startID, limit) | ||
return err | ||
}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return keyspaces, nil | ||
} | ||
|
||
// allocID allocate a new keyspace id. | ||
|
@@ -555,3 +571,67 @@ func (manager *Manager) allocID() (uint32, error) { | |
} | ||
return id32, nil | ||
} | ||
|
||
// PatrolKeyspaceAssignment is used to patrol all keyspaces and assign them to the keyspace groups. | ||
func (manager *Manager) PatrolKeyspaceAssignment() error { | ||
// TODO: since the number of keyspaces might be large, we should consider to assign them in batches. | ||
return manager.store.RunInTxn(manager.ctx, func(txn kv.Txn) error { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we need to add txn in other operators? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What do you mean? |
||
defaultKeyspaceGroup, err := manager.kgm.store.LoadKeyspaceGroup(txn, utils.DefaultKeyspaceGroupID) | ||
if err != nil { | ||
return err | ||
} | ||
if defaultKeyspaceGroup == nil { | ||
return errors.Errorf("default keyspace group %d not found", utils.DefaultKeyspaceGroupID) | ||
} | ||
if defaultKeyspaceGroup.IsSplitting() { | ||
return ErrKeyspaceGroupInSplit | ||
} | ||
keyspaces, err := manager.store.LoadRangeKeyspace(txn, DefaultKeyspaceID, 0) | ||
if err != nil { | ||
return err | ||
} | ||
var ( | ||
assigned = false | ||
keyspaceIDsToUnlock = make([]uint32, 0, len(keyspaces)) | ||
) | ||
defer func() { | ||
for _, id := range keyspaceIDsToUnlock { | ||
manager.metaLock.Unlock(id) | ||
} | ||
}() | ||
for _, ks := range keyspaces { | ||
if ks == nil { | ||
continue | ||
} | ||
manager.metaLock.Lock(ks.Id) | ||
if ks.Config == nil { | ||
ks.Config = make(map[string]string, 1) | ||
} else { | ||
// If the keyspace already has a group ID, skip it. | ||
_, ok := ks.Config[TSOKeyspaceGroupIDKey] | ||
if ok { | ||
manager.metaLock.Unlock(ks.Id) | ||
continue | ||
} | ||
} | ||
// Unlock the keyspace meta lock after the whole txn. | ||
keyspaceIDsToUnlock = append(keyspaceIDsToUnlock, ks.Id) | ||
// If the keyspace doesn't have a group ID, assign it to the default keyspace group. | ||
if !slice.Contains(defaultKeyspaceGroup.Keyspaces, ks.Id) { | ||
defaultKeyspaceGroup.Keyspaces = append(defaultKeyspaceGroup.Keyspaces, ks.Id) | ||
assigned = true | ||
} | ||
ks.Config[TSOKeyspaceGroupIDKey] = strconv.FormatUint(uint64(utils.DefaultKeyspaceGroupID), 10) | ||
err = manager.store.SaveKeyspaceMeta(txn, ks) | ||
if err != nil { | ||
log.Error("[keyspace] failed to save keyspace meta during patrol", | ||
zap.Uint32("ID", ks.Id), zap.Error(err)) | ||
return err | ||
} | ||
} | ||
if assigned { | ||
return manager.kgm.store.SaveKeyspaceGroup(txn, defaultKeyspaceGroup) | ||
} | ||
return nil | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only worry is that the transaction could be too large to accepted by etcd if we have too many keyspaces. Do we need to do it in batches?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks good for me for now. We can revisit the comment above after we collect some rough data.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Based on the recent discussion, it looks like we need to process it in batch now.