user
06/13/2023, 4:37 PM➜ lakeFS git:(master) docker exec --interactive --tty lakefs duckdb
v0.7.1 b00b93f
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
D SET s3_url_style='path';
D SET s3_region='us-east-1';
D SET s3_use_ssl=false;
D SET s3_endpoint='localhost:8000';
D .changes on
D SET s3_access_key_id='AKIAJQZVKYF7JX7TFQBQ';
changes: 0 total_changes: 0
D SET s3_secret_access_key='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';
changes: 0 total_changes: 0
D CREATE TABLE lakes AS
> SELECT * FROM read_parquet('<s3://quickstart/main/lakes.parquet>');
changes: 100000 total_changes: 100000
D select * from lakes limit 5;
┌──────────┬─────────────┬──────────────────────────┬─────────┐
│ Hylak_id │ Lake_name │ Country │ Depth_m │
│ int64 │ varchar │ varchar │ double │
├──────────┼─────────────┼──────────────────────────┼─────────┤
│ 1 │ Caspian Sea │ Russia │ 1025.0 │
│ 2 │ Great Bear │ Canada │ 446.0 │
│ 3 │ Great Slave │ Canada │ 614.0 │
│ 4 │ Winnipeg │ Canada │ 36.0 │
│ 5 │ Superior │ United States of America │ 406.0 │
└──────────┴─────────────┴──────────────────────────┴─────────┘
changes: 100000 total_changes: 100000
Do you have the option of putting to one side your current env, and trying https://docs.lakefs.io/quickstart/launch.html from scratch? i.e. using the provided docker run, etc?