Stress test cold start?

I did a small stress test by sending 100 webhook requests. After each batch of 10, it feels like there’s a cold start (around 30s). Within each batch, the messages were instant. Can anyone explain why?

Hi @hari

How did you test it? It might be the testing tool you have used (1-2 minutes) cold time doesn’t sound right

it was just a python script

for i in range(n):
    payload = {
        "id": i
    }
    requests.post(url, headers=headers, data=json.dumps(payload))

Sorry my bad it was 30s, I ain’t timed properly last time :face_in_clouds: