david_tout
07/27/2021, 5:30 AMdavid_tout
07/27/2021, 7:42 AMtransform/
folder.david_tout
07/27/2021, 7:44 AMtap_A -> target_postgres
and there is a dbt-tap-a
custom transform
I also have tap_B -> target_postgres
(on a different schedule) and a corresponding dbt-tap-b
custom transform.
After both pipelines, I want to run a custom merge step, but I'm not sure how to get Meltano/DBT to see ALL my models, and not just the ones from say dbt-tap-a
david_tout
07/27/2021, 9:02 AMdbt | Running with dbt=0.19.1
dbt | [WARNING]: Configuration paths exist in your dbt_project.yml file which do not apply to any resources.
dbt | There are 1 unused configuration paths:
dbt | - models.my_meltano_project.ods
dbt |
dbt | Found 21 models, 0 tests, 0 snapshots, 0 analyses, 326 macros, 0 operations, 0 seed files, 0 sources, 0 exposures
dbt | The selector '' does not match any nodes and will be ignored
dbt | The selector 'my_meltano_project' does not match any nodes and will be ignored
david_tout
07/27/2021, 9:18 AMdbt_project.yml
name: my_meltano_project
version: 0.0.1
profile: meltano
config-version: 2
source-paths:
- sources
analysis-paths:
- analysis
test-paths:
- tests
data-paths:
- data
macro-paths:
- macros
snapshot-paths:
- snapshots
clean-targets:
- ../.meltano/transformers/dbt/target
- dbt_modules
- logs
target-path: ../.meltano/transformers/dbt/target
modules-path: dbt_modules
log-path: logs
models:
my_meltano_project:
ods:
+schema: ods
materialized: merge
david_tout
07/27/2021, 9:19 AMpackages.yml
packages:
- local: dbt-tap-a
- local: dbt-tap-b
david_tout
07/27/2021, 9:20 AMtransform/
dbt-tap-a/ # git submodule
dbt-tap-b/ # git submodule
models/
ods/
files.sql
files.sql
files.sql
edward_ryan
07/29/2021, 7:38 PM