gin gracefully restart or stop

gin gracefully restart or stop

To gracefully restart or stop your web server, use the following method

We can use fvbock/endless to replace the default one ListenAndServe, see issue #296 for details

router := gin.Default()
router.GET("/", handler)
// [...]
endless.ListenAndServe(":4242", router)

An alternative

  • manners : A Go HTTP server that can be shut down gracefully
  • graceful : Graceful is a go package that supports graceful shutdown of the http.Handler server
  • grace : Graceful restart and zero downtime deployment of Go servers

If your Go version is 1.8, you may not need to use this library, consider using http.Server's built-in Shutdown() method for graceful shutdown, see the example

// +build go1.8

package main

import (
	"context"
	"log"
	"net/http"
	"os"
	"os/signal"
	"time"

	"github.com/gin-gonic/gin"
)

func main() {
	router := gin.Default()
	router.GET("/", func(c *gin.Context) {
		time.Sleep(5 * time.Second)
		c.String(http.StatusOK, "Welcome Gin Server")
	})

	srv := &http.Server{
		Addr:    ":8080",
		Handler: router,
	}

	go func() {
		// service connections
		if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
			log.Fatalf("listen: %s\n", err)
		}
	}()

	// Wait for interrupt signal to gracefully shutdown the server with
	// a timeout of 5 seconds.
	quit := make(chan os.Signal)
	signal.Notify(quit, os.Interrupt)
	<-quit
	log.Println("Shutdown Server ...")

	ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
	defer cancel()
	if err := srv.Shutdown(ctx); err != nil {
		log.Fatal("Server Shutdown:", err)
	}
	log.Println("Server exiting")
}

Guess you like

Origin blog.csdn.net/ma2595162349/article/details/109435072