pankajkoti commented on issue #48368: URL: https://github.com/apache/airflow/issues/48368#issuecomment-2789584115
@fjmacagno https://pypi.org/project/apache-airflow-providers-databricks/7.3.0/ is now released which contains the PR #48507 . You can try using the deferrable counterpart of the newly added operator by installing the latest provider version. ``` from airflow.providers.databricks.operators.databricks import DatabricksSQLStatementsOperator sql_statement = DatabricksSQLStatementsOperator( task_id="sql_statement", databricks_conn_id="databricks_default", statement="select * from default.my_airflow_table", warehouse_id=WAREHOUSE_ID, deferrable=True, # For using the operator in deferrable mode ) ``` Let me know the feedback if you get a chance to try it out :) -- 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]
