ABAbu Bakkar Siddiqueinsolodevabu.hashnode.dev·Aug 4 · 6 min readHow Batching Increased My Throughput from 342 req/s to 1,259 req/sWhile building the webhook delivery system, my API could only handle around 350 requests per second. The architecture looked fine, Redis wasn't the bottleneck and the workers were running normally. Af00
ABAbu Bakkar Siddiqueinsolodevabu.hashnode.dev·Jul 26 · 18 min readDesigning a Multi-Tenant Webhook Delivery System handling over 1000+ req/secFirst of all what is a "webhook" and what is a "webhook delivery" system? So a webhook is a way for one application to notify another application when an event occurs. Instead of repeatedly asking, "H00