GRPC: 如何优雅关闭进程(graceful shutdown)
Posted 阿里云云栖号
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GRPC: 如何优雅关闭进程(graceful shutdown)相关的知识,希望对你有一定的参考价值。
简介: 本文将介绍优雅关闭 gRPC 微服务。在进程收到关闭信号时,我们需要关闭后台运行的逻辑,比如,mysql 连接等等。
介绍
本文将介绍优雅关闭 gRPC 微服务。
什么是优雅关闭?在进程收到关闭信号时,我们需要关闭后台运行的逻辑,比如,MySQL 连接等等。
我们将会使用 rk-boot 来启动 gRPC 服务。
请访问如下地址获取完整教程:
安装
go get github.com/rookie-ninja/rk-boot
快速开始
1.创建 boot.yaml
---
grpc:
- name: greeter # Name of grpc entry
port: 8080 # Port of grpc entry
enabled: true # Enable grpc entry
2.创建 main.go
通过 AddShutdownHookFunc() 来添加 shutdownhook 函数。
package main
import (
"context"
"github.com/rookie-ninja/rk-boot"
"github.com/rookie-ninja/rk-gin/interceptor/context"
)
// Application entrance.
func main() {
// Create a new boot instance.
boot := rkboot.NewBoot()
// Add shutdown hook function
boot.AddShutdownHookFunc("shutdown-hook", func() {
fmt.Println("shutting down")
})
// Bootstrap
boot.Bootstrap(context.Background())
// Wait for shutdown sig
boot.WaitForShutdownSig(context.Background())
}
3.启动 main.go
$ go run main.go
4.ctrl-c
通过 ctrl-c 关闭程序,我们会看到打印如下信息。
shutting down
原文链接
本文为阿里云原创内容,未经允许不得转载。
以上是关于GRPC: 如何优雅关闭进程(graceful shutdown)的主要内容,如果未能解决你的问题,请参考以下文章