Ask HN: How would you build a website that runs long background jobs?
https://news.ycombinator.com/item?id=17568894I am building a simple website whereby the user uploads data and the backend kicks off a long process (data computation and analytics)? My preliminary approach is to use Python Flask with Celery and RabbitMQ for job execution. Is this a decent approach? Can anyone else recommend alternative/better approaches?