rsenseman opened a new issue, #53843:
URL: https://github.com/apache/airflow/issues/53843

   I'm trying to run Dataform in "Full Refresh" mode with this Airflow Operator 
definition and it straight up doesn't work. It only runs the repo in non-full 
refresh mode. This leaves us with effectively no way to run our production DAG 
via "Full Refresh". I tried sorting through the code but I can't see where the 
arg is getting dropped. 
   
   ```
           create_workflow_invocation_full_refresh = 
DataformCreateWorkflowInvocationOperator(
               task_id="create_workflow_invocation_full_refresh",
               project_id=PROJECT_ID,
               region=DATAFORM_REGION,
               repository_id=REPOSITORY_ID,
               
               workflow_invocation={
                   "compilation_result": "{{ 
task_instance.xcom_pull('create_compilation_result')['name'] }}",
                   "invocation_config": {
                       "fully_refresh_incremental_tables_enabled": True,
                   }
               }
           )
   ```
   
   Class Definition: 
https://github.com/apache/airflow/blob/34ed71e52c1d8356194d34cb5018ff4032d66e2f/providers/google/src/airflow/providers/google/cloud/operators/dataform.py#L187


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to