elena_velte
08/16/2022, 4:43 PMmeltano run tap-postgres-sync-base target-s3-jsonl tap-postgres-sync target-redshift --full-refresh . How would I set this up to have the full-refresh applied to the second part only? Ie, id like to have tap-postgres-sync-base target-s3-jsonl running incrementally and tap-postgres-sync target-redshift ignoring the existing state… right now full-refresh is applying to both components 🤔elena_velte
08/16/2022, 4:52 PMflorian.hines
08/16/2022, 5:20 PMalexander_butler
08/16/2022, 5:56 PMmeltano run tap-postgres-sync-base target-s3-jsonl && meltano run tap-postgres-sync target-redshift --full-refreshaaronsteers
08/16/2022, 6:16 PMaaronsteers
08/16/2022, 6:18 PMelena_velte
08/16/2022, 6:29 PMmeltano --environment meltano-run state clear --force meltano-run:tap-postgres-sync-to-target-redshift && meltano --environment meltano-run run tap-postgres-sync-base target-s3-jsonl dbt:tiger-sync-cleanup tap-postgres-sync target-redshift dbt:test
what would you say would the best practice be for this use case?elena_velte
08/16/2022, 6:30 PMdbt:tiger-sync-cleanup is a dbt run-operation where I drop the existing schema before running the stateless refresh)aaronsteers
08/17/2022, 12:27 AMget command, just in the case of a failed load or some other issue. Either way though, I think the above makes sense. 👍elena_velte
08/17/2022, 10:43 AM