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
Issue Description:
I have many SQL models that utilize liquid_cluster_by. The behavior for these models includes merge, cluster by, and optimize operations.
However, when I run Python models, I noticed the following behavior:
On the first run (when creating the table), the optimize operation is executed.
On subsequent runs, only the merge operation is performed.
If liquid_cluster_by is present, the merge operation is followed by cluster by, which is pointless without optimize.
Additionally, I observed that the optimize operation does not execute for Python models, regardless of whether liquid_cluster_by is specified.
Describe the bug
When running dbt python model with workflow_job no optimize run after the operation
Steps To Reproduce
Run a python model with liquid cluster by
Expected behavior
Expected to see the following operations: merge, cluster by, optimiz
System information
The output of
dbt --version
:The operating system you're using:
linux
The output of
python --version
:Python 3.11.2
Additional context
Issue Description:
I have many SQL models that utilize liquid_cluster_by. The behavior for these models includes merge, cluster by, and optimize operations.
However, when I run Python models, I noticed the following behavior:
On the first run (when creating the table), the optimize operation is executed.
On subsequent runs, only the merge operation is performed.
If liquid_cluster_by is present, the merge operation is followed by cluster by, which is pointless without optimize.
Additionally, I observed that the optimize operation does not execute for Python models, regardless of whether liquid_cluster_by is specified.
Thanks,
The text was updated successfully, but these errors were encountered: