-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from brunomurino/dbt-issue-2533
Added sample_profiles.yml so that adapter works with new --adapter option of dbt init
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
default: | ||
outputs: | ||
|
||
# Use this if connecting to a hosted spark (e.g. Databricks) | ||
dev: | ||
type: spark | ||
method: http | ||
schema: [dev_schema] | ||
host: [host] | ||
organization: [organization id] # Azure Databricks ONLY | ||
port: [port] | ||
token: [token] | ||
cluster: [cluster id] | ||
|
||
# Use this if connecting to Dockerized spark | ||
prod: | ||
type: spark | ||
method: thrift | ||
schema: [dev_schema] | ||
host: [host] | ||
port: [port] | ||
user: [prod_user] | ||
|
||
target: dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters