mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-21 15:45:01 +00:00
![]() This returns back vmbackup and vmrestore binary sizes from 60MB to 40MB.
See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/8008
See https://github.com/googleapis/google-cloud-go/issues/11448
Thanks to @f41gh7 for the investigation of the issue.
(cherry picked from commit
|
||
---|---|---|
.. | ||
internal | ||
acl.go | ||
bucket.go | ||
CHANGES.md | ||
client.go | ||
copy.go | ||
doc.go | ||
emulator_test.sh | ||
grpc_client.go | ||
hmac.go | ||
http_client.go | ||
iam.go | ||
invoke.go | ||
LICENSE | ||
notifications.go | ||
option.go | ||
post_policy_v4.go | ||
reader.go | ||
README.md | ||
storage.go | ||
storage.replay | ||
writer.go |
Cloud Storage 
Example Usage
First create a storage.Client
to use throughout your application:
client, err := storage.NewClient(ctx)
if err != nil {
log.Fatal(err)
}
// Read the object1 from bucket.
rc, err := client.Bucket("bucket").Object("object1").NewReader(ctx)
if err != nil {
log.Fatal(err)
}
defer rc.Close()
body, err := io.ReadAll(rc)
if err != nil {
log.Fatal(err)
}