Skip to content

Commit

Permalink
Merge pull request #70 from yohei1126/add-gcs-readme
Browse files Browse the repository at this point in the history
add GCS authentication example
  • Loading branch information
samansmink authored Aug 29, 2024
2 parents e0af7f6 + 04cd864 commit db45fc2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,19 @@ CREATE SECRET (
FROM delta_scan('abfss://some/delta/table/with/auth');
```

### GCS Example

https://duckdb.org/docs/guides/network_cloud_storage/gcs_import.html
You need to create [HMAC keys](https://console.cloud.google.com/storage/settings;tab=interoperability) and declare a secret.

```SQL
CREATE SECRET (
TYPE GCS,
KEY_ID 'xxxx',
SECRET 'yyy'
);
```

## Features

While still experimental, many (scanning) features/optimizations are already supported in this extension as it reuses most of DuckDB's
Expand Down

0 comments on commit db45fc2

Please sign in to comment.