forked from dagster-io/talks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dagster-io#21] fix evidence can't locate local duckdb files
export case sensitive evidence environment variables. also provided instructions in .env.example on how to configure project for local use. removed `dagster_hybrid_demo.` from schema name in FROM statement as the tables created by duckdb exist in the `main` schema, was causing error where evidence couldn't find the data sources.
- Loading branch information
Showing
7 changed files
with
22 additions
and
7 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
Empty file.
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
7 changes: 6 additions & 1 deletion
7
motherduck-dagster-hybrid-compute/reports/sources/dagster_hybrid_demo/connection.yaml
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# This file was automatically generated | ||
name: dagster_hybrid_demo | ||
type: duckdb | ||
# The following `filename` env variable is read from the .env file in the project root. | ||
options: | ||
filename: md:?motherduck_token=<replace> | ||
# For local use, use relative path from this directory, e.g. | ||
# filename: ../../../local.duckdb | ||
# | ||
# For use with motherduck cloud, use connection string, e.g. | ||
# filename: md:?motherduck_token=<replace> |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ select | |
bird_name, | ||
total_count | ||
|
||
from dagster_hybrid_demo.main.top_ducks_by_region | ||
from main.top_ducks_by_region |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ select | |
state, | ||
total_species_count | ||
|
||
from dagster_hybrid_demo.main.top_ducks_by_state | ||
from main.top_ducks_by_state |
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ select | |
region, | ||
species_count | ||
|
||
from dagster_hybrid_demo.main.top_ducks_by_year | ||
from main.top_ducks_by_year |