-
Notifications
You must be signed in to change notification settings - Fork 32
Adds Support for COPY TO/FROM Google Cloud Storage #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
2feb683 to
3d026b6
Compare
048bd25 to
4a93f99
Compare
afb3c71 to
2a3061f
Compare
4a93f99 to
c1ba6ad
Compare
2a3061f to
0a3281f
Compare
c1ba6ad to
5d15466
Compare
0a3281f to
80e449f
Compare
b588cfd to
a61b15d
Compare
80e449f to
8553677
Compare
a61b15d to
f187bc4
Compare
0c15989 to
d76bf55
Compare
e0df256 to
e9d0cdd
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #61 +/- ##
==========================================
+ Coverage 91.12% 91.15% +0.03%
==========================================
Files 87 88 +1
Lines 12479 12606 +127
==========================================
+ Hits 11371 11491 +120
- Misses 1108 1115 +7 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
dd3d157 to
ec5c082
Compare
fdb69ae to
f68c49e
Compare
f68c49e to
d6957e0
Compare
|
Looking forward to this 👍 |
README.md
Outdated
| The simplest way to configure object storage is by creating a json config file like [`/tmp/gcs.json`]: | ||
|
|
||
| ```bash | ||
| $ cat /tmp/gcs.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this the default location for that file? seems unlikely
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was able to authenticate via gcloud auth application-default login which creates ~/.config/gcloud/application_default_credentials.json, probably the former should be in the docs.
d6957e0 to
d693316
Compare
README.md
Outdated
|
|
||
| #### Google Cloud Storage | ||
|
|
||
| The simplest way to configure object storage is by creating a json config file like [`~/.config/gcloud/application_default_credentials.json`]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably worth mentioning gcloud auth application-default login
d693316 to
71508de
Compare
71508de to
f164838
Compare
Supports following Google Cloud Storage uri forms:
Configuration
The simplest way to configure object storage is by creating a json config file like
~/.config/gcloud/application_default_credentials.json(can be generated bygcloud auth application-default login):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 keyGOOGLE_SERVICE_ACCOUNT_PATH: an alternative location for the config fileCloses #62