Build and launch Polaris using the Azure Startup Script at the location provided in the command below. This script will start an Azure Database for PostgreSQL - Flexible Server instance, which will be used as the backend Postgres instance holding all Polaris data. Additionally, Polaris will be bootstrapped to use this database and Docker containers will be spun up for Spark SQL and Trino.
The requirements to run the script below are:
az account show to ensure that you are logged in prior to running this script.export ASSETS_PATH=$(pwd)/getting-started/assets/ export CLIENT_ID=root export CLIENT_SECRET=s3cr3t ./getting-started/assets/cloud_providers/deploy-azure.sh
Congrats, you now have a running instance of Polaris! For further information regarding how to use Polaris, check out the [Creating a Catalog]({{% ref “../../creating-a-catalog” %}}) and [Using Polaris]({{% relref “../../using-polaris” %}}) pages.
To shut down the Polaris server, run the following commands:
export ASSETS_PATH=$(pwd)/getting-started/assets/ docker compose -p polaris -f getting-started/eclipselink/docker-compose.yml down
To deploy Polaris in a production setting, please review further recommendations at the [Configuring Polaris for Production]({{% relref “../../../configuring-polaris-for-production” %}}) page.