Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/pages/get-started/api-security.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ By default, any one of these arrays can include up to 20 items, but you can chan

## Input limit for REST endpoints

<Edition name="saas" />

In Adobe Commerce as a Cloud Service, Bulk API limits are determined by the **Maximum Entities per Bulk Request** setting in the [Store Configuration](https://experienceleague.adobe.com/en/docs/commerce-admin/config/general/bulk-api).

<Edition name="paas" />

Some REST endpoints can contain a high number of elements, and developers need a way to set the limit for each endpoint. The limit for a specific REST endpoint can be set in the `webapi.xml` configuration file for synchronous requests and `webapi_async.xml` for asynchronous requests.
Expand Down
4 changes: 4 additions & 0 deletions src/pages/rest/use-rest/bulk-endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Bulk API endpoints differ from other REST endpoints in that they combine multipl

&#8203;<Edition name="saas" /> In Adobe Commerce as a Cloud Service, message queues run automatically. There is no need to manage queues or install a message broker.

<InlineAlert variant="info" slots="text"/>

In Adobe Commerce as a Cloud Service, Bulk API limits are determined by the **Maximum Entities per Bulk Request** setting in the [Store Configuration](https://experienceleague.adobe.com/en/docs/commerce-admin/config/general/bulk-api).

&#8203;<Edition name="paas" /> Cron jobs are the default mechanism for [managing message queues](https://experienceleague.adobe.com/en/docs/commerce-operations/configuration-guide/message-queues/manage-message-queues) and starting message queue [consumers](https://experienceleague.adobe.com/en/docs/commerce-operations/configuration-guide/message-queues/consumers), but you can also use external process control systems (like [Supervisor](https://supervisord.readthedocs.io/en/latest/)) to monitor process management. You can use the [`bin/magento queue:consumers:start async.operations.all`](https://experienceleague.adobe.com/docs/commerce-operations/configuration-guide/cli/start-message-queues.html) command to manually start the `async.operations.all` consumer that handles asynchronous and bulk API messages. However, manually starting consumers is not recommended because it requires you to keep your terminal session connected.

<InlineAlert variant="info" slots="text"/>
Expand Down
Loading