Skip to content

Commit ffbb669

Browse files
authored
Merge pull request #57 from DataRecce/docs-DRC-2232
docs: DRC-2232 Update connect-to-warehouse.md
2 parents 5424c18 + ac15001 commit ffbb669

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

docs/5-data-diffing/connect-to-warehouse.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ If you use Recce Cloud, here are the warehouse connection settings. We currently
1111
- [Snowflake](#snowflake)
1212
- [Databricks](#databricks)
1313
- [BigQuery](#bigquery)
14+
- [Redshift](#redshift)
1415

1516
Others are coming in future releases
1617

@@ -29,16 +30,16 @@ We support two authentication methods for Snowflake:
2930
| Field | Description | Examples |
3031
| ----------- | ----------------------------------------- | ------------------------ |
3132
| `account` | The Snowflake account to connect to | `xxxxxx.us-central1.gcp` |
32-
| `database` | The default database to connect to | `MYDB` |
33+
| `database` | The default database to connect to | `MY_DB` |
3334
| `schema` | The default schema to connect to | `PUBLIC` |
3435
| `warehouse` | The warehouse to use when running queries | `WH_LOAD` |
3536

3637
#### User & Password Authentication
3738

3839
| Field | Description | Examples |
3940
| ---------- | ------------------------- | -------- |
40-
| `user` | The user to log in as | `MYUSER` |
41-
| `password` | The password for the user | `MYPASS` |
41+
| `user` | The user to log in as | `MY_USER` |
42+
| `password` | The password for the user | `MY_PASS` |
4243

4344
#### Key Pair Authentication
4445

@@ -75,3 +76,19 @@ For more information on setting up key pair authentication, refer to [Snowflake'
7576
| `project` | The GCP project to connect to | `GCP_PROJECT_ID` |
7677
| `dataset` | The default BigQuery dataset to connect to | `DBT_DATASET_NAME` |
7778
| `keyfile_json` | The [keyfile](https://docs.getdbt.com/guides/bigquery?step=7#generate-bigquery-credentials) generated from your GCP service account to connect to BigQuery | `keyfile_json: type: xxx project_id: xxx private_key_id: xxx ...` |
79+
80+
81+
### Redshift
82+
83+
!!!info "Important"
84+
We currently support Database (Password-based authentication) only. More details [here](https://docs.getdbt.com/docs/core/connect-data-platform/redshift-setup#authentication-parameters).
85+
86+
| Field | Description | Examples |
87+
| ----------- | --------------------------------------------------------------------------------------------- | ----------------------------- |
88+
| `host` | Host of your cluster | `hostname.region.redshift.amazonaws.com` |
89+
| `user` | Account username to log into your cluster | `MY_USER` |
90+
| `password` | Password for authentication | `MY_PASS` |
91+
| `dbname` | The default database to connect to | `MY_DB` |
92+
| `schema` | The default schema to connect to | `MY_SCHEMA` |
93+
| `port` | Port for your Redshift environment | `5439`|
94+

0 commit comments

Comments
 (0)