GolangNote

Golang笔记

golang 应用热重启的例子 graceful

Permalink

我使用的是 gopkg.in/tylerb/graceful 包,

Go: graceful
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package main

import (
    "fmt"
    "net/http"
    "os"
    "time"

    "gopkg.in/tylerb/graceful.v1"
)

var (
    now = time.Now()
)

func main() {
    mux := http.NewServeMux()
    mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
        duration, err := time.ParseDuration(r.FormValue("duration"))
        if err != nil {
            http.Error(w, err.Error(), 400)
            return
        }
        time.Sleep(duration)
        fmt.Fprintf(
            w,
            "started at %s slept for %d nanoseconds from pid %d.\n",
            now,
            duration.Nanoseconds(),
            os.Getpid(),
        )
    })

    graceful.Run(":3001", 21*time.Second, mux)
}

supervisord.conf 配置示例

INI: supervisord conf
1
2
3
4
5
6
7
8
9
[program:golangn]
;user=root
command = /Users/weis/tmp/graceful2
process_name = golangnote
stopwaitsecs = 22
directory = /Users/weis/tmp
redirect_stderr=true
autostart=true
autorestart=true

需要注意的地方是两个 timeout 时间:

Go: graceful
1
2
graceful.Run(":3001", 21*time.Second, mux)
stopwaitsecs = 22

supervisord.conf 里的时间要比 go 脚本里的时间多 1 秒。

测试

Bash: 热重启测试
1
2
3
4
5
curl 'http://localhost:3001/?duration=20s'
curl 'http://localhost:3001/?duration=20s'
curl 'http://localhost:3001/?duration=0s'
supervisorctl restart all
curl 'http://localhost:3001/?duration=0s'

本文网址: https://golangnote.com/topic/126.html 转摘请注明来源

Related articles

Golang 泛型性能初识

编程时,我们通常需要编写“泛型”函数,其中确切的数据类型并不重要。例如,您可能想编写一个简单的函数来对数字进行求和。Go 直到最近才有这个概念,但最近才添加了它(从1.18版开始)。...

golang Selenium WebDriver 使用记录

Selenium WebDriver 直接通过浏览器自动化的本地接口来调用浏览器,以达到模拟浏览器行为的操作,如点击、选择、鼠标移动等。下面是记录个人使用golang 驱动的记录。...

Write a Comment to "golang 应用热重启的例子 graceful"

Submit Comment Login
Based on Golang + fastHTTP + sdb | go1.20 Processed in 0ms