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 数据库 Bolt 碎片整理

Bolt 是一个优秀、纯 Go 实现、支持 ACID 事务的嵌入式 Key/Value 数据库。但在使用过程中会有很多空间碎片。一般数据库占用的空间是元数据空间的 1.5~4 倍。Bolt 没有内置的压缩功能,需要手动压缩。...

Golang sync.WaitGroup 的 Wait 超时处理

sync.WaitGroup 使用 `Add(1)`、`Done()`、`Wait()`组合来实现多协程等待,如果某一协程未能合理处理错误,导致无法退出,此时需要引入超时机制。下面是一种超时处理方法。...

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

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