What is The Rate Limiting of Webhooks?

I have a webhook defined on a model in my app with the receiver specified as a CloudCode task. It is not configured for single instance execution. What is the maximum rate that these tasks will be scheduled at if I e.g. bulk create objects in this model?

Queuing is super fast, so queuing rate roughly equals the insert rate. But it’s important to remember that each task still need to be executed, so be careful not to saturate your queues with inserts, starving out other tasks that need to happen (including scheduled tasks).