-
-
Notifications
You must be signed in to change notification settings - Fork 301
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
Question: how to show the running task on the django-admin with redis as broker #270
Comments
@karimone I'm not a 100% I understand what you are looking for. From the screenshots it seems you can
I'll try to explain the 3 points.
@Koed00 created a nice Redis broker in Django-Q that already supports a few features for you (that you can also use yourself) |
I think I explained my self very badly. |
Reading the docs, I see we have 2 signals available. The interesting one is The problem is the end of the task. The async use the In other words, I would like to get the same feature you get using the django orm as a broker with the Queued Task admin page. At the moment I could use just the django orm, but I'm not really aware about the downsize on using it instead of redis |
@karimone you can use the django orm without any problems. (using it in production myself) You can easily create a record of the current task with the Lines 11 to 26 in 07cc06d
|
At the end I decided to use the django orm and everything it's good and fine :-) Thank you |
Hello, I'm not an expert on redis, but I would like to know how to get a sense of what is actually on process on redis.
I had a look at django-redisboard but I have no idea how to read the information on redis to get the current running tasks situation.
I have already a custom page in the django-admin to show some informations about the app, I can easily add some infos about the running tasks, but I don't know how to get those data.
Do you have any example code to get what I need from redis using the python client?
Thank you!
The text was updated successfully, but these errors were encountered: