this post was submitted on 12 Jun 2023
499 points (100.0% liked)

Selfhosted

573 readers
1 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Resources:

> Any issues on the community? Report it using the report flag.

> Questions? DM the mods!

founded 1 year ago
MODERATORS
 

A simple question to this community, what are you self-hosting? It's probably fun to hear from each-other what services we are running.

Please mention at least the service (e.g. e-mail) and the software (e.g. postfix). Extra bonus points for also mentioning the OS and/or hardware (e.g. Linux Distribution, raspberry pi, etc) you are running on.

you are viewing a single comment's thread
view the rest of the comments
[–] mykalcodes@lemmy.ca 1 points 1 year ago* (last edited 1 year ago)

I run a web-dev consulting company on the side and I have a few apps that use Celery queues. The main reason you'd want to use celery is to handle more intensive tasks asynchronously in the background.

Some example from my apps:

  • user requests a report: celery task is enqueued to generate the report as a PDF/CSV and email it to them
  • admin adds a new user: celery task is enqueued to send an invite email out to the user, as well as some onboarding emails
  • user requests to modify a large amount of items: multiple tasks are enqueued to update the items in batches of x amount.