vincent_legendre
09/05/2022, 2:10 PMmax_run_seconds.
I may precise that I am performing the first sync for a big table, which would need a large number of runs to get completed.
My meltano config is in thread.vincent_legendre
09/05/2022, 2:15 PM- name: tap-postgres
config:
host: my-host
port: 5432
user: user
dbname: db
filter_schemas: my-schema
itersize: 1000
max_run_seconds: 30
loaders:
- name: target-bigquery
variant: adswerve
pip_url: git+<https://github.com/adswerve/target-bigquery.git@0.12.0>
config:
add_metadata_columns: true
dataset_id: meltano
location: europe-west1
replication_method: append
credentials_path: load/bigquery/creds.json
table_config: load/bigquery/target-tables-config.jsonchristoph
09/05/2022, 10:16 PMmax_run_seconds is a setting for the logical replication method.
https://github.com/transferwise/pipelinewise-tap-postgres/blob/da2fad9fd6efea96f83[…]c0d54a724f2/tap_postgres/sync_strategies/logical_replication.py
As you are doing an initial sync, meltano will call the tap in full table mode, not log-based mode.vincent_legendre
09/06/2022, 7:29 AMchristoph
09/06/2022, 8:07 AMvincent_legendre
09/06/2022, 8:46 AM