0

With a Django web app what would be the easiest way of having a long running task run in the background but be able to provide the user with progress updates in text and percentage done/ETA?

I've looked at Celery and I couldn't see a way to do regular text updates, only a progress update with percentage.

Jamie
  • 674
  • 1
  • 10
  • 30

1 Answers1

2
  • user submits data
  • start a celery job with the data
  • the celery job posts text updates to a database
  • the django web app queries the database periodically and displays the text update to the user
scytale
  • 12,346
  • 3
  • 32
  • 46