|
|
|
|
|
by figassis
105 days ago
|
|
I would create a library, make some logic more generic, create a generic table (task id, taskType, workerId, etc), store task metadata as jsonb so it can be pulled and marshalled into typed data by users. Import it into your projects. Make the library work standalone. But also build a task manager service that people can deploy if they want to run it outside their code. Then offer a hosted solution that does the webhooks. I’m sure someone will want to pay for it. |
|
I usually start with something simple, then add a task table, then locking, retries, then some kind of worker process, and eventually it turns into a small job system anyway.
At some point it starts feeling like I'm rebuilding the same queue/worker setup over and over, which is why I'm wondering if this should live outside the app entirely.
Thanks, this discussion is really helpful.