-
Notifications
You must be signed in to change notification settings - Fork 1k
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
test: added test_keys_expiration_during_migration #4558
Conversation
2c4cd35
to
b90f3e1
Compare
tests/dragonfly/utility.py
Outdated
for i in range(0, self.batch_size): | ||
pipeline.execute_command(f"SET tmp{self.i} bar{self.i} EX {self.timeout}") | ||
await client.execute_command(f"SET tmp{self.i} bar{self.i} EX {self.timeout}") |
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.
There is a reason for using pipeline here, dont remove it... use client.pipeline(transaction=False)
Using pipeline we send commands in batch, this is much faster
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.
you wanted to avoid multi/exec
@adiholden ? 😄
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.
I did not want to avoid multi exec.
My comment here was that this code is incorrect for cluster as the multi exec in this flow has cross slots commands.
using client.pipeline(transaction=False) is not multi exec , it is just pipeline
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.
I've rebase with fix for CROSSSLOT and it works
8ac628b
to
cd89b48
Compare
added test_keys_expiration_during_migration