Region Selections with the SkySQL previous release DBaaS API
This page is part of MariaDB's Documentation.
The parent of this page is: Launch-Time Selections for the SkySQL previous release DBaaS API
Topics on this page:
Overview
This reference page details how to select regions with the SkySQL previous release DBaaS API for the SkySQL previous release.
SkySQL previous release is available in regions worldwide on Amazon AWS and Google GCP.
Select a Region
A region is selected during service launch. When using the REST API, select a region by calling the the /services
API endpoint with the size
attribute set.
For example, prepare a request body containing the desired service options in a file called request-service.json
:
$ cat > request-service.json <<EOF
{
"name": "doc-test-tx-single",
"provider": "AWS",
"region": "us-east-2",
"release_version": "MariaDB Enterprise Server 10.6.4-1",
"replicas": "0",
"size": "Sky-2x8",
"tier": "Foundation",
"topology": "Single Node Transactions",
"tx_storage": "100",
"volume_iops": "100"
}
Then use curl
to call the /services
API endpoint to create (launch) a new database service and save the response to the response-service.json
file:
$ curl --location --request POST \
--header 'Authorization: Bearer SKYSQL_BEARER_TOKEN' \
--header 'Content-type: application/json' \
--data '@request-service.json' \
api.skysql.net/services/ \
| tee response-service.json | jq .
Upon success, the command will return JSON with details about the new service.
Available Regions
Region choices are specific to cloud provider and topology.
Please contact us to request support for new regions.
AWS Regions
Region | Location |
---|---|
Tokyo, Japan | |
Seoul, South Korea | |
Jurong West, Singapore | |
Sydney, Australia | |
Montréal, Québec, Canada | |
Frankfurt, Germany | |
Stockholm, Sweden | |
Dublin, Ireland | |
London, England, UK | |
Paris, France | |
Northern Virginia, USA | |
Ohio, USA | |
Oregon, USA |
GCP Regions
Region | Location |
---|---|
Tokyo, Japan | |
Jurong West, Singapore | |
Jakarta, Indonesia | |
Sydney, Australia | |
Hamina, Finland | |
St. Ghislain, Belgium | |
London, England, UK | |
Frankfurt, Germany | |
Eemshaven, Netherlands | |
Paris, France | |
Montréal, Québec, Canada | |
Council Bluffs, Iowa, USA | |
Moncks Corner, South Carolina, USA | |
Ashburn (Loudoun County), Virginia, USA | |
The Dalles, Oregon, USA | |
Los Angeles, California, USA | |
Las Vegas, Nevada, USA |