Data Action Timeout During Weekly Schedule Publish

Context:
We are using a custom Data Action to sync agent availability with an external ERP system. The integration works fine for small batches but fails during our weekly bulk publish for the Chicago team. The Architect flow logs a 408 Request Timeout after 30 seconds when processing over 50 agents.

Question:
Does anyone know if there is a hard limit on concurrent Data Action executions per schedule publish event? We are seeing this consistently on Tuesdays.

Depends on your setup, but generally the data_action timeout is fixed at 30 seconds. To handle bulk syncs, offload the logic to an async web service. Use a queue pattern where the Data Action pushes agent IDs to an external endpoint, then process them in batches of 10. This prevents the 408 Request Timeout during large schedule publishes.