If I have a queue and attach a producer/consumer worker, how many requests am I being billed?

The details are basically a worker enqueues one message (which constitutes to one row inserted into a 'clicks' table in DB), I want to consume any messages as often as possible (like a 30 second max consistency) to write into my Supabase DB, batching is preferred if it saves $$. I want to just design this realistically where I'm not burning money if I enqueue a million messages a month, etc.
Was this page helpful?