You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We are running into an issue with the dbt-clickhouse adapter when using delete+insert. When running multiple dbt-clickhouse jobs at the same time, we often get a 500 complaining that the temporary xxx_dbt_new_data already exists:
Describe the solution you'd like
Would it be a good PR to add a random suffix to the table so that the temp tables created by dbt-clickhouse doesn't collide with each other? Could somebody at the team fix this (seems like a quick fix) or would you accept a PR?
Describe alternatives you've considered
Change our pipelines to make sure we always just run one dbt-clickhouse job at a time.
The text was updated successfully, but these errors were encountered:
winterrobert
changed the title
Randomize temp table __dbt_new_data name so allow concurrent dbt-clickhouse jobs
Randomize temp table __dbt_new_data name to allow concurrent dbt-clickhouse jobs
May 11, 2023
Is your feature request related to a problem? Please describe.
We are running into an issue with the dbt-clickhouse adapter when using
delete+insert
. When running multiple dbt-clickhouse jobs at the same time, we often get a 500 complaining that the temporary xxx_dbt_new_data already exists:My guess is that it's related to this row here
Describe the solution you'd like
Would it be a good PR to add a random suffix to the table so that the temp tables created by dbt-clickhouse doesn't collide with each other? Could somebody at the team fix this (seems like a quick fix) or would you accept a PR?
Describe alternatives you've considered
Change our pipelines to make sure we always just run one dbt-clickhouse job at a time.
The text was updated successfully, but these errors were encountered: