Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Adding documentation for WARM_UP_CONCURRENCY config variable on cloud #6935

Merged
merged 4 commits into from
Mar 30, 2020
Merged
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
13 changes: 13 additions & 0 deletions src/cloud/env/variables-post-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@ After you specify the pages to test and commit your changes, the _Time To First

For redirected paths, the log reports the path of the redirect target instead of the one configured in the environment variable. If you specify an invalid path, the log displays a warning message.

### `WARM_UP_CONCURRENCY`

- **Default**—_Not set_
- **Version**—Magento 2.1.4 and later

Specify the number of concurrent requests to send during cache warmup operations to reduce server load. This value limits the number of parallel connections and is useful for environment configurations where the `WARM_UP_PAGES` post-deploy variable specifies a large number of pages for cache preloading.

```yaml
stage:
post-deploy:
WARM_UP_CONCURRENCY: 4
```

### `WARM_UP_PAGES`

- **Default**— `index.php`
Expand Down