-
Notifications
You must be signed in to change notification settings - Fork 222
feat : Implement slot-based MGET batching for cluster clients #908
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
Open
SoulPancake
wants to merge
2
commits into
redis:main
Choose a base branch
from
SoulPancake:ab/improve-MGET-helper-cluster
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -50,12 +50,7 @@ func MGet(client Client, ctx context.Context, keys []string) (ret map[string]Red | |||||||
return clientMGet(client, ctx, client.B().Mget().Key(keys...).Build(), keys) | ||||||||
} | ||||||||
|
||||||||
cmds := mgetcmdsp.Get(len(keys), len(keys)) | ||||||||
defer mgetcmdsp.Put(cmds) | ||||||||
for i := range cmds.s { | ||||||||
cmds.s[i] = client.B().Get().Key(keys[i]).Build() | ||||||||
} | ||||||||
return doMultiGet(client, ctx, cmds.s, keys) | ||||||||
return clusterMGet(client, ctx, keys) | ||||||||
} | ||||||||
|
||||||||
// MSet is a helper that consults the redis directly with multiple keys by grouping keys within the same slot into MSETs or multiple SETs | ||||||||
|
@@ -139,12 +134,7 @@ func JsonMGet(client Client, ctx context.Context, keys []string, path string) (r | |||||||
return clientMGet(client, ctx, client.B().JsonMget().Key(keys...).Path(path).Build(), keys) | ||||||||
} | ||||||||
|
||||||||
cmds := mgetcmdsp.Get(len(keys), len(keys)) | ||||||||
defer mgetcmdsp.Put(cmds) | ||||||||
for i := range cmds.s { | ||||||||
cmds.s[i] = client.B().JsonGet().Key(keys[i]).Path(path).Build() | ||||||||
} | ||||||||
return doMultiGet(client, ctx, cmds.s, keys) | ||||||||
return clusterJsonMGet(client, ctx, keys, path) | ||||||||
} | ||||||||
|
||||||||
// JsonMSet is a helper that consults redis directly with multiple keys by grouping keys within the same slot into JSON.MSETs or multiple JSON.SETs | ||||||||
|
@@ -277,6 +267,66 @@ func arrayToKV(m map[string]RedisMessage, arr []RedisMessage, keys []string) map | |||||||
return m | ||||||||
} | ||||||||
|
||||||||
func clusterMGet(client Client, ctx context.Context, keys []string) (ret map[string]RedisMessage, err error) { | ||||||||
ret = make(map[string]RedisMessage, len(keys)) | ||||||||
slotCmds := intl.MGets(keys) | ||||||||
if len(slotCmds) == 0 { | ||||||||
return ret, nil | ||||||||
} | ||||||||
cmds := make([]Completed, 0, len(slotCmds)) | ||||||||
for _, cmd := range slotCmds { | ||||||||
cmds = append(cmds, cmd.Pin()) | ||||||||
} | ||||||||
resps := client.DoMulti(ctx, cmds...) | ||||||||
defer resultsp.Put(&redisresults{s: resps}) | ||||||||
for i, resp := range resps { | ||||||||
if err := resp.NonRedisError(); err != nil { | ||||||||
return nil, err | ||||||||
} | ||||||||
Comment on lines
+286
to
+288
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.
Suggested change
The below resp.ToArray should cover this already. |
||||||||
arr, err := resp.ToArray() | ||||||||
if err != nil { | ||||||||
return nil, err | ||||||||
} | ||||||||
commands := cmds[i].Commands() | ||||||||
cmdKeys := commands[1:] | ||||||||
ret = arrayToKV(ret, arr, cmdKeys) | ||||||||
} | ||||||||
for _, cmd := range cmds { | ||||||||
intl.PutCompletedForce(cmd) | ||||||||
} | ||||||||
return ret, nil | ||||||||
} | ||||||||
|
||||||||
func clusterJsonMGet(client Client, ctx context.Context, keys []string, path string) (ret map[string]RedisMessage, err error) { | ||||||||
ret = make(map[string]RedisMessage, len(keys)) | ||||||||
slotCmds := intl.JsonMGets(keys, path) | ||||||||
if len(slotCmds) == 0 { | ||||||||
return ret, nil | ||||||||
} | ||||||||
cmds := make([]Completed, 0, len(slotCmds)) | ||||||||
for _, cmd := range slotCmds { | ||||||||
cmds = append(cmds, cmd.Pin()) | ||||||||
} | ||||||||
resps := client.DoMulti(ctx, cmds...) | ||||||||
defer resultsp.Put(&redisresults{s: resps}) | ||||||||
for i, resp := range resps { | ||||||||
if err := resp.NonRedisError(); err != nil { | ||||||||
return nil, err | ||||||||
} | ||||||||
Comment on lines
+319
to
+321
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.
Suggested change
The below resp.ToArray() should cover this already. |
||||||||
arr, err := resp.ToArray() | ||||||||
if err != nil { | ||||||||
return nil, err | ||||||||
} | ||||||||
commands := cmds[i].Commands() | ||||||||
cmdKeys := commands[1 : len(commands)-1] | ||||||||
ret = arrayToKV(ret, arr, cmdKeys) | ||||||||
} | ||||||||
for _, cmd := range cmds { | ||||||||
intl.PutCompletedForce(cmd) | ||||||||
} | ||||||||
return ret, nil | ||||||||
} | ||||||||
|
||||||||
// ErrMSetNXNotSet is used in the MSetNX helper when the underlying MSETNX response is 0. | ||||||||
// Ref: https://redis.io/commands/msetnx/ | ||||||||
var ErrMSetNXNotSet = errors.New("MSETNX: no key was set") | ||||||||
|
This file contains hidden or 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.
When could this happen?