Overview
We support the following data warehouses to connect with, you can choose multiple connectors in a single project, please check the connectors’ document for the installation guide.
How to use
Setting up a data warehouse connector is easy, you can follow the steps below to set up a connector.
Once you install the connector package, update the
extensions
section invulcan.yaml
to include the connector package. For example:extensions:
...
pg: '@vulcan-sql/extension-driver-pg' # Add this lineCreate a new profile in
profiles.yaml
or in your profile files.- name: pg # profile name
type: pg
connection:
host: example.com
port: 5432
user: postgres
password: some-secret
database: postgresSpecify the profile name in the configuration file of APIs.
profiles:
- pg # profile nameThen, you can query the data warehouse in your APIs.