iomete Profile
Setup profile to connect iomete DBT adapter
Installation and Distribution
The easiest way to install dbt-iomete is to use pip
:
pip install dbt-iomete
Alternatively, you can install the package from GitHub with:
pip install git+https://github.com/iomete/dbt-iomete.git
Set up a iomete Target
iomete targets should be set up using the following configuration in your profiles.yml
file.
iomete:
target: dev
outputs:
dev:
type: iomete
cluster: cluster_name
host: dwh-<account_number>.iomete.com
port: 443
schema: database_name
user: iomete_user_name
password: iomete_user_password
Description of Profile Fields
Field | Description | Required | Example |
---|---|---|---|
type | The specific adapter to use | Required |
|
cluster | The cluster to connect | Required |
|
host |
| Required |
|
port | The port to use. | Required |
|
schema | Specify the schema (database) to build models into. | Required |
|
user | The iomete username to use to connect to the server. | Required |
|
password | The iomete user password to use to connect to the server. | Required |
|
Updated 2 months ago
Did this page help you?