如何使用 Redis sentinel 配置 Airflow Celery 执行器?
How to Configure Airflow Celery executor with redis sentinel?
Redis 哨兵设置完成。
我必须做哪些更改才能将我的 celery 后端指向 redis-sentinel?
我正在使用 redis 作为 celery executor 的代理。
您在 Celery 文档的 Configuration section of the Using Redis 页面中有一个示例。
来自该页面:
app.conf.broker_url = 'sentinel://localhost:26379;sentinel://localhost:26380;sentinel://localhost:26381'
app.conf.broker_transport_options = { 'master_name': "cluster1" }
Redis 哨兵设置完成。
我必须做哪些更改才能将我的 celery 后端指向 redis-sentinel? 我正在使用 redis 作为 celery executor 的代理。
您在 Celery 文档的 Configuration section of the Using Redis 页面中有一个示例。
来自该页面:
app.conf.broker_url = 'sentinel://localhost:26379;sentinel://localhost:26380;sentinel://localhost:26381'
app.conf.broker_transport_options = { 'master_name': "cluster1" }