alitrack commented on issue #20708:
URL: https://github.com/apache/superset/issues/20708#issuecomment-1212812693
Superset supports ENGINE PARAMETERS, but DuckDB need install and load httpfs
extension first,
then can pass s3 related configuration
``` python
from sqlalchemy import create_engine
connect_args = {'config': {'s3_endpoint': '127.0.0.1:9900',
's3_access_key_id': 'minioadmin', 's3_secret_access_key': 'minioadmin',
's3_url_style': 'path', 's3_use_ssl': 0}}
engine = create_engine("duckdb:///",connect_args=connect_args)
```
get the issue,
```
duckdb.InvalidInputException: Invalid Input Error: Unrecognized
configuration property "s3_endpoint"
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]