mirror of
https://github.com/mudler/LocalAI.git
synced 2026-07-31 10:28:43 -04:00
* feat(vram): add vrambudget primitive for per-node VRAM caps Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): apply default VRAM budget in xsysinfo aggregate getters Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): wire LOCALAI_VRAM_BUDGET flag to xsysinfo default budget Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): persist VRAM budget via runtime settings with live apply Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * test(vram): reset process-global VRAM budget after runtime-settings spec Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): add VRAM budget field to Settings page Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): store and enforce per-node VRAM budget in the node registry Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): apply per-node VRAM budget in router hardware defaults Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): report worker VRAM budget in node registration The distributed worker now reports its operator-set VRAM budget string (LOCALAI_VRAM_BUDGET) to the server on registration. The worker keeps reporting RAW total/available VRAM and never sets the xsysinfo process-global budget (that stays standalone-only); the server resolves and enforces the budget uniformly (Task 6). Also closes a Task 6 gap: on re-registration, a struct Updates zero-skips an empty budget, so a worker that dropped LOCALAI_VRAM_BUDGET left the stale cap in place. For non-admin-override nodes the budget columns are now force-written (map Updates) even when empty, so removing the env var clears the cap; admin overrides are preserved unchanged. Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * style(vram): drop em dash from worker-clear comment Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): add node VRAM budget admin endpoints Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): add node VRAM budget control to the node UI Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat(vram): expose set_node_vram_budget MCP admin tool Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * docs(vram): document LOCALAI_VRAM_BUDGET and node VRAM budget UI Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * fix(vram): avoid double-applying VRAM budget in GetResourceAggregateInfo The GPU-branch aggregate returned by GetResourceInfo is sourced from GetGPUAggregateInfo, which already caps total/free/used against the process-wide VRAM budget. GetResourceAggregateInfo then applied the budget a second time. For an absolute budget this is idempotent, but for a percentage budget b.Apply resolves the ceiling as a fraction of its input total, so a second pass yields P*(P*T) instead of P*T and distorts UsagePercent (read by the memory reclaimer in pkg/model/watchdog.go). Remove the redundant second application so the budget is applied exactly once, against the raw physical totals, upstream in GetGPUAggregateInfo. Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * fix(vram): implement SetNodeVRAMBudget on mcp assistant test stub The LocalAIClient interface gained SetNodeVRAMBudget; the stubClient in core/http/endpoints/mcp used by the assistant tests is a separate implementer and needs the method too (broke golangci-lint typecheck and both test jobs). Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Co-authored-by: Ettore Di Giacinto <mudler@localai.io>
160 lines
7.5 KiB
Go
160 lines
7.5 KiB
Go
package routes
|
|
|
|
import (
|
|
"crypto/subtle"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/mudler/LocalAI/core/config"
|
|
"github.com/mudler/LocalAI/core/http/endpoints/localai"
|
|
"github.com/mudler/LocalAI/core/services/galleryop"
|
|
"github.com/mudler/LocalAI/core/services/nodes"
|
|
"github.com/mudler/LocalAI/pkg/natsauth"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
// nodeReadyMiddleware returns middleware that checks the node registry is available.
|
|
func nodeReadyMiddleware(registry *nodes.NodeRegistry) echo.MiddlewareFunc {
|
|
return func(next echo.HandlerFunc) echo.HandlerFunc {
|
|
return func(c echo.Context) error {
|
|
if registry == nil {
|
|
return c.JSON(http.StatusServiceUnavailable, map[string]string{
|
|
"error": "distributed mode not enabled",
|
|
})
|
|
}
|
|
return next(c)
|
|
}
|
|
}
|
|
}
|
|
|
|
// RegisterNodeSelfServiceRoutes registers /api/node/ endpoints used by backend
|
|
// nodes themselves (register, heartbeat, drain, query own models, deregister).
|
|
// These are authenticated via the registration token, not admin middleware.
|
|
//
|
|
// TODO(security): Node self-service endpoints authenticate via shared registration
|
|
// token but do not verify per-node identity. A compromised worker can heartbeat/drain/
|
|
// deregister other nodes. Future: issue per-node JWT at registration, validate node
|
|
// identity on subsequent requests (compare :id param with token subject).
|
|
func RegisterNodeSelfServiceRoutes(e *echo.Echo, registry *nodes.NodeRegistry, registrationToken string, autoApprove bool, authDB *gorm.DB, hmacSecret string, natsCfg natsauth.Config) {
|
|
if registry == nil {
|
|
return
|
|
}
|
|
|
|
readyMw := nodeReadyMiddleware(registry)
|
|
tokenAuthMw := nodeTokenAuth(registrationToken)
|
|
|
|
node := e.Group("/api/node", readyMw, tokenAuthMw)
|
|
node.POST("/register", localai.RegisterNodeEndpoint(registry, registrationToken, autoApprove, authDB, hmacSecret, natsCfg))
|
|
node.POST("/:id/heartbeat", localai.HeartbeatEndpoint(registry))
|
|
node.POST("/:id/drain", localai.DrainNodeEndpoint(registry))
|
|
node.POST("/:id/resume", localai.ResumeNodeEndpoint(registry))
|
|
node.POST("/:id/deregister", localai.DeactivateNodeEndpoint(registry))
|
|
node.GET("/:id/models", localai.GetNodeModelsEndpoint(registry))
|
|
node.DELETE("/:id", localai.DeactivateNodeEndpoint(registry))
|
|
}
|
|
|
|
// RegisterNodeAdminRoutes registers /api/nodes/ endpoints used by admins
|
|
// (list, get, get models, drain, delete, approve, backend management). Protected by admin middleware.
|
|
//
|
|
// galleryService/opcache/appConfig are threaded in for the async node-scoped
|
|
// backend install path (POST /:id/backends/install). That handler enqueues a
|
|
// ManagementOp on the gallery channel rather than blocking on a NATS reply, so
|
|
// the browser gets HTTP 202 + jobID immediately instead of waiting up to 3 minutes.
|
|
func RegisterNodeAdminRoutes(e *echo.Echo, registry *nodes.NodeRegistry, unloader nodes.NodeCommandSender, galleryService *galleryop.GalleryService, opcache *galleryop.OpCache, appConfig *config.ApplicationConfig, adminMw echo.MiddlewareFunc, authDB *gorm.DB, hmacSecret string, registrationToken string, natsCfg natsauth.Config) {
|
|
if registry == nil {
|
|
return
|
|
}
|
|
|
|
readyMw := nodeReadyMiddleware(registry)
|
|
|
|
admin := e.Group("/api/nodes", readyMw, adminMw)
|
|
admin.GET("", localai.ListNodesEndpoint(registry))
|
|
|
|
// Cluster-wide loaded models (registered before /:id to avoid route conflicts)
|
|
admin.GET("/models", localai.ListAllNodeModelsEndpoint(registry))
|
|
|
|
// Model scheduling (registered before /:id to avoid route conflicts)
|
|
admin.GET("/scheduling", localai.ListSchedulingEndpoint(registry))
|
|
admin.GET("/scheduling/:model", localai.GetSchedulingEndpoint(registry))
|
|
admin.POST("/scheduling", localai.SetSchedulingEndpoint(registry))
|
|
admin.DELETE("/scheduling/:model", localai.DeleteSchedulingEndpoint(registry))
|
|
|
|
admin.GET("/:id", localai.GetNodeEndpoint(registry))
|
|
admin.GET("/:id/models", localai.GetNodeModelsEndpoint(registry))
|
|
admin.DELETE("/:id", localai.DeregisterNodeEndpoint(registry))
|
|
admin.POST("/:id/drain", localai.DrainNodeEndpoint(registry))
|
|
admin.POST("/:id/resume", localai.ResumeNodeEndpoint(registry))
|
|
admin.POST("/:id/approve", localai.ApproveNodeEndpoint(registry, authDB, hmacSecret, natsCfg))
|
|
|
|
// Backend management on workers
|
|
admin.GET("/:id/backends", localai.ListBackendsOnNodeEndpoint(unloader, registry))
|
|
admin.POST("/:id/backends/install", localai.InstallBackendOnNodeEndpoint(unloader, galleryService, opcache, appConfig))
|
|
// Upgrade is a distinct route (not install) because the worker's
|
|
// backend.install handler short-circuits when the backend already exists
|
|
// on disk; only the Upgrade op path force-reinstalls.
|
|
admin.POST("/:id/backends/upgrade", localai.UpgradeBackendOnNodeEndpoint(galleryService, opcache, appConfig))
|
|
admin.POST("/:id/backends/delete", localai.DeleteBackendOnNodeEndpoint(unloader))
|
|
|
|
// Model management on workers
|
|
admin.POST("/:id/models/unload", localai.UnloadModelOnNodeEndpoint(unloader, registry))
|
|
admin.POST("/:id/models/delete", localai.DeleteModelOnNodeEndpoint(unloader, registry))
|
|
|
|
// Backend log streaming (proxied from worker HTTP server)
|
|
admin.GET("/:id/backend-logs", localai.NodeBackendLogsListEndpoint(registry, registrationToken))
|
|
admin.GET("/:id/backend-logs/:modelId", localai.NodeBackendLogsLinesEndpoint(registry, registrationToken))
|
|
|
|
// Label management
|
|
admin.GET("/:id/labels", localai.GetNodeLabelsEndpoint(registry))
|
|
admin.PUT("/:id/labels", localai.SetNodeLabelsEndpoint(registry))
|
|
admin.PATCH("/:id/labels", localai.MergeNodeLabelsEndpoint(registry))
|
|
admin.DELETE("/:id/labels/:key", localai.DeleteNodeLabelEndpoint(registry))
|
|
|
|
// Per-node replica capacity. PUT sets a sticky admin override that
|
|
// survives worker restarts. DELETE clears the override so the worker's
|
|
// CLI flag takes over again at the next re-registration.
|
|
admin.PUT("/:id/max-replicas-per-model", localai.UpdateMaxReplicasPerModelEndpoint(registry))
|
|
admin.DELETE("/:id/max-replicas-per-model", localai.ResetMaxReplicasPerModelEndpoint(registry))
|
|
|
|
// Per-node VRAM allocation budget. PUT sets a sticky admin override that
|
|
// survives worker restarts; DELETE clears it so the worker's reported
|
|
// budget takes over again at the next re-registration.
|
|
admin.PUT("/:id/vram-budget", localai.UpdateVRAMBudgetEndpoint(registry))
|
|
admin.DELETE("/:id/vram-budget", localai.ResetVRAMBudgetEndpoint(registry))
|
|
|
|
// WebSocket proxy for real-time log streaming from workers
|
|
e.GET("/ws/nodes/:id/backend-logs/:modelId", localai.NodeBackendLogsWSEndpoint(registry, registrationToken), readyMw, adminMw)
|
|
}
|
|
|
|
// nodeTokenAuth validates the registration token for node self-service endpoints.
|
|
// When registrationToken is empty (single-node / non-distributed mode), these
|
|
// endpoints are unprotected. This is intentional: in single-node mode there are
|
|
// no remote workers to authenticate. Operators enabling distributed mode MUST
|
|
// set a registration token via LOCALAI_REGISTRATION_TOKEN or config.
|
|
//
|
|
// It validates the token from an Authorization: Bearer <token> header using
|
|
// constant-time comparison.
|
|
func nodeTokenAuth(registrationToken string) echo.MiddlewareFunc {
|
|
return func(next echo.HandlerFunc) echo.HandlerFunc {
|
|
return func(c echo.Context) error {
|
|
if registrationToken == "" {
|
|
return next(c)
|
|
}
|
|
|
|
token, ok := strings.CutPrefix(c.Request().Header.Get("Authorization"), "Bearer ")
|
|
if !ok {
|
|
return c.JSON(http.StatusUnauthorized, map[string]string{
|
|
"error": "missing or invalid Authorization header",
|
|
})
|
|
}
|
|
if subtle.ConstantTimeCompare([]byte(token), []byte(registrationToken)) != 1 {
|
|
return c.JSON(http.StatusUnauthorized, map[string]string{
|
|
"error": "invalid registration token",
|
|
})
|
|
}
|
|
|
|
return next(c)
|
|
}
|
|
}
|
|
}
|