Skip to content

Commit

Permalink
Clarify the vm sku command for Azure (#1108)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy-Hay authored Dec 20, 2024
1 parent 8035f87 commit 225a332
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,18 @@ You must check that the following infrastructure is available in the subscriptio
Snowplow requires the below instances and databases. We have provided the Azure CLI commands that can be used to check their availability. Please note that they are required in all availability zones in the region for redundancy.
Instances DSv5 (preferred), DSv4 and DSv3 series:
Instances D4s_v5 (preferred), or D4s_v4 series:
`az vm list-skus --location <REGION> --size Standard_D4s --all --output table`
```bash
az vm list-skus --location <REGION> --size Standard_D4s_v5 --all --output table
az vm list-skus --location <REGION> --size Standard_D4s_v4 --all --output table
```

Database B_Standard_B2s:

`az vm list-skus --location <REGION> --size Standard_B2s --all --output table`
```bash
az vm list-skus --location <REGION> --size Standard_B2s --all --output table
```

Please note that the above is for a minimal deployment. If you will be sending over one billion events per month through the pipeline, please speak to us for advice on what instance sizes are recommended.

Expand Down

0 comments on commit 225a332

Please sign in to comment.