EventBridge to Lambda concurrency limits for WEM adherence

Hey folks,

Our EventBridge bus is firing routing.queue.member.adherence events faster than our Lambda can handle. We’re hitting the 1000 concurrent execution limit and dropping adherence updates.

Here’s the payload structure we’re receiving:

{
 "detail": {
 "routing": {
 "member": {
 "state": "ONLINE",
 "skill": "sales"
 }
 }
 }
}

The Lambda just parses this and pushes to our WFM DB. Is there a way to buffer these events before they hit the function? We can’t afford to lose adherence data.