gRPC超时 * 实现示例
作者:尹东勋 时间:2024-04-27 15:30:54
介绍
本文介绍如何通过 rk-boot 快速搭建 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!"
}
]
}
}
来源:https://juejin.cn/post/7030478524523741221
标签:gRPC,超时, ,
0
投稿
猜你喜欢
使用Python处理json字符串中的非法双引号问题
2021-01-19 19:26:13
解决python3 整数数组转bytes的效率问题
2023-08-09 19:39:41
Python判断操作系统类型代码分享
2022-12-30 02:09:31
MySQL优化全攻略--相关数据库命令
2008-11-01 17:03:00
window.location 对象所包含的属性
2024-04-16 10:32:14
JS中不为人知的五种声明Number的方式简要概述
2024-04-29 13:13:43
Python统计python文件中代码,注释及空白对应的行数示例【测试可用】
2023-04-30 00:11:19
go程序员日常开发效率神器汇总
2024-02-16 23:04:40
简介Django中内置的一些中间件
2023-03-16 19:20:27
Vue CLI3.0中使用jQuery和Bootstrap的方法
2023-07-02 17:08:15
python目标检测非极大抑制NMS与Soft-NMS
2022-05-13 21:05:08
vue tree封装一个可选的树组件方式
2024-05-09 09:53:59
python实现的各种排序算法代码
2022-06-17 05:41:19
golang语言http协议get拼接参数操作
2024-05-08 10:45:10
python实现桌面壁纸切换功能
2023-05-26 04:38:49
python连接mysql有哪些方法
2024-01-21 11:23:11
介绍讲解MySQL安装下载登录
2010-10-25 20:34:00
用Popup窗口建无限级Web页菜单
2023-07-10 20:22:17
Python中针对函数处理的特殊方法
2023-07-17 19:59:30
Python selenium实现断言3种方法解析
2023-06-06 06:08:53