CodeNewbie Community 🌱

Cover image for Golang: Zero downtime restarts and deploys using systemd
Vladimir Mihailenco
Vladimir Mihailenco

Posted on • Updated on • Originally published at bunrouter.uptrace.dev

Golang: Zero downtime restarts and deploys using systemd

During restarts, your API may be unavailable for short period of time required to stop an old app instance and start a new one. You can fix that by introducing another app (proxy) that listens on behalf of the main app and somehow proxies the data to the main app.

A popular way to do that is to pass the listening socket as a file descriptor to a child process and then re-create the socket there using the descriptor. Systemd can do that for you via the feature called socket activation.

By configuring a systemd socket, you can tell systemd to listen on the configured ports and start your service with a copy of the listening sockets. During restarts, the data is not lost but stored in OS buffers.

Systemd socket

You can configure a systemd socket by creating /lib/systemd/system/myapp.socket file, for example, the following socket listens on the port 80, but you can add as many ports as you need:

[Socket]
ListenStream = 80
#ListenStream = 443
BindIPv6Only = both
Service      = myapp.service

[Install]
WantedBy = sockets.target
Enter fullscreen mode Exit fullscreen mode

You also need to configure an accompanying systemd service by creating myapp.service file:

[Unit]
Description = myapp
After       = network.target

[Service]
Type = simple

ExecStart = /bin/myapp
ExecStop  = /bin/kill $MAINPID
KillMode  = none

[Install]
WantedBy = multi-user.target
Enter fullscreen mode Exit fullscreen mode

Using systemd sockets

The Go application should be modified to use the systemd socket instead of directly listening on the port. Let's install a Go module that will help us with that:

go get github.com/coreos/go-systemd/v22
Enter fullscreen mode Exit fullscreen mode

And then use it like this:

import "github.com/coreos/go-systemd/v22/activation"

func main() {
    listeners, err := activation.Listeners()
    if err != nil {
        return err
    }

    httpLn := listeners[0]
    //httpsLn := listeners[1]

    httpServer := &http.Server{
        ReadHeaderTimeout: 5 * time.Second,
        ReadTimeout:       5 * time.Second,
        WriteTimeout:      5 * time.Second,
        IdleTimeout:       60 * time.Second,
        Handler:           router,
    }
    if err := httpServer.Serve(httpLn); err != nil {
        log.Printf("Serve failed: %s", err)
    }
}
Enter fullscreen mode Exit fullscreen mode

As a Golang router, you can try bunrouter.

Restarting the app

First, you need to start the configured systemd socket:

sudo systemctl start myapp.socket
Enter fullscreen mode Exit fullscreen mode

And then check that the socket was created successfully:

sudo systemctl status myapp.socket
Enter fullscreen mode Exit fullscreen mode

Systemd will automatically start the service on the first request or if the service crashes. You can also manually restart the service during deploys:

sudo systemctl restart myapp.service
Enter fullscreen mode Exit fullscreen mode

Uptrace

Uptrace is an open source DataDog competitor with an intuitive query builder, rich dashboards, alerting rules, and integrations for most languages and frameworks. It can process billions of spans and metrics on a single server and allows to monitor your applications at 10x lower cost.

Uptrace uses ClickHouse database to store traces, metrics, and logs. You can use it to monitor applications and set up automatic alerts to receive notifications via email, Slack, Telegram, and more.

You can get started with Uptrace by downloading a DEB/RPM package or a pre-compiled Go binary.


Top comments (0)