I have the following target. Can I change the `ove...
# troubleshooting
j
I have the following target. Can I change the
overwrite
config for one of the steams?
Copy code
- name: target-bigquery
    pip_url: git+<https://github.com/z3z1ma/target-bigquery.git>
    config:
      credentials_json: ${BIGQUERY_CREDENTIALS_JSON}
      project: analytics-prod-383519
      method: batch_job
      overwrite: true
I have a stream called
form_answers
that I'd like for
overwrite
to be set to
false
. Is this possible? Thanks!
u
I dont know of a way to do that nicely other than by using inherits_from and making a new target-bigquery-append (or similar) that only selects your form_answers stream, then exclude it from the main target-bigquery select criteria.
j
Thanks pat, I'll do something like that