Hello, what I am doing wrong with inhereting? This...
# troubleshooting
i
Hello, what I am doing wrong with inhereting? This is part of my meltano.yml
loaders:
- name: target-bigquery
variant: adswerve
pip_url: git+<https://github.com/adswerve/target-bigquery.git>
config:
project_id: my_project
location: eu
credentials_path: client_secrets_bq.json
dataset_id: raw
hard_delete: true
batch_wait_limit_seconds: 600
batch_size_rows: 100000
- name: target-bigquery--snowlfake
inherit_from: target-bigquery
config:
replication_method: truncate
And when I’m doing
meltano invoke target-bigquery--snowflake
I got
Plugin 'target-bigquery--snowflake' is not known to Meltano
p
why are you invoking snowflake when you are actually loading in bigquery?
i
I invoke target-bigquery--snowflake which is target-bigquery with differnt config
I need full table sync from snowflake, that’s why I use inhereting
e
I see a typo there:
snowlfake
i
damn, thanks a lot
e
Was that it?
i
yes, wish I could fix stupidity