亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

gRPC超時攔截器如何實現

發布時間:2022-06-16 10:06:37 來源:億速云 閱讀:210 作者: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超時攔截器如何實現”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沂源县| 饶河县| 镇康县| 乌拉特中旗| 邢台市| 潞城市| 河间市| 探索| 同心县| 西丰县| 邢台市| 芦山县| 永兴县| 原阳县| 体育| 阿合奇县| 银川市| 望城县| 镇安县| 吴江市| 桂林市| 和硕县| 闸北区| 邵东县| 灌阳县| 夏津县| 桓台县| 建瓯市| 兴国县| 淳安县| 历史| 师宗县| 刚察县| 镇坪县| 荣昌县| 泗水县| 农安县| 萨嘎县| 利辛县| 都江堰市| 牙克石市|