Updated on 2023-12-15 GMT+08:00

Introduction

A batch request is a single HTTP request that contains multiple API calls nested within it. A client can send several request objects together at the same time, filled within an array, and will get a corresponding array of response objects from the server.

The server processes all requests of this batch RPC calls concurrently within the CU limit. RPC calls that exceed the CU limit continue to be processed after the previous calls are processed.

Batch requests contain different RPC calls can be complicated. They can be less reliable compared to individual API calls. Therefore, batch requests are not recommended.