ashb commented on PR #73301:
URL: https://github.com/apache/airflow/pull/73301#issuecomment-5791658450

   Can this (be made to) work:
   
   ```python
   DuckDBExecuteQueryOperator(
       conn_id="some_aws_conn" ,
       database="s3://bucket/db.duckdb",
       sql="SELECT ...",
   )
   ```
   
   or with a connection defined as "duckdb_conn"
   ```jsonc
   {
     "extensions": ["aws"], // Or "s3" as you like
     "database": "s3://bucket/db.duckdb",
     "aws_conn_id": "some_aws_conn", // Only needed if not aws_default or not 
ambient worker creds.
   }
   ```
   
   yielding:
   
   ```python
   DuckDBExecuteQueryOperator(
       conn_id="duckdb_conn" ,
       sql="SELECT ...",
   )
   ```


-- 
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