我最近安装了 flower 0.8.4,我在 Digital Ocean 中创建了一个快照,然后使用这个快照启动了一个新服务器。现在花还在显示老 worker 的名字。如何在保留现有工作人员信息的同时删除此工作人员。

celery 开始:

worker -n celeryd@%h -f /usr/local/src/imbue/application/imbue/log/celeryd.log --loglevel=DEBUG --autoscale=50,10

花:
/usr/bin/python /usr/local/bin/flower --basic_auth=root:password --port=8082 --broker=amqp://user:password@rabbitmq:5672// --persistent=True --db=/usr/local/src/imbue/application/imbue/log/flower.db

python -  celery 花仪表板移除 worker-LMLPHP

最佳答案

新选项 purge_offline_workers ( --purge_offline_workers/FLOWER_PURGE_OFFLINE_WORKERS ) 最近已添加到花中。此选项从花卉​​仪表板中删除离线工作人员。

更多信息请引用 https://github.com/mher/flower/pull/852https://github.com/mher/flower/issues/604

此外,最新版本的mher/flower在仪表板的右上角有一个搜索框。通过在搜索框中输入 online 一词,您可以过滤掉所有离线工作人员。

关于python - celery 花仪表板移除 worker ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36685658/

10-12 19:33