coordinator / test (push) Canceled after 0s
python / test (push) Canceled after 0s
release / binaries (amd64, darwin) (push) Canceled after 0s
release / binaries (amd64, linux) (push) Canceled after 0s
release / binaries (amd64, windows) (push) Canceled after 0s
release / binaries (arm64, darwin) (push) Canceled after 0s
release / binaries (arm64, linux) (push) Canceled after 0s
release / binaries (arm64, windows) (push) Canceled after 0s
release / wheel (push) Canceled after 0s
release / image (push) Canceled after 0s
users / test (push) Canceled after 0s
release / release (push) Canceled after 0s
89 lines
2.5 KiB
Go
89 lines
2.5 KiB
Go
// Server: the HTTP listener and the background lease reaper, both shut down
|
|
// cleanly on a signal.
|
|
package infra
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"log/slog"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
const shutdownGrace = 15 * time.Second
|
|
|
|
// Run serves handler until ctx is cancelled, then drains in-flight requests.
|
|
func RunServer(ctx context.Context, log *slog.Logger, addr string, handler http.Handler, tls ...TLSConfig) error {
|
|
srv := &http.Server{
|
|
Addr: addr,
|
|
Handler: handler,
|
|
ReadHeaderTimeout: 5 * time.Second,
|
|
}
|
|
secure := len(tls) > 0 && tls[0].CertFile != "" && tls[0].KeyFile != ""
|
|
|
|
// Buffered so this goroutine can exit even when nobody reads the channel
|
|
// (the ctx.Done branch below) — an unbuffered send would leak it forever.
|
|
errCh := make(chan error, 1)
|
|
go func() {
|
|
if secure {
|
|
log.Info("coordinator listening (https)", "addr", addr)
|
|
if err := srv.ListenAndServeTLS(tls[0].CertFile, tls[0].KeyFile); err != nil && !errors.Is(err, http.ErrServerClosed) {
|
|
errCh <- err
|
|
}
|
|
return
|
|
}
|
|
log.Info("coordinator listening", "addr", addr)
|
|
if err := srv.ListenAndServe(); err != nil && !errors.Is(err, http.ErrServerClosed) {
|
|
errCh <- err
|
|
}
|
|
}()
|
|
|
|
select {
|
|
case err := <-errCh:
|
|
return err
|
|
case <-ctx.Done():
|
|
log.Info("shutdown signal received")
|
|
}
|
|
|
|
// A fresh context: ctx is already cancelled, and reusing it would abort the
|
|
// very requests we are trying to let finish.
|
|
shutdownCtx, cancel := context.WithTimeout(context.Background(), shutdownGrace)
|
|
defer cancel()
|
|
return srv.Shutdown(shutdownCtx)
|
|
}
|
|
|
|
// RunReaper periodically reclaims tasks whose lease elapsed, so a worker that
|
|
// died without a heartbeat cannot strand its task in 'leased' forever.
|
|
// RunPeriodic invokes fn on an interval until ctx is done, logging how many rows
|
|
// each tick affected. It backs the background reapers (expired leases, offline
|
|
// workers) — each is a set-based UPDATE that is safe to run repeatedly and
|
|
// concurrently across coordinators.
|
|
func RunPeriodic(ctx context.Context, log *slog.Logger, name string, interval time.Duration,
|
|
fn func(context.Context) (int64, error)) {
|
|
|
|
t := time.NewTicker(interval)
|
|
defer t.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case <-t.C:
|
|
n, err := fn(ctx)
|
|
if err != nil {
|
|
log.Debug(name+" skipped", "err", err)
|
|
continue
|
|
}
|
|
if n > 0 {
|
|
log.Info(name, "count", n)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// TLSConfig enables HTTPS for the coordinator server.
|
|
type TLSConfig struct {
|
|
CertFile string
|
|
KeyFile string
|
|
}
|