Can I run my BullMQ workers as a separate app?

im using a monorepo setup with 3 different apps/services

  • web — nextjs frontend
  • webhooks — hono backend that fires jobs into bullmq queues
  • workers — bullmq workers code that is run separately

my concern is if i run my workers as a separate app on fly, is it possible that the app will spin down if inactive? if yes is it fine for the event driven architecture im aiming for? if not will it incur huge costs for me bcs the workers will run persistently ?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.