You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Supports following Google Cloud Storage uri forms:
- gs:// \<bucket\> / \<path\>
**Configuration**
The simplest way to configure object storage is by creating a json config file like [`/tmp/gcs.json`]:
```bash
$ cat /tmp/gcs.json
{
"gcs_base_url": "gs://testbucket/test.parquet",
"disable_oauth": false,
"client_email": "...",
"private_key_id": "...",
"private_key": "..."
}
```
Alternatively, you can use the following environment variables when starting postgres to configure the Google Cloud Storage client:
- `GOOGLE_SERVICE_ACCOUNT_KEY`: json serialized service account key
- `GOOGLE_SERVICE_ACCOUNT_PATH`: an alternative location for the config file
Closes#62
No description provided.
The text was updated successfully, but these errors were encountered: