Timeout
Enable timeout middleware
Install#
go get github.com/rookie-ninja/rk-boot/v2
go get github.com/rookie-ninja/rk-gin/v2
Options#
options | description | type | default |
---|---|---|---|
gin.middleware.timeout.enabled | Enable timeout middleware | boolean | false |
gin.middleware.timeout.ignore | Ignore by path | []string | [] |
gin.middleware.timeout.timeoutMs | Timeouts in milliseconds | int | 5000 |
gin.middleware.timeout.paths.path | API path | string | "" |
gin.interceptors.timeout.paths.timeoutMs | Timeouts in milliseconds | int | 5000 |
Quick start#
1.Create boot.yaml#
---
gin:
- name: greeter
port: 8080
enabled: true
middleware:
timeout:
enabled: true
# ignore: [""]
timeoutMs: 5000
paths:
- path: "/v1/greeter"
timeoutMs: 1
2.Create main.go#
package main
import (
"context"
"fmt"
"github.com/gin-gonic/gin"
"github.com/rookie-ninja/rk-boot/v2"
"github.com/rookie-ninja/rk-gin/v2/boot"
"net/http"
"time"
)
func main() {
// Create a new boot instance.
boot := rkboot.NewBoot()
// Register handler
entry := rkgin.GetGinEntry("greeter")
entry.Router.GET("/v1/greeter", Greeter)
// Bootstrap
boot.Bootstrap(context.TODO())
boot.WaitForShutdownSig(context.TODO())
}
func Greeter(ctx *gin.Context) {
time.Sleep(10*time.Millisecond)
ctx.JSON(http.StatusOK, &GreeterResponse{
Message: fmt.Sprintf("Hello %s!", ctx.Query("name")),
})
}
type GreeterResponse struct {
Message string
}
3.Validate#
Send request
$ curl "localhost:8080/v1/greeter?name=rk-dev"
{
"error":{
"code":408,
"status":"Request Timeout",
"message":"",
"details":[]
}
}