Region Selections with the SkySQL previous release DBaaS API

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

ap-northeast-1

Tokyo, Japan

ap-northeast-2

Seoul, South Korea

ap-southeast-1

Jurong West, Singapore

ap-southeast-2

Sydney, Australia

ca-central-1

Montréal, Québec, Canada

eu-central-1

Frankfurt, Germany

eu-north-1

Stockholm, Sweden

eu-west-1

Dublin, Ireland

eu-west-2

London, England, UK

eu-west-3

Paris, France

us-east-1

Northern Virginia, USA

us-east-2

Ohio, USA

us-west-2

Oregon, USA

GCP Regions

Region

Location

asia-northeast1

Tokyo, Japan

asia-southeast1

Jurong West, Singapore

asia-southeast2

Jakarta, Indonesia

australia-southeast1

Sydney, Australia

europe-north1

Hamina, Finland

europe-west1

St. Ghislain, Belgium

europe-west2

London, England, UK

europe-west3

Frankfurt, Germany

europe-west4

Eemshaven, Netherlands

europe-west9

Paris, France

northamerica-northeast1

Montréal, Québec, Canada

us-central1

Council Bluffs, Iowa, USA

us-east1

Moncks Corner, South Carolina, USA

us-east4

Ashburn (Loudoun County), Virginia, USA

us-west1

The Dalles, Oregon, USA

us-west2

Los Angeles, California, USA

us-west4

Las Vegas, Nevada, USA