gRPC超时拦截器如何实现
gRPC超时拦截器如何实现
发布时间:2022-06-16 10:06:37 来源:高防服务器网 阅读:99 作者:iii 栏目:开发技术
这篇文章主要介绍“gRPC超时拦截器如何实现”,在日常操作中,相信很多人在gRPC超时拦截器如何实现问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”gRPC超时拦截器如何实现”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
安装
go get github.com/rookie-ninja/rk-boot go get github.com/rookie-ninja/rk-grpc
快速开始
使用 rk-boot 启动的 gRPC 服务。
支持全局超时和 API 超时设定。
1.创建 boot.yaml
boot.yaml 文件告诉 rk-boot 如何启动 gRPC 服务。
为了验证,我们启动了 commonService,commonService 里包含了一系列常用 API,例如 /rk/v1/gc。
设定全局超时为 5秒,让 GC 的超时时间定位 1 毫秒,GC 一般会超过 1 毫秒。
--- grpc: - name: greeter # Required port: 8080 # Required enabled: true # Required commonService: enabled: true # Optional, Enable common service for testing interceptors: timeout: enabled: true # Optional, default: false timeoutMs: 5000 # Optional, default: 5000 paths: - path: "/rk.api.v1.RkCommonService/Gc" # Optional, default: "" timeoutMs: 1 # Optional, default: 5000
2.创建 main.go
// Copyright (c) 2021 rookie-ninja // // Use of this source code is governed by an Apache-style // license that can be found in the LICENSE file. package main import ( "context" "github.com/rookie-ninja/rk-boot" _ "github.com/rookie-ninja/rk-grpc/boot" ) // Application entrance. func main() { // Create a new boot instance. boot := rkboot.NewBoot() // Bootstrap boot.Bootstrap(context.Background()) // Wait for shutdown sig boot.WaitForShutdownSig(context.Background()) }
3.启动 main.go
$ go run main.go
4.验证
发送 GC 请求。
$ grpcurl -plaintext localhost:8080 rk.api.v1.RkCommonService.Gc ERROR: Code: Canceled Message: Request timed out! Details: 1) {"@type":"type.googleapis.com/rk.api.v1.ErrorDetail","code":1,"message":"[from-grpc] Request timed out!","status":"Canceled"}
$ curl -X GET localhost:8080/rk/v1/gc { "error":{ "code":408, "status":"Request Timeout", "message":"Request timed out!", "details":[ { "code":1, "status":"Canceled", "message":"[from-grpc] Request timed out!" } ] } }
到此,关于“gRPC超时拦截器如何实现”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注高防服务器网网站,小编会继续努力为大家带来更多实用的文章!
[微信提示:高防服务器能助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。
[图文来源于网络,不代表本站立场,如有侵权,请联系高防服务器网删除]
[