Socket
Socket
Sign inDemoInstall

github.com/GoogleCloudPlatform/golang-samples/run/grpc-server-streaming

Package Overview
Dependencies
7
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    github.com/GoogleCloudPlatform/golang-samples/run/grpc-server-streaming


Version published

Readme

Source

Cloud Run gRPC Server Streaming sample application

For a general introduction to gRPC on Go, see the official gRPC quickstart.

This sample presents:

  • ./server: a gRPC server application with an RPC that streams the current time in the response (written in Go)
  • ./client: a small program to query the server and show the response messages (written in Go)

Deploy gRPC server to Cloud Run

Use the following button to deploy the application to Cloud Run on your GCP project:

Run on Google Cloud

Once deployed successfully, note the domain name (hostname) of the service.

Make a request using the client

  1. Ensure Go 1.13 (or higher) is installed on your machine.

  2. Clone this repository.

  3. Run the client with the hostname of the deployed service:

    cd grpc-server-streaming
    
    go run ./client -duration 5 -server <HOSTNAME>:443
    
  4. Observe the output, it should be receiving and printing a message every second as the server sends them.

    rpc established to timeserver, starting to stream
    received message: current_timestamp: 2020-01-15T01:12:29Z
    received message: current_timestamp: 2020-01-15T01:12:30Z
    received message: current_timestamp: 2020-01-15T01:12:31Z
    received message: current_timestamp: 2020-01-15T01:12:32Z
    received message: current_timestamp: 2020-01-15T01:12:33Z
    end of stream
    

Cleanup

Remove the grpc-server-streaming Service you deployed from Cloud Run using the Cloud Console.

FAQs

Last updated on 25 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc