Skip to content
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

Merged
merged 4 commits into from
Feb 13, 2025

Conversation

BorysTheDev
Copy link
Contributor

added test_keys_expiration_during_migration

@BorysTheDev BorysTheDev requested a review from adiholden February 4, 2025 13:55
@BorysTheDev BorysTheDev force-pushed the test_keys_expiration_during_migration branch from 2c4cd35 to b90f3e1 Compare February 13, 2025 08:56
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}")
Copy link
Collaborator

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

Copy link
Contributor

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 ? 😄

Copy link
Collaborator

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

Copy link
Contributor Author

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

@BorysTheDev BorysTheDev force-pushed the test_keys_expiration_during_migration branch from 8ac628b to cd89b48 Compare February 13, 2025 13:04
@BorysTheDev BorysTheDev merged commit 7930b58 into main Feb 13, 2025
10 checks passed
@BorysTheDev BorysTheDev deleted the test_keys_expiration_during_migration branch February 13, 2025 14:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants