
Security News
The Nightmare Before Deployment
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.
celery-redis-cluster
Advanced tools
A Redis Cluster backend implementation for Celery. This package extends Celery's Redis backend to work with Redis Cluster, providing better scalability and high availability through Redis Cluster's sharding and replication capabilities.
pip install celery-redis-cluster
After installation new backends are automatically registered with Celery:
redis+clusterrediss+clusterTo use the Redis Cluster backend in your Celery application:
from celery import Celery
from celery_redis_cluster_backend import install_redis_cluster_backend
app = Celery('your_app',
broker='redis://localhost:6379/0',
backend='redis+cluster://localhost:6379/0')
The backend inherits all configuration options from Celery's Redis backend, with the addition of Redis Cluster specific handling. Here's an example configuration:
app.conf.update(
result_backend='redis+cluster://localhost:6379/0',
redis_backend_use_ssl={
'ssl_cert_reqs': None,
'ssl_ca_certs': None,
'ssl_certfile': None,
'ssl_keyfile': None
},
redis_max_connections=None,
redis_socket_timeout=120.0,
redis_socket_connect_timeout=120.0,
redis_cluster_retry_on_timeout=True,
redis_cluster_max_retry_on_timeout=3,
)
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.
FAQs
A Redis Cluster backend for Celery
We found that celery-redis-cluster demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.

Research
/Security News
Impostor NuGet package Tracer.Fody.NLog typosquats Tracer.Fody and its author, using homoglyph tricks, and exfiltrates Stratis wallet JSON/passwords to a Russian IP address.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.