-
Notifications
You must be signed in to change notification settings - Fork 297
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
redis pipeline: brpoplpush is deprecated #1827
Comments
you could also take a look at redis streams |
Do redis streams already support atomic push+pop operations? If not, we can add them as optional broker, if consistency is not important, but not as replacement for the redis-list based approach. |
On 10.09.2021, at 15:56, Wagner ***@***.***> wrote:
Do redis streams already support atomic push+pop operations?
yes AFAIK
If not, we can add them as optional broker, if consistency is not important, but not as replacement for the redis-list based approach.
Take a look and read the docs, it's pretty amazing what it can do.
… —
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
|
I tried fixing that issue, but I've seen that redis-py had some bugs <= 4.1.2 with blmove, its fixed in the latest release redis/redis-py#1776. https://github.com/redis/redis-py/releases/tag/v4.1.2 Btw. I like their release design :D looks sooo pretty |
Fixes #1827 Signed-off-by: Sebastian Waldbauer <[email protected]>
Fixes #1827 Signed-off-by: Sebastian Waldbauer <[email protected]>
Fixes #1827 Signed-off-by: Sebastian Waldbauer <[email protected]>
Fixes #1827 Signed-off-by: Sebastian Waldbauer <[email protected]>
Fixes #1827 Signed-off-by: Sebastian Waldbauer <[email protected]>
Fixes #1827 Signed-off-by: Sebastian Waldbauer <[email protected]>
BRPOPLPUSH is deprecated in favour of BLMOVE.
The command is used here:
intelmq/intelmq/lib/pipeline.py
Lines 271 to 272 in 979af96
and mocked here:
intelmq/intelmq/lib/bot_debugger.py
Line 120 in 188609b
The text was updated successfully, but these errors were encountered: