Files
multica/server/internal/daemon/wakeup.go
Multica Eve ac62f72c2a MUL-4480: make daemon workspace sync event-driven (#5354)
* feat(daemon): make workspace sync event-driven

Co-authored-by: multica-agent <github@multica.ai>

* fix(daemon): preserve trailing workspace changes

Co-authored-by: multica-agent <github@multica.ai>

* fix(workspace): reconcile failed creates

Co-authored-by: multica-agent <github@multica.ai>

---------

Co-authored-by: Eve <eve@multica-ai.local>
Co-authored-by: multica-agent <github@multica.ai>
2026-07-14 11:56:30 +08:00

477 lines
15 KiB
Go

package daemon
import (
"context"
"encoding/json"
"errors"
"fmt"
"math/rand"
"net/http"
"net/url"
"sort"
"strings"
"sync"
"time"
"github.com/gorilla/websocket"
"github.com/multica-ai/multica/server/pkg/protocol"
)
var errRuntimeSetChanged = errors.New("runtime set changed")
const taskWakeupMaxBackoff = 30 * time.Second
var (
taskWakeupPongWait = 60 * time.Second
taskWakeupWriteWait = 10 * time.Second
taskWakeupBackoffResetAfter = 10 * time.Second
)
type taskWakeup struct {
runtimeID string
}
func (d *Daemon) taskWakeupLoop(ctx context.Context, taskWakeups chan<- taskWakeup) {
backoff := time.Second
runtimeSetCh, unsub := d.runtimeSet.Subscribe()
defer unsub()
for {
runtimeIDs := d.allRuntimeIDs()
connectedFor, err := d.runTaskWakeupConnection(ctx, runtimeIDs, taskWakeups, runtimeSetCh)
if ctx.Err() != nil {
return
}
if errors.Is(err, errRuntimeSetChanged) {
backoff = time.Second
continue
}
if shouldResetTaskWakeupBackoff(connectedFor) {
backoff = time.Second
}
if err != nil {
d.logger.Debug("task wakeup websocket unavailable; polling fallback remains active", "error", err, "retry_in", backoff)
}
if err := sleepWithContextOrRuntimeChange(ctx, jitterDuration(backoff), runtimeSetCh); err != nil {
return
}
if backoff < taskWakeupMaxBackoff {
backoff *= 2
if backoff > taskWakeupMaxBackoff {
backoff = taskWakeupMaxBackoff
}
}
}
}
func shouldResetTaskWakeupBackoff(connectedFor time.Duration) bool {
if connectedFor <= 0 {
return false
}
return taskWakeupBackoffResetAfter <= 0 || connectedFor >= taskWakeupBackoffResetAfter
}
func jitterDuration(d time.Duration) time.Duration {
if d <= 0 {
return d
}
spread := d / 5
if spread <= 0 {
return d
}
delta := time.Duration(rand.Int63n(int64(spread)*2+1)) - spread
return d + delta
}
func (d *Daemon) runTaskWakeupConnection(ctx context.Context, runtimeIDs []string, taskWakeups chan<- taskWakeup, runtimeSetCh <-chan struct{}) (time.Duration, error) {
wsURL, err := taskWakeupURL(d.cfg.ServerBaseURL, runtimeIDs)
if err != nil {
return 0, err
}
headers := http.Header{}
if token := d.client.Token(); token != "" {
headers.Set("Authorization", "Bearer "+token)
}
if d.client.platform != "" {
headers.Set("X-Client-Platform", d.client.platform)
}
if d.client.version != "" {
headers.Set("X-Client-Version", d.client.version)
}
if d.client.os != "" {
headers.Set("X-Client-OS", d.client.os)
}
// Advertise the same capabilities as the HTTP path so a claim built over
// this WS connection gets identical capability gating (MUL-4257).
headers.Set("X-Client-Capabilities", daemonClientCapabilities())
dialer := websocket.Dialer{HandshakeTimeout: 10 * time.Second}
conn, _, err := dialer.DialContext(ctx, wsURL, headers)
if err != nil {
return 0, err
}
connectedAt := time.Now()
uptime := func() time.Duration { return time.Since(connectedAt) }
defer conn.Close()
// HTTP heartbeats resume the moment WS detaches so the freshness window
// from a previous connection cannot keep them silenced past disconnect.
defer d.clearWSHeartbeatAcks()
d.logger.Info("task wakeup websocket connected", "runtimes", len(runtimeIDs))
signalTaskWakeup(taskWakeups, "")
// signalTaskWakeup only wakes idle ClaimTask pollers. In-flight tasks and
// the workspace sync loop park on coarse tickers (5s and 30s) that do not
// observe the wakeup channel, so anything the server changed during the
// WS gap — task cancellation or runtime updates — stays invisible to
// them until the next tick. Repository bindings and workspace settings
// refresh when a checkout needs them. The reconcile broadcaster nudges
// those loops to re-check immediately. broadcast() debounces back-to-back
// calls so a flapping connection cannot fan out into a request stampede.
if d.reconcile != nil {
d.reconcile.broadcast()
}
// Serialize all writes through a single channel: the gorilla/websocket
// Conn does not allow concurrent WriteMessage calls, and the heartbeat
// sender now coexists with future server-initiated writes. The buffer
// is sized to fit a full per-runtime heartbeat batch plus headroom; a
// fixed 8-slot queue would silently drop heartbeats once a daemon
// watched more than ~8 runtimes (typical when one machine connects to
// several workspaces), even when the network was healthy.
writeBufSize := 16
if 2*len(runtimeIDs) > writeBufSize {
writeBufSize = 2 * len(runtimeIDs)
}
writes := make(chan *wsOutbound, writeBufSize)
writerDone := make(chan struct{})
go d.runWSWriter(conn, writes, writerDone)
// Attach the generic WS RPC sender (MUL-4257) to this connection's write
// channel. Guarded so a Call racing teardown never sends on the closed
// `writes` channel: teardown flips sendClosed under sendMu before
// close(writes), and the sender holds sendMu across its non-blocking send.
var sendMu sync.Mutex
sendClosed := false
d.wsRPC.attach(func(frame []byte) (*wsOutbound, error) {
sendMu.Lock()
defer sendMu.Unlock()
if sendClosed {
return nil, errWSRPCUnavailable
}
item := &wsOutbound{data: frame}
select {
case writes <- item:
return item, nil
default:
return nil, errWSRPCWriteBufferFull
}
})
// A (re)connect may be a freshly-upgraded server: re-probe the batch claim
// route rather than staying on the legacy fallback forever (MUL-4257).
d.batchClaimUnsupported.Store(false)
heartbeatCtx, cancelHeartbeat := context.WithCancel(ctx)
hbDone := make(chan struct{})
go func() {
defer close(hbDone)
d.runWSHeartbeatSender(heartbeatCtx, runtimeIDs, writes)
}()
errCh := make(chan error, 1)
go func() {
errCh <- d.readTaskWakeupMessages(conn, taskWakeups)
}()
// Defer cleanup must shut goroutines down in this order:
// 1. cancel the heartbeat sender's ctx
// 2. wait for the sender to actually return — only then is it safe
// to close the writes channel without a "send on closed channel"
// panic from sendWSHeartbeats
// 3. close writes; the writer drains and exits
// 4. wait for the writer to finish so it doesn't outlive the conn
//
// LIFO defer order would close writes before the sender stops, so the
// teardown is folded into a single deferred function instead.
defer func() {
// Close the socket FIRST, before failing pending RPCs. Otherwise a
// queued tasks.claim frame would still be flushed to the (on a normal
// runtimeSetCh reconnect) still-alive socket AFTER attach(nil) has made
// the RPC fall over to HTTP — the server would then commit that WS
// claim on top of the HTTP fallback, double-claiming the same free
// slots (MUL-4257, Sol-Boy review). With the conn closed here,
// runWSWriter's next write errors and it DISCARDS the queue instead of
// delivering it.
conn.Close()
// Detach RPC (fails pending → HTTP fallback, now safe since the queued
// frame will be dropped), and flip the send-closed flag under sendMu so
// any in-flight guarded send finishes before we close writes.
d.wsRPC.attach(nil)
sendMu.Lock()
sendClosed = true
sendMu.Unlock()
cancelHeartbeat()
<-hbDone
close(writes)
<-writerDone
}()
select {
case <-ctx.Done():
return uptime(), ctx.Err()
case <-runtimeSetCh:
return uptime(), errRuntimeSetChanged
case err := <-errCh:
return uptime(), err
}
}
// runWSWriter funnels writes from the heartbeat sender (and any future
// daemon-initiated message) into a single goroutine. gorilla/websocket
// requires that all WriteMessage calls happen from the same goroutine.
func (d *Daemon) runWSWriter(conn *websocket.Conn, writes <-chan *wsOutbound, done chan<- struct{}) {
defer close(done)
for item := range writes {
// Skip frames whose RPC caller already gave up: delivering them after a
// fallback would double-claim (MUL-4257). beginWrite also marks the
// frame sent so a racing cancel() can no longer reclaim it.
if !item.beginWrite() {
continue
}
conn.SetWriteDeadline(time.Now().Add(10 * time.Second))
if err := conn.WriteMessage(websocket.TextMessage, item.data); err != nil {
d.logger.Debug("task wakeup websocket write failed", "error", err)
conn.Close()
// Drain remaining frames so the producers don't block forever
// while waiting for runTaskWakeupConnection to close the channel.
for range writes {
}
return
}
}
}
// runWSHeartbeatSender emits a daemon:heartbeat per runtime every
// HeartbeatInterval. The first batch fires immediately so the server learns
// the connection identity without waiting a full interval. Frames are queued
// to the writer; if the queue is full the heartbeat is dropped (the
// freshness window is short enough that one missed beat just means HTTP will
// pick it up next tick).
func (d *Daemon) runWSHeartbeatSender(ctx context.Context, runtimeIDs []string, writes chan<- *wsOutbound) {
d.sendWSHeartbeats(ctx, runtimeIDs, writes)
interval := d.cfg.HeartbeatInterval
if interval <= 0 {
interval = 15 * time.Second
}
ticker := time.NewTicker(interval)
defer ticker.Stop()
for {
select {
case <-ctx.Done():
return
case <-ticker.C:
d.sendWSHeartbeats(ctx, runtimeIDs, writes)
}
}
}
func (d *Daemon) sendWSHeartbeats(ctx context.Context, runtimeIDs []string, writes chan<- *wsOutbound) {
for _, rid := range runtimeIDs {
if ctx.Err() != nil {
return
}
frame, err := json.Marshal(protocol.Message{
Type: protocol.EventDaemonHeartbeat,
Payload: marshalRaw(protocol.DaemonHeartbeatRequestPayload{RuntimeID: rid, SupportsBatchImport: true}),
})
if err != nil {
d.logger.Debug("ws heartbeat marshal failed", "error", err, "runtime_id", rid)
continue
}
select {
case writes <- &wsOutbound{data: frame}:
case <-ctx.Done():
return
default:
// Writer is backed up; drop this beat. HTTP heartbeat will resume
// on its next tick once the freshness window expires.
d.logger.Debug("ws heartbeat dropped: writer backlog", "runtime_id", rid)
}
}
}
func marshalRaw(v any) json.RawMessage {
data, err := json.Marshal(v)
if err != nil {
return nil
}
return data
}
// handleWSHeartbeatAck dispatches one heartbeat_ack received over the WS
// task-wakeup connection. Extracted from readTaskWakeupMessages so tests can
// exercise the branching logic without a real WebSocket.
//
// A RuntimeGone=true ack is the WebSocket twin of an HTTP 404 "runtime not
// found": it tells the daemon the runtime row was deleted server-side. We
// route it through the same self-heal entry point as the HTTP path and do
// NOT record a heartbeat freshness mark — pretending the runtime is alive
// would let HTTP keep skipping its own heartbeat against the dead UUID.
//
// handleRuntimeGone uses the daemon root context for its register call, so
// this function can safely pass any caller context here.
func (d *Daemon) handleWSHeartbeatAck(ctx context.Context, ack *HeartbeatResponse) {
if ack == nil || ack.RuntimeID == "" {
return
}
if ack.RuntimeGone {
go d.handleRuntimeGone(ack.RuntimeID)
return
}
d.recordWSHeartbeatAck(ack.RuntimeID)
d.handleHeartbeatActions(ctx, ack.RuntimeID, ack)
}
func (d *Daemon) readTaskWakeupMessages(conn *websocket.Conn, taskWakeups chan<- taskWakeup) error {
d.configureTaskWakeupReadLiveness(conn)
for {
_, raw, err := conn.ReadMessage()
if err != nil {
return err
}
if err := d.extendTaskWakeupReadDeadline(conn); err != nil {
return err
}
var msg protocol.Message
if err := json.Unmarshal(raw, &msg); err != nil {
d.logger.Debug("task wakeup websocket invalid message", "error", err)
continue
}
switch msg.Type {
case protocol.EventDaemonTaskAvailable:
var payload protocol.TaskAvailablePayload
if len(msg.Payload) > 0 {
if err := json.Unmarshal(msg.Payload, &payload); err != nil {
d.logger.Debug("task wakeup websocket invalid payload", "error", err)
continue
}
}
if payload.RuntimeID != "" {
d.logger.Debug("task wakeup received", "runtime_id", payload.RuntimeID, "task_id", payload.TaskID)
}
signalTaskWakeup(taskWakeups, payload.RuntimeID)
case protocol.EventDaemonRuntimeProfilesChanged:
var payload protocol.RuntimeProfilesChangedPayload
if err := json.Unmarshal(msg.Payload, &payload); err != nil {
d.logger.Debug("runtime profile refresh websocket invalid payload", "error", err)
continue
}
if payload.WorkspaceID == "" {
d.logger.Debug("runtime profile refresh websocket missing workspace_id")
continue
}
go d.handleRuntimeProfilesChanged(payload)
case protocol.EventDaemonWorkspacesChanged:
if d.workspaceChanges != nil {
d.workspaceChanges.broadcast()
}
case protocol.EventDaemonHeartbeatAck:
var ack HeartbeatResponse
if err := json.Unmarshal(msg.Payload, &ack); err != nil {
d.logger.Debug("ws heartbeat ack invalid payload", "error", err)
continue
}
d.handleWSHeartbeatAck(context.Background(), &ack)
case protocol.EventDaemonRPCResponse:
var resp protocol.RPCResponsePayload
if err := json.Unmarshal(msg.Payload, &resp); err != nil {
d.logger.Debug("ws rpc response invalid payload", "error", err)
continue
}
d.wsRPC.deliver(resp)
}
}
}
func (d *Daemon) configureTaskWakeupReadLiveness(conn *websocket.Conn) {
conn.SetReadLimit(64 * 1024)
if err := d.extendTaskWakeupReadDeadline(conn); err != nil {
d.logger.Debug("task wakeup websocket read deadline failed", "error", err)
}
conn.SetPongHandler(func(string) error {
return d.extendTaskWakeupReadDeadline(conn)
})
conn.SetPingHandler(func(appData string) error {
if err := d.extendTaskWakeupReadDeadline(conn); err != nil {
return err
}
return conn.WriteControl(websocket.PongMessage, []byte(appData), time.Now().Add(taskWakeupWriteWait))
})
}
func (d *Daemon) extendTaskWakeupReadDeadline(conn *websocket.Conn) error {
return conn.SetReadDeadline(time.Now().Add(taskWakeupPongWait))
}
func (d *Daemon) handleRuntimeProfilesChanged(payload protocol.RuntimeProfilesChangedPayload) {
if payload.WorkspaceID == "" {
return
}
if err := d.refreshWorkspaceRuntimeProfiles(d.recoveryContext(), payload.WorkspaceID); err != nil {
d.logger.Debug("runtime profile refresh websocket hint failed",
"workspace_id", payload.WorkspaceID,
"runtime_profile_id", payload.RuntimeProfileID,
"error", err)
}
}
func signalTaskWakeup(taskWakeups chan<- taskWakeup, runtimeID string) {
select {
case taskWakeups <- taskWakeup{runtimeID: runtimeID}:
default:
}
}
func taskWakeupURL(baseURL string, runtimeIDs []string) (string, error) {
u, err := url.Parse(strings.TrimSpace(baseURL))
if err != nil {
return "", fmt.Errorf("invalid daemon server URL: %w", err)
}
switch u.Scheme {
case "http":
u.Scheme = "ws"
case "https":
u.Scheme = "wss"
case "ws", "wss":
default:
return "", fmt.Errorf("daemon server URL must use http, https, ws, or wss")
}
u.Path = strings.TrimRight(u.Path, "/") + "/api/daemon/ws"
u.RawPath = ""
q := u.Query()
ids := append([]string(nil), runtimeIDs...)
sort.Strings(ids)
if len(ids) > 0 {
q.Set("runtime_ids", strings.Join(ids, ","))
}
u.RawQuery = q.Encode()
u.Fragment = ""
return u.String(), nil
}
func sleepWithContextOrRuntimeChange(ctx context.Context, d time.Duration, runtimeSetCh <-chan struct{}) error {
timer := time.NewTimer(d)
defer timer.Stop()
select {
case <-ctx.Done():
return ctx.Err()
case <-runtimeSetCh:
return nil
case <-timer.C:
return nil
}
}