|
|
|
|
|
by aleksiy123
929 days ago
|
|
Ingest is definitely nice. Its design is an orchestrator/scheduler where you offload your workers as serverless functions. The only issue is for background jobs you need to design it in such way to not run in to timeouts. Which makes it slightly more complex then just having a single executable running periodically. There is also https://www.defer.run/ which run your code on their infra and don't have timeouts. But they only support node/bun at the moment. |
|
Currently, to get beyond the ~5 min limit per step, you'd need to deploy to something non-serverless like Fly.io, Render, or your own instance running Express.js or similar.