Questions tagged [flower]

Flower is a real-time web based monitor and administration tool for Celery.

From Celery documentation:

Flower is a real-time web based monitor and administration tool for Celery. Being the recommended monitor for Celery, it obsoletes the Django-Admin monitor, celerymon and the ncurses based monitor.

Flower is pronounced like “flow”, but you can also use the botanical version if you prefer.

Features Real-time monitoring using Celery Events Remote Control HTTP API

203 questions
2
votes
0 answers

Celery Flower monitor on remote queues: can't get it to see the queue

There are three instances, each of which is running a Django application with a celery queue on a redis broker and backend. On a fourth instance, we are trying to set up a Flower monitor to keep tabs on these first three instances. There should be a…
rschwieb
  • 746
  • 2
  • 16
  • 41
2
votes
0 answers

--url_prefix not supported anymore, so Flower can only run on root now?

Although using --url_prefix parameter does not give error when running Flower, but it doesn't work anymore. Also deprecated is written on this parameter in the comments in latest source code. So does there exist an alternative to this parameter or…
Muhammad Tahir
  • 5,006
  • 1
  • 19
  • 36
2
votes
1 answer

Flower UI does not show celery workers and Tasks

I have installed flower for my django app using pip install flower. I start it using the command ./manage.py celery flower --port=5555. I get the following output after that. [I 150324 16:40:47 command:106] Visit me at http://localhost:5555 [I…
user2890683
  • 403
  • 2
  • 6
  • 18
2
votes
2 answers

"Unknown task" error in Celery Flower when posting a new task

I'm running celery 3.1.11 and flower 0.6.0 . I have a celery application configured as such; # myapp.tasks.celery.py from __future__ import absolute_import from celery import Celery class Config(object): BROKER_URL = 'amqp://' …
Balthazar Rouberol
  • 6,822
  • 2
  • 35
  • 41
1
vote
0 answers

Strange connection issue with Redis/Celery/Django/Kombu. Unable to use celery tasks

I have setup a celery task which connects to the Sendgrid API to update the contacts. However when the Celery and Celery Flower are running I cannot send tasks and it just repetitively sends error messages related to Kombu connecting. Here is a…
1
vote
1 answer

Connect celery-flower and prometheus in separate docker-compose files

I want to connect celery-flower and prometheus. I work following this instruction - https://github.com/mher/flower/blob/master/docs/prometheus-integration.rst I have 2 docker-compose.yml. app/docker-compose.yml celery-flower: ... …
unknown
  • 252
  • 3
  • 12
  • 37
1
vote
1 answer

Center the flower using turtle

I want to draw a flower with turtle. Although I am facing problem in centering the flower (0,0) should be flower's center or where turtle initially is spawned. How can I center it? import turtle import math turtle.speed(-1) def Flower(): global…
1
vote
0 answers

How to build a federated system with CSV dataset with SparkNL library?

I am very interested in federated systems and i was trying one of the pre trained multilingual models such as this notebook Multi_Lingual_Training_and_models. I was looking for any tutorials using TFF or Flower frameworks that handle csv…
1
vote
1 answer

how to control flower animation?

let angle = 0 let mic; let fft; function setup() { createCanvas(400, 400); mic = new p5.AudioIn(); //AUDIO SETTING mic.start(); fft = new p5.FFT(); fft.setInput(mic); } function draw() { background(220); petals(); …
rose
  • 49
  • 6
1
vote
0 answers

How to reduce/specify number of connections in celery flower?

I am running an app on a limited service host, where my Redis server has a maximum of 50 connections. I have configured my web app to be using a consistent 20 Redis connections. However, if I launch Flower to inspect the Redis, my connections jump…
Dan K
  • 95
  • 5
1
vote
2 answers

How to delete celery task logs in flower?

I want to be able to delete tasks in the flower successful/failed tasks... so my idea is to have a scheduled celery beat to delete tasks older than X amount of hours. Anyone knows how to achieve this, where are the tasks stored... etc ? Goal: Set a…
Omar
  • 8,374
  • 8
  • 39
  • 50
1
vote
1 answer

Rabbitmq not showing messages in django

I'm reading Django 3 by example book and in Chapter 7 of the book we use rabbitmq,celery and flower. I configed rabbitmq,celery and flower but there is a few problems my task is a email that it sends after a order is created and the task is executed…
Matin Najafi
  • 95
  • 2
  • 12
1
vote
1 answer

How Flower determines Celery workers?

Celery workers are being ran like this: celery -A backend worker --broker=$REDIS_URL Flower: celery -A backend flower --broker=$REDIS_URL When one run another worker Flower determines it. But how? Is there information stored about workers in Redis…
1
vote
1 answer

Celery/redis tasks don't always complete - not sure why or how to fit it

I am running celery v 4.0.3/redis v 4.09 in a django v 3.0.1 application (Python v 3.6.9). I am also using face_recognition in a celery task find_faces to find faces in the images I have uploaded to the application, among other image processing…
user1045680
  • 815
  • 2
  • 9
  • 19
1
vote
1 answer

Celery prefetched tasks stuck behind other tasks

I am running into an issue on an ECS cluster including multiple Celery workers when the cluster requires up-scaling. Some background: I have a task which is running potentially for a few hours. Celery workers on an ECS cluster are currently scaled…
thijsvdp
  • 404
  • 3
  • 16