Home Backend Development Golang Using Google Cloud Storage in Go: A Complete Guide

Using Google Cloud Storage in Go: A Complete Guide

Jun 17, 2023 am 11:27 AM
go language google cloud storage guide.

Using Google Cloud Storage in Go: A Complete Guide

Google Cloud Storage is an object storage solution for storing and accessing data in Google Cloud Platform. It provides high-speed, scalable, secure storage services that are easy to integrate into a variety of applications. In this article, we will learn how to use Google Cloud Storage in Go language to handle objects and files.

Preparation

Before you start, you need to install the Google Cloud SDK and Go language environment. You also need to create a project on Google Cloud Platform and enable the Google Cloud Storage API. This can be done by accessing the Google Cloud Console. Then, you need to execute the following command to set up the default Google Cloud project:

gcloud config set project [PROJECT_ID]
Copy after login

Next, before using Google Cloud Storage in the Go language, you also need to install the Google Cloud Storage Go client library. This can be done by entering the following command in the terminal:

go get -u cloud.google.com/go/storage
Copy after login

Create a Bucket

Objects hosted in Google Cloud Storage must be stored in a Bucket. Bucket is a namespace managed by Google Cloud Storage for storing objects (similar to folders). To create a Bucket in Go language, you can use the following code:

package main

import (
    "context"
    "fmt"
    "log"

    "cloud.google.com/go/storage"
)

func main() {
    ctx := context.Background()
    client, err := storage.NewClient(ctx)
    if err != nil {
        log.Fatal(err)
    }

    bucketName := "my-bucket"
    if err := client.Bucket(bucketName).Create(ctx, "my-project", nil); err != nil {
        log.Fatal(err)
    }
    fmt.Printf("Bucket %v created.
", bucketName)
}
Copy after login

In this example, we created a new client using context and the Google Cloud Storage Go client library. Then, we specify the Bucket name and create it. The Google Cloud Storage Go client library handles all the necessary authentication for us, which is configured via the Google Cloud SDK or environment variables. Finally, this code will output the name of the bucket to indicate success.

Storing Objects in a Bucket

Once you create a Bucket, you can store objects in it. In Go language, objects can be stored in a Bucket using the following code:

package main

import (
    "context"
    "fmt"
    "io/ioutil"
    "log"

    "cloud.google.com/go/storage"
)

func main() {
    ctx := context.Background()
    client, err := storage.NewClient(ctx)
    if err != nil {
        log.Fatal(err)
    }

    bucketName := "my-bucket"
    objectName := "test-object"
    content := []byte("hello world")

    writer := client.Bucket(bucketName).Object(objectName).NewWriter(ctx)
    if _, err := writer.Write(content); err != nil {
        log.Fatal(err)
    }
    if err := writer.Close(); err != nil {
        log.Fatal(err)
    }

    fmt.Printf("Object %v created in bucket %v.
", objectName, bucketName)
}
Copy after login

In this code, we create a Bucket and store an object named "test-object" in it. We used the environment variable helper provided in google.golang.org/api/option to automatically obtain the Token managed by Google Cloud and set the Bucket name, object name and object content respectively. Use the NewWriter function to create a new object writer. We provide content to the object writer and then ensure that the object is also released when it is closed. Finally, we print a message to the console that the object was successfully created.

Retrieve objects

Retrieving objects in the Bucket is the same as storing objects. Use the following code to retrieve objects from the Bucket:

package main

import (
    "context"
    "fmt"
    "io/ioutil"
    "log"

    "cloud.google.com/go/storage"
)

func main() {
    ctx := context.Background()
    client, err := storage.NewClient(ctx)
    if err != nil {
        log.Fatal(err)
    }

    bucketName := "my-bucket"
    objectName := "test-object"

    reader, err := client.Bucket(bucketName).Object(objectName).NewReader(ctx)
    if err != nil {
        log.Fatal(err)
    }
    defer reader.Close()

    content, err := ioutil.ReadAll(reader)
    if err != nil {
        log.Fatal(err)
    }

    fmt.Printf("Object %v in bucket %v contains: %v", objectName, bucketName, string(content))
}
Copy after login

In this code, we use the NewReader function to create a new object reader, and after reading, use deferThe mechanism releases, then reads the object content and outputs it to the console.

Deleting Objects and Buckets

Finally, you can also delete objects in a Bucket and the Bucket itself using the following code:

package main

import (
    "context"
    "fmt"
    "log"

    "cloud.google.com/go/storage"
)

func main() {
    ctx := context.Background()
    client, err := storage.NewClient(ctx)
    if err != nil {
        log.Fatal(err)
    }

    bucketName := "my-bucket"
    objectName := "test-object"

    if err := client.Bucket(bucketName).Object(objectName).Delete(ctx); err != nil {
        log.Fatal(err)
    }
    fmt.Printf("Object %v deleted from bucket %v.
", objectName, bucketName)

    if err := client.Bucket(bucketName).Delete(ctx); err != nil {
        log.Fatal(err)
    }
    fmt.Printf("Bucket %v deleted.
", bucketName)
}
Copy after login

In this code, use Delete The function deletes the objects in the Bucket and the Bucket itself.

Conclusion

The above is the complete guide to using Google Cloud Storage in Go language. With the Google Cloud Storage Go client library, we can easily create Buckets, store and retrieve objects, and manage Buckets and objects. Since Google Cloud Storage is a scalable solution, you can store and manage data as needed without worrying about data volume limitations.

The above is the detailed content of Using Google Cloud Storage in Go: A Complete Guide. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the problem with Queue thread in Go's crawler Colly? What is the problem with Queue thread in Go's crawler Colly? Apr 02, 2025 pm 02:09 PM

Queue threading problem in Go crawler Colly explores the problem of using the Colly crawler library in Go language, developers often encounter problems with threads and request queues. �...

What libraries are used for floating point number operations in Go? What libraries are used for floating point number operations in Go? Apr 02, 2025 pm 02:06 PM

The library used for floating-point number operation in Go language introduces how to ensure the accuracy is...

How to solve the problem that custom structure labels in Goland do not take effect? How to solve the problem that custom structure labels in Goland do not take effect? Apr 02, 2025 pm 12:51 PM

Regarding the problem of custom structure tags in Goland When using Goland for Go language development, you often encounter some configuration problems. One of them is...

Which libraries in Go are developed by large companies or provided by well-known open source projects? Which libraries in Go are developed by large companies or provided by well-known open source projects? Apr 02, 2025 pm 04:12 PM

Which libraries in Go are developed by large companies or well-known open source projects? When programming in Go, developers often encounter some common needs, ...

In Go, why does printing strings with Println and string() functions have different effects? In Go, why does printing strings with Println and string() functions have different effects? Apr 02, 2025 pm 02:03 PM

The difference between string printing in Go language: The difference in the effect of using Println and string() functions is in Go...

Go language slice: Why does it not report an error when single-element slice index 1 intercept? Go language slice: Why does it not report an error when single-element slice index 1 intercept? Apr 02, 2025 pm 02:24 PM

Go language slice index: Why does a single-element slice intercept from index 1 without an error? In Go language, slices are a flexible data structure that can refer to the bottom...

Bytes.Buffer in Go language causes memory leak: How does the client correctly close the response body to avoid memory usage? Bytes.Buffer in Go language causes memory leak: How does the client correctly close the response body to avoid memory usage? Apr 02, 2025 pm 02:27 PM

Analysis of memory leaks caused by bytes.makeSlice in Go language In Go language development, if the bytes.Buffer is used to splice strings, if the processing is not done properly...

Why is it necessary to pass pointers when using Go and viper libraries? Why is it necessary to pass pointers when using Go and viper libraries? Apr 02, 2025 pm 04:00 PM

Go pointer syntax and addressing problems in the use of viper library When programming in Go language, it is crucial to understand the syntax and usage of pointers, especially in...

See all articles