Table of Contents
Interface call" >Interface call
信号通知" >信号通知
总结" >总结
Home Backend Development Golang How to implement the hot switch function of Go program more coolly

How to implement the hot switch function of Go program more coolly

Jul 21, 2023 pm 12:00 PM
go program

During development, we often have the need for thermal switches, that is, specific functions can be turned on or off at appropriate times while the program is running. For example, pprof sampling used in performance analysis is a typical thermal switch. This article discusses how to make this thermal switch cooler.

Before introducing the new solution, let’s review how pprof is done in the Go program.

Interface call

Performance sampling of the program may affect its service capabilities. Therefore, online sampling is generally performed within a specified small time range and requires effective switch control.

In order to achieve this, we generally introduce the net/http/pprof package (its init function is bound to the routing function function) into the code. The sampling function is turned on when externally accessing the HTTP service of the specified port. After the sampling time is over, the collection is turned off.

The implementation code is as follows

package main

import (
 "net/http"
 _ "net/http/pprof"
)

func main() {
 go func() {
  _ = http.ListenAndServe(":8080", nil)
 }()
 ...
}
Copy after login

Of course there is no problem with this approach. We can learn it and make other switch functions into HTTP services. But, is there any other cooler way?

信号通知

信号处理与 Go 程序的优雅退出一文中,我们谈论过信号机制,它用以向应用程序发送某种事件通知。

我们可以将基于接口触发的方式改为信号通知。

首先,构造采样功能函数(对应于 net/http/pprof 包下 init 函数中绑定的路由功能函数)。

func RegisterSignalForProfiling(sig os.Signal) {
 ch := make(chan os.Signal)
 started := false
 signal.Notify(ch, sig)

 go func() {
  var memoryProfile, cpuProfile, traceProfile *os.File
  for range ch {
   if started {
    pprof.StopCPUProfile()
    trace.Stop()
    pprof.WriteHeapProfile(memoryProfile)
    memoryProfile.Close()
    cpuProfile.Close()
    traceProfile.Close()
    started = false
   } else {
    cpuProfile, _ = os.Create("cpu.pprof")
    memoryProfile, _ = os.Create("memory.pprof")
    traceProfile, _ = os.Create("runtime.trace")
    pprof.StartCPUProfile(cpuProfile)
    trace.Start(traceProfile)
    started = true
   }
  }
 }()
}
Copy after login

在上述函数中,我们定义了接收信号通道<span style="font-size: 15px;">ch</span>,通过<span style="font-size: 15px;">signal.Notify(ch, sig)</span>将指定的通知信号<span style="font-size: 15px;">sig</span><span style="font-size: 15px;">ch</span>进行绑定。<span style="font-size: 15px;">for range ch</span> 将阻塞等待外部信号<span style="font-size: 15px;">sig</span>,随着<span style="font-size: 15px;">sig</span>信号的到来,交替进入开启或关闭采样的逻辑。

<span style="font-size: 15px;">main</span>函数中,就可以这样替代<span style="font-size: 15px;">http.ListenAndServe(":8080", nil)</span>了。

package main

import (
  "syscall"
  ...
)

func main() {
  RegisterSignalForProfiling(syscall.Signal(31))
 ...
}
Copy after login

在 linux 系统,可以通过<span style="font-size: 15px;">kill -signal_number pid</span>命令向程序发送指定信号。

如上代码所示,我们硬编码指定的采样开关信号值是 31。因此,当程序运行起来后,我们在控制台输入<span style="font-size: 15px;">kill -31 pid</span> 命令,即可开启采样,再次输入<span style="font-size: 15px;">kill -31 pid</span>命令,就关闭了采样。

依葫芦画瓢,我们再来一个打印 goroutine 堆栈信息的热开关函数,是不是很酷?

func RegisterSignalForPrintStack(sig os.Signal) {
 ch := make(chan os.Signal)
 signal.Notify(ch, sig)

 go func() {
  for range ch {
   buffer := make([]byte, 1024*1024*4)
   runtime.Stack(buffer, true)
   fmt.Println(string(buffer))
  }
 }()
}
Copy after login

总结

热开关是一个很简单常用的功能,无非是选择何种触发与等待方式。基于接口的调用更适合于远程控制,基于信号则便于本地控制。

The above is the detailed content of How to implement the hot switch function of Go program more coolly. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement the hot switch function of Go program more coolly How to implement the hot switch function of Go program more coolly Jul 21, 2023 pm 12:00 PM

During development, we often have the need for thermal switches, that is, specific functions can be turned on or off at appropriate times while the program is running. For example, pprof sampling used in performance analysis is a typical thermal switch. This article discusses how to make this thermal switch cooler.

Use expvar to expose Go program running metrics Use expvar to expose Go program running metrics Jul 21, 2023 am 09:52 AM

Obtaining the running metrics of an application can give us a better understanding of how it is actually doing. By connecting these indicators to monitoring systems such as prometheus and zabbix, applications can be continuously detected, and abnormalities can be alerted and handled in a timely manner.

Why does my Go program fail to compile due to missing dependencies? Why does my Go program fail to compile due to missing dependencies? Jun 10, 2023 pm 02:33 PM

Go is a popular programming language that compiles faster and consumes less memory compared to other programming languages. However, sometimes our Go program fails to compile due to missing dependencies. So why does this happen? First, we need to understand the principles of Go compilation. Go is a statically compiled language, which means that the program is translated into machine code during compilation and then run directly. Compared with dynamically compiled languages, Go's compilation process is more complicated because all packages to be used need to be converted before compilation.

Why doesn't my Go program use the GoQUIC library correctly? Why doesn't my Go program use the GoQUIC library correctly? Jun 09, 2023 pm 04:55 PM

Recently, more and more people have begun to use GoQUIC to build web applications. Due to its efficient transmission performance and reliability, GoQUIC has become the first choice for many projects. However, during actual use, some developers found that their Go programs could not use the GoQUIC library correctly. Next, let's analyze the reasons that may cause Go programs to be unable to use the GoQUIC library normally. 1. Version issues First, you need to make sure your GoQUIC version is the latest. GoQUIC is updated frequently if

The Go program is too big. Can we use lazy initialization? The Go program is too big. Can we use lazy initialization? Aug 04, 2023 pm 05:23 PM

In the continuous development of the company, most of them were large units at the beginning, and the transformation was slow. A warehouse will be used for more than ten years, and the scale of the warehouse is basically a process of continuous increase.

Why do I get 'out of memory' errors when running my Go program? Why do I get 'out of memory' errors when running my Go program? Jun 09, 2023 pm 04:40 PM

Go is an efficient programming language that provides special mechanisms for memory management. However, even when using this language some problems may occur, such as "outofmemory" errors. So why does my Go program get this error? Memory leak Memory leak is a common problem, which also exists in the Go language. Memory leaks occur when your Go program allocates a large amount of memory and does not free it completely after performing certain operations. If a memory leak occurs

Why is exception handling in my Go program not working? Why is exception handling in my Go program not working? Jun 10, 2023 am 10:13 AM

Golang (Go) is a language that is very good at handling errors and exceptions. Unlike other languages, Go handles exceptions through a simple yet effective error handling mechanism. Although Go's error handling mechanism is very powerful and flexible, some programmers still have trouble implementing error handling in their programs. This article is intended to help address the question of why exception handling in Go programs doesn't work, and how to handle exception situations correctly. Ineffective exception handling in Go is usually caused by the programmer not handling the error correctly or making a mistake

Why does my Go program get a 'core dumped' error when executing? Why does my Go program get a 'core dumped' error when executing? Jun 09, 2023 pm 05:49 PM

In the process of developing using Go language, it is inevitable that you will encounter various errors. One of the common errors is "coredumped", and this error message may be confusing to some developers. This article explains the cause of this error and how to fix it. The meaning of "coredumped" In the Linux operating system, "coredumped" is an error message that indicates that a process unexpectedly exited during execution and a so-called "core" file has been generated. this

See all articles