File size: 35,172 Bytes
f1dd159 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 | package app
import (
"context"
"errors"
"fmt"
"io"
"log/slog"
"net/http"
"strings"
"sync"
"time"
accountapp "github.com/chenyme/grok2api/backend/internal/application/account"
accountsyncapp "github.com/chenyme/grok2api/backend/internal/application/accountsync"
"github.com/chenyme/grok2api/backend/internal/application/adminauth"
auditapp "github.com/chenyme/grok2api/backend/internal/application/audit"
clientkeyapp "github.com/chenyme/grok2api/backend/internal/application/clientkey"
dashboardapp "github.com/chenyme/grok2api/backend/internal/application/dashboard"
egressapp "github.com/chenyme/grok2api/backend/internal/application/egress"
"github.com/chenyme/grok2api/backend/internal/application/gateway"
invalidationapp "github.com/chenyme/grok2api/backend/internal/application/invalidation"
mediaapp "github.com/chenyme/grok2api/backend/internal/application/media"
modelapp "github.com/chenyme/grok2api/backend/internal/application/model"
quotarecoveryapp "github.com/chenyme/grok2api/backend/internal/application/quotarecovery"
settingsapp "github.com/chenyme/grok2api/backend/internal/application/settings"
updatecheckapp "github.com/chenyme/grok2api/backend/internal/application/updatecheck"
"github.com/chenyme/grok2api/backend/internal/buildinfo"
"github.com/chenyme/grok2api/backend/internal/domain/account"
"github.com/chenyme/grok2api/backend/internal/infra/config"
infraegress "github.com/chenyme/grok2api/backend/internal/infra/egress"
inframedia "github.com/chenyme/grok2api/backend/internal/infra/media"
"github.com/chenyme/grok2api/backend/internal/infra/persistence/relational"
"github.com/chenyme/grok2api/backend/internal/infra/provider"
cliprovider "github.com/chenyme/grok2api/backend/internal/infra/provider/cli"
consoleprovider "github.com/chenyme/grok2api/backend/internal/infra/provider/console"
webprovider "github.com/chenyme/grok2api/backend/internal/infra/provider/web"
"github.com/chenyme/grok2api/backend/internal/infra/runtime/memory"
redisruntime "github.com/chenyme/grok2api/backend/internal/infra/runtime/redis"
"github.com/chenyme/grok2api/backend/internal/infra/security"
"github.com/chenyme/grok2api/backend/internal/pkg/batch"
"github.com/chenyme/grok2api/backend/internal/pkg/perfmetrics"
"github.com/chenyme/grok2api/backend/internal/pkg/reasoningreplay"
"github.com/chenyme/grok2api/backend/internal/repository"
httpserver "github.com/chenyme/grok2api/backend/internal/transport/http"
httpmiddleware "github.com/chenyme/grok2api/backend/internal/transport/http/middleware"
)
const (
responseOwnershipCleanupBatchSize = 1000
webResponseStateCleanupBatchSize = 50
responseCleanupMaxBatches = 100
responseCleanupInterval = 5 * time.Minute
responseCleanupBudget = 30 * time.Second
responseCleanupLockTTL = 2 * time.Minute
)
// Application 管理后端进程生命周期和本地后台任务。
type Application struct {
logger *slog.Logger
database *relational.Database
server *http.Server
audits *auditapp.Service
responses repository.ResponseRepository
cleanupLock repository.DistributedLock
runtime io.Closer
settingsBus repository.SettingsChangeBus
invalidationBus repository.InvalidationBus
settings *settingsapp.Service
gateway *gateway.Service
media *mediaapp.Service
quotaRecovery *quotarecoveryapp.Service
accounts *accountapp.Service
models *modelapp.Service
clientKeys *clientkeyapp.Service
updates *updatecheckapp.Service
invalidations *invalidationapp.Service
accountRepo repository.AccountRepository
modelRepo repository.ModelRepository
providers *provider.Registry
web *webprovider.Adapter
egress *infraegress.Manager
egressOps *egressapp.Service
startup *startupState
}
// New 完成数据库、Provider、应用服务和 HTTP 路由装配。
func New(ctx context.Context, cfg config.Config, logger *slog.Logger) (*Application, error) {
var database *relational.Database
var err error
switch cfg.Database.Driver {
case "sqlite":
database, err = relational.OpenSQLite(ctx, cfg.Database.SQLite.Path)
case "postgres":
database, err = relational.OpenPostgres(ctx, cfg.Database.Postgres.DSN, cfg.Database.Postgres.MaxOpenConns, cfg.Database.Postgres.MaxIdleConns)
default:
return nil, fmt.Errorf("不支持的数据库驱动: %s", cfg.Database.Driver)
}
if err != nil {
return nil, err
}
if err := database.InitializeSchema(ctx); err != nil {
database.Close()
return nil, err
}
cipher, err := security.NewCipher(cfg.Secrets.CredentialEncryptionKey)
if err != nil {
database.Close()
return nil, err
}
adminRepo := relational.NewAdminRepository(database)
sessionRepo := relational.NewAdminSessionRepository(database)
accountRepo := relational.NewAccountRepository(database)
modelRepo := relational.NewModelRepository(database)
clientKeyRepo := relational.NewClientKeyRepository(database)
auditRepo := relational.NewAuditRepository(database)
responseRepo := relational.NewResponseRepository(database)
dashboardRepo := relational.NewDashboardRepository(database)
runtimeSettingsRepo := relational.NewRuntimeSettingsRepository(database, cipher)
egressRepo := relational.NewEgressRepository(database)
mediaJobRepo := relational.NewMediaJobRepository(database)
mediaAssetRepo := relational.NewMediaAssetRepository(database)
mediaUploadTicketRepo := relational.NewMediaUploadTicketRepository(database)
loadedConfig, settingsUpdatedAt, settingsRevision, err := settingsapp.LoadPersisted(ctx, cfg, runtimeSettingsRepo)
if err != nil {
database.Close()
return nil, err
}
cfg = loadedConfig
localMediaStore, err := inframedia.NewLocalStore(cfg.Media.Local.Path)
if err != nil {
database.Close()
return nil, err
}
if err := preflightDeployment(cfg); err != nil {
database.Close()
return nil, err
}
var rateLimiter repository.RateLimiter
var concurrency repository.ConcurrencyLimiter
var sticky repository.StickySessionRepository
var reasoningReplayStore repository.ReasoningReplayRepository
var deviceSessions repository.DeviceSessionRepository
var refreshLock repository.DistributedLock
var settingsBus repository.SettingsChangeBus
var quotaQueue repository.QuotaRecoveryQueue
var quotaRefreshState repository.QuotaRefreshCoordinator
var observedModelStore repository.ObservedModelStateRepository
var invalidationBus repository.InvalidationBus
var runtimeStore io.Closer
runtimeHealth := func(context.Context) error { return nil }
switch cfg.RuntimeStore.Driver {
case "redis":
redisStore, openErr := redisruntime.Open(ctx, redisruntime.Config{
Address: cfg.RuntimeStore.Redis.Address, Username: cfg.RuntimeStore.Redis.Username,
Password: cfg.RuntimeStore.Redis.Password, Database: cfg.RuntimeStore.Redis.Database,
KeyPrefix: cfg.RuntimeStore.Redis.KeyPrefix, TLS: cfg.RuntimeStore.Redis.TLS,
ConcurrencyLease: cfg.Server.RequestTimeout.Value() + time.Minute,
})
if openErr != nil {
database.Close()
return nil, openErr
}
runtimeStore = redisStore
invalidationBus = redisStore
runtimeHealth = redisStore.Ping
rateLimiter = redisStore
concurrency = redisruntime.NewConcurrencyLimiter(redisStore)
sticky = redisStore
reasoningReplayStore = redisruntime.NewReasoningReplayStore(redisStore)
deviceSessions = redisruntime.NewDeviceSessionStore(redisStore)
refreshLock = redisruntime.NewLockStore(redisStore)
settingsBus = redisStore
quotaQueue = redisStore
quotaRefreshState = redisStore
observedModelStore = redisStore
case "memory":
rateLimiter = memory.NewRateLimiter()
concurrency = memory.NewConcurrencyLimiter()
sticky = memory.NewStickyStore()
reasoningReplayStore = memory.NewReasoningReplayStore(cfg.Routing.ReasoningReplayMaxEntries)
deviceSessions = memory.NewDeviceSessionStore()
refreshLock = memory.NewLockStore()
quotaQueue = memory.NewQuotaRecoveryQueue()
quotaRefreshState = memory.NewQuotaRefreshCoordinator()
default:
database.Close()
return nil, fmt.Errorf("不支持的运行态驱动: %s", cfg.RuntimeStore.Driver)
}
logger.Info("deployment_topology", "replicas", cfg.Deployment.Replicas, "instance_id", cfg.Deployment.InstanceID, "cluster_id", cfg.Deployment.ClusterID, "database", cfg.Database.Driver, "runtime_store", cfg.RuntimeStore.Driver, "media_driver", cfg.Media.Driver, "shared_media", cfg.Deployment.SharedMedia)
mediaService := mediaapp.NewServiceWithTickets(mediaAssetRepo, mediaJobRepo, mediaUploadTicketRepo, localMediaStore, refreshLock, mediaConfig(cfg))
egressManager := infraegress.NewManager(egressRepo, cipher)
egressManager.SetLogger(logger)
egressManager.SetClearanceLock(refreshLock)
egressManager.UpdateClearanceConfig(clearanceConfig(cfg))
egressManager.UpdateBuildResponseHeaderTimeout(cfg.Provider.Build.ResponseHeaderTimeout.Value())
cliAdapter := cliprovider.NewAdapter(cliprovider.Config{
BaseURL: cfg.Provider.Build.BaseURL, FallbackBaseURL: config.NormalizeBuildFallbackBaseURL(cfg.Provider.Build.FallbackBaseURL),
ClientVersion: cfg.Provider.Build.ClientVersion, ClientIdentifier: cfg.Provider.Build.ClientIdentifier,
TokenAuth: cfg.Provider.Build.TokenAuth, UserAgent: cfg.Provider.Build.UserAgent,
ResponseHeaderTimeout: cfg.Provider.Build.ResponseHeaderTimeout.Value(),
}, cipher)
cliAdapter.SetLogger(logger)
cliAdapter.SetEgress(egressManager)
cliAdapter.SetVideoUploadIssuer(mediaService)
reasoningReplay := reasoningreplay.New(reasoningReplayStore, reasoningreplay.Config{
Enabled: cfg.Routing.ReasoningReplayEnabled,
TTL: cfg.Routing.ReasoningReplayTTL.Value(),
}, logger)
cliAdapter.SetReasoningReplay(reasoningReplay)
webAdapter := webprovider.NewAdapter(webProviderConfig(cfg), egressManager, cipher, responseRepo, mediaService)
webAdapter.SetLogger(logger)
consoleAdapter := consoleprovider.NewAdapter(consoleProviderConfig(cfg), egressManager, cipher)
providers := provider.NewRegistry(cliAdapter, webAdapter, consoleAdapter)
if err := providers.Validate(); err != nil {
if runtimeStore != nil {
_ = runtimeStore.Close()
}
database.Close()
return nil, fmt.Errorf("校验 Provider 注册表: %w", err)
}
adminService := adminauth.NewService(adminRepo, sessionRepo, security.NewTokenService(cfg.Secrets.JWTSecret), cfg.Auth.AccessTokenTTL.Value(), cfg.Auth.RefreshTokenTTL.Value())
adminService.SetLoginRateLimiter(rateLimiter)
if err := adminService.Bootstrap(ctx, cfg.BootstrapAdmin.Username, cfg.BootstrapAdmin.Password); err != nil {
if runtimeStore != nil {
_ = runtimeStore.Close()
}
database.Close()
return nil, err
}
bulkPool := batch.NewSharedPool(maxBatchConcurrency(cfg.Batch), concurrency, "bulk:upstream")
importPool := batch.NewSharedChildPool(cfg.Batch.ImportConcurrency, concurrency, "bulk:import", bulkPool)
conversionPool := batch.NewSharedChildPool(cfg.Batch.ConversionConcurrency, concurrency, "bulk:conversion", bulkPool)
syncPool := batch.NewSharedChildPool(cfg.Batch.SyncConcurrency, concurrency, "bulk:sync", bulkPool)
refreshPool := batch.NewSharedChildPool(cfg.Batch.RefreshConcurrency, concurrency, "bulk:refresh", bulkPool)
// detectPool 固定 32 并发,与额度同步/续期隔离,避免全量探测挤占维护任务。
detectPool := batch.NewSharedChildPool(32, concurrency, "bulk:detect", bulkPool)
for _, pool := range []*batch.Pool{importPool, conversionPool, syncPool, refreshPool, detectPool} {
pool.UpdateJitter(cfg.Batch.RandomDelay.Value())
}
accountService := accountapp.NewService(accountRepo, auditRepo, deviceSessions, sticky, providers, cipher, refreshLock)
cliAdapter.SetFallbackMarker(accountService)
accountService.SetLogger(logger)
accountService.UpdateAutoCleanConfig(accountAutoCleanConfig(cfg.Accounts))
accountService.SetConcurrencyLimiter(concurrency)
accountService.SetQuotaRecoveryQueue(quotaQueue)
accountService.SetQuotaRefreshCoordinator(quotaRefreshState)
accountService.SetObservedModelStore(observedModelStore)
accountService.SetTaskPools(conversionPool, syncPool, refreshPool)
accountService.SetDetectPool(detectPool)
windows, err := accountRepo.ListQuotaRecoveryWindows(ctx, 100000)
if err != nil {
if runtimeStore != nil {
_ = runtimeStore.Close()
}
database.Close()
return nil, fmt.Errorf("加载 Web 额度恢复事件: %w", err)
}
for _, window := range windows {
if window.ResetAt != nil {
if err := quotaQueue.ScheduleQuotaRecovery(ctx, account.QuotaRecoveryEvent{AccountID: window.AccountID, Mode: window.Mode, DueAt: *window.ResetAt}); err != nil {
if runtimeStore != nil {
_ = runtimeStore.Close()
}
database.Close()
return nil, fmt.Errorf("恢复 Web 额度事件: %w", err)
}
}
}
modelService := modelapp.NewService(modelRepo, accountRepo, accountService, providers)
modelService.SetBulkPool(syncPool)
modelService.SetLogger(logger)
if err := modelRepo.ReplaceProviderRoutes(ctx, account.ProviderWeb, webprovider.Routes()); err != nil {
if runtimeStore != nil {
_ = runtimeStore.Close()
}
database.Close()
return nil, fmt.Errorf("初始化 Grok Web 模型目录: %w", err)
}
if err := modelRepo.ReplaceProviderRoutes(ctx, account.ProviderConsole, consoleprovider.Routes()); err != nil {
if runtimeStore != nil {
_ = runtimeStore.Close()
}
database.Close()
return nil, fmt.Errorf("初始化 Grok Console 模型目录: %w", err)
}
accountSyncService := accountsyncapp.NewService(logger, accountService, accountService, accountService, modelService)
accountSyncService.SetBulkPool(importPool)
accountSyncService.UpdateConcurrency(cfg.Batch.ImportConcurrency)
egressService := egressapp.NewService(egressRepo, cipher, infraegress.DefaultUserAgent, accountRepo)
egressService.SetClearanceManager(egressManager)
egressService.SetNodeProber(egressManager)
egressService.SetOperationsConfigInvalidator(egressManager)
clientKeyService := clientkeyapp.NewService(clientKeyRepo, rateLimiter, concurrency, cfg.ClientKeyDefaults.RPMLimit, cfg.ClientKeyDefaults.MaxConcurrent, cipher)
auditService := auditapp.NewService(auditRepo, logger, cfg.Audit.BufferSize, cfg.Audit.BatchSize, cfg.Audit.FlushInterval.Value())
auditService.UpdateWriterConfig(cfg.Audit.BatchSize, cfg.Audit.FlushInterval.Value(), cfg.Audit.CommitDelay.Value())
auditService.UpdateLedgerConfig(auditLedgerConfig(cfg.Audit))
auditService.SetCommitObserver(clientKeyService.CompleteBillingBatch)
auditService.SetDropObserver(clientKeyService.ReleaseBillingProtectionBatch)
dashboardService := dashboardapp.NewService(dashboardRepo)
selector := gateway.NewSelector(accountRepo, concurrency, sticky, providers, cfg.Routing.StickyTTL.Value(), cfg.Routing.CooldownBase.Value(), cfg.Routing.CooldownMax.Value(), cfg.Routing.CapacityWait.Value())
selector.UpdatePreferFreeBuild(cfg.Routing.PreferFreeBuild)
selector.UpdateSegmentedSelector(cfg.Routing.SegmentedSelectorEnabled, cfg.Routing.SegmentedMinCandidates, cfg.Routing.SegmentedWindowSize)
invalidationService := invalidationapp.NewService(invalidationBus, invalidationSourceInstance(cfg), func(event repository.InvalidationEvent) {
selector.ApplyInvalidation(event)
clientKeyService.ApplyInvalidation(event)
}, logger)
accountRepo.SetInvalidationObserver(invalidationService.Notify)
modelRepo.SetInvalidationObserver(invalidationService.Notify)
clientKeyRepo.SetInvalidationObserver(invalidationService.Notify)
gatewayService := gateway.NewService(modelService, auditService, accountService, clientKeyService, providers, selector, responseRepo, cfg.Routing.MaxAttempts)
gatewayService.UpdateMarkBuildChatDeniedAsReauth(cfg.Routing.MarkBuildChatDeniedAsReauth)
gatewayService.SetLogger(logger)
gatewayService.UpdateBuildForbiddenReauthPolicy(cfg.Accounts.MarkBuildForbiddenReauth, cfg.Accounts.BuildForbiddenReauthCodes)
gatewayService.UpdateRequestTimeout(cfg.Server.RequestTimeout.Value())
gatewayService.ConfigureMedia(mediaJobRepo, cfg.Provider.Web.MediaConcurrency)
gatewayService.ConfigureMediaAssets(mediaService)
quotaRecoveryService := quotarecoveryapp.NewService(logger, quotaQueue, accountService, cfg.Provider.Web.RecoveryBackoffBase.Value(), cfg.Provider.Web.RecoveryBackoffMax.Value())
quotaRecoveryService.SetBulkPool(syncPool)
inferenceConcurrency := httpmiddleware.NewConcurrencyGate(cfg.Server.MaxConcurrentRequests)
var notifySettings func(context.Context)
if settingsBus != nil {
notifySettings = func(notifyCtx context.Context) {
publishCtx, cancel := context.WithTimeout(context.WithoutCancel(notifyCtx), 3*time.Second)
defer cancel()
if err := settingsBus.PublishSettingsChanged(publishCtx); err != nil {
logger.Warn("settings_change_publish_failed", "error", err)
}
}
}
settingsService := settingsapp.NewService(cfg, settingsUpdatedAt, settingsRevision, runtimeSettingsRepo, notifySettings, func(next config.Config) {
inferenceConcurrency.UpdateLimit(next.Server.MaxConcurrentRequests)
bulkPool.UpdateLimit(maxBatchConcurrency(next.Batch))
importPool.UpdateLimit(next.Batch.ImportConcurrency)
conversionPool.UpdateLimit(next.Batch.ConversionConcurrency)
syncPool.UpdateLimit(next.Batch.SyncConcurrency)
refreshPool.UpdateLimit(next.Batch.RefreshConcurrency)
detectPool.UpdateLimit(32)
for _, pool := range []*batch.Pool{importPool, conversionPool, syncPool, refreshPool, detectPool} {
pool.UpdateJitter(next.Batch.RandomDelay.Value())
}
cliAdapter.UpdateConfig(cliprovider.Config{
BaseURL: next.Provider.Build.BaseURL, FallbackBaseURL: config.NormalizeBuildFallbackBaseURL(next.Provider.Build.FallbackBaseURL),
ClientVersion: next.Provider.Build.ClientVersion, ClientIdentifier: next.Provider.Build.ClientIdentifier,
TokenAuth: next.Provider.Build.TokenAuth, UserAgent: next.Provider.Build.UserAgent,
ResponseHeaderTimeout: next.Provider.Build.ResponseHeaderTimeout.Value(),
})
egressManager.UpdateBuildResponseHeaderTimeout(next.Provider.Build.ResponseHeaderTimeout.Value())
webAdapter.UpdateConfig(webProviderConfig(next))
egressManager.UpdateClearanceConfig(clearanceConfig(next))
consoleAdapter.UpdateConfig(consoleProviderConfig(next))
mediaService.UpdateConfig(mediaConfig(next))
quotaRecoveryService.UpdateConfig(next.Provider.Web.RecoveryBackoffBase.Value(), next.Provider.Web.RecoveryBackoffMax.Value())
accountSyncService.UpdateConcurrency(next.Batch.ImportConcurrency)
selector.UpdateConfig(next.Routing.StickyTTL.Value(), next.Routing.CooldownBase.Value(), next.Routing.CooldownMax.Value(), next.Routing.CapacityWait.Value())
selector.UpdatePreferFreeBuild(next.Routing.PreferFreeBuild)
selector.UpdateSegmentedSelector(next.Routing.SegmentedSelectorEnabled, next.Routing.SegmentedMinCandidates, next.Routing.SegmentedWindowSize)
reasoningReplay.UpdateConfig(reasoningreplay.Config{Enabled: next.Routing.ReasoningReplayEnabled, TTL: next.Routing.ReasoningReplayTTL.Value()})
gatewayService.UpdateMaxAttempts(next.Routing.MaxAttempts)
gatewayService.UpdateMarkBuildChatDeniedAsReauth(next.Routing.MarkBuildChatDeniedAsReauth)
gatewayService.UpdateBuildForbiddenReauthPolicy(next.Accounts.MarkBuildForbiddenReauth, next.Accounts.BuildForbiddenReauthCodes)
auditService.UpdateWriterConfig(next.Audit.BatchSize, next.Audit.FlushInterval.Value(), next.Audit.CommitDelay.Value())
auditService.UpdateLedgerConfig(auditLedgerConfig(next.Audit))
clientKeyService.UpdateDefaults(next.ClientKeyDefaults.RPMLimit, next.ClientKeyDefaults.MaxConcurrent)
accountService.UpdateAutoCleanConfig(accountAutoCleanConfig(next.Accounts))
})
updateService := updatecheckapp.NewService(buildinfo.CurrentVersion(), nil)
startup := newStartupState(len(windows))
readiness := func(readyCtx context.Context) httpserver.ReadinessSnapshot {
return readinessSnapshot(readyCtx, startup, runtimeHealth, modelRepo, accountRepo, providers, auditService)
}
router := httpserver.New(httpserver.Dependencies{Logger: logger, RequestTimeout: cfg.Server.RequestTimeout.Value(), MaxBodyBytes: cfg.Server.MaxBodyBytes, ConcurrencyGate: inferenceConcurrency, SecureCookies: cfg.Auth.SecureCookies, SwaggerEnabled: cfg.Server.SwaggerEnabled, PublicAPIBaseURL: cfg.Frontend.EffectivePublicAPIBaseURL(), FrontendStaticPath: cfg.Frontend.StaticPath, Readiness: readiness, TrafficReady: startup.acceptsTraffic, AdminAuth: adminService, Accounts: accountService, AccountSync: accountSyncService, Models: modelService, ClientKeys: clientKeyService, Audits: auditService, Dashboard: dashboardService, Gateway: gatewayService, Media: mediaService, Settings: settingsService, Egress: egressService, Updates: updateService})
server := &http.Server{Addr: cfg.Server.Listen, Handler: router, ReadHeaderTimeout: 10 * time.Second, ReadTimeout: cfg.Server.ReadTimeout.Value(), IdleTimeout: 2 * time.Minute, MaxHeaderBytes: 64 << 10}
return &Application{
logger: logger, database: database, server: server,
audits: auditService, responses: responseRepo, cleanupLock: refreshLock, runtime: runtimeStore,
settingsBus: settingsBus, invalidationBus: invalidationBus, settings: settingsService, gateway: gatewayService, media: mediaService, quotaRecovery: quotaRecoveryService, accounts: accountService, models: modelService, clientKeys: clientKeyService, updates: updateService, invalidations: invalidationService,
accountRepo: accountRepo, modelRepo: modelRepo, providers: providers, web: webAdapter, egress: egressManager, egressOps: egressService, startup: startup,
}, nil
}
func invalidationSourceInstance(cfg config.Config) string {
if value := strings.TrimSpace(cfg.Deployment.InstanceID); value != "" {
return value
}
return fmt.Sprintf("process-%d", time.Now().UnixNano())
}
func maxBatchConcurrency(value config.BatchConfig) int {
return max(value.ImportConcurrency, value.ConversionConcurrency, value.SyncConcurrency, value.RefreshConcurrency)
}
func webProviderConfig(cfg config.Config) webprovider.Config {
return webprovider.Config{
BaseURL: cfg.Provider.Web.BaseURL, QuotaTimeoutSeconds: int(cfg.Provider.Web.QuotaTimeout.Value().Seconds()),
StatsigMode: cfg.Provider.Web.StatsigMode, StatsigManualValue: cfg.Provider.Web.StatsigManualValue,
StatsigSignerURL: cfg.Provider.Web.StatsigSignerURL,
ChatTimeoutSeconds: int(cfg.Provider.Web.ChatTimeout.Value().Seconds()), ImageTimeoutSeconds: int(cfg.Provider.Web.ImageTimeout.Value().Seconds()),
VideoTimeoutSeconds: int(cfg.Provider.Web.VideoTimeout.Value().Seconds()), MaxInputImageBytes: cfg.Media.MaxImageBytes,
AllowNSFW: cfg.Provider.Web.AllowNSFW,
}
}
func clearanceConfig(cfg config.Config) infraegress.ClearanceConfig {
return infraegress.ClearanceConfig{
Mode: cfg.Provider.Web.ClearanceMode, FlareSolverrURL: cfg.Provider.Web.FlareSolverrURL,
TargetURL: cfg.Provider.Web.BaseURL, Timeout: cfg.Provider.Web.ClearanceTimeout.Value(),
RefreshInterval: cfg.Provider.Web.ClearanceRefresh.Value(),
}
}
func consoleProviderConfig(cfg config.Config) consoleprovider.Config {
return consoleprovider.Config{
BaseURL: cfg.Provider.Console.BaseURL, SessionBaseURL: cfg.Provider.Web.BaseURL,
TimeoutSeconds: int(cfg.Provider.Console.ChatTimeout.Value().Seconds()),
}
}
func accountAutoCleanConfig(value config.AccountsConfig) accountapp.AutoCleanConfig {
return accountapp.AutoCleanConfig{
Enabled: value.AutoCleanReauthEnabled,
Interval: value.AutoCleanReauthInterval.Value(),
MinAge: value.AutoCleanReauthMinAge.Value(),
IncludeDisabled: value.AutoCleanIncludeDisabled,
}
}
func auditLedgerConfig(value config.AuditConfig) auditapp.LedgerConfig {
return auditapp.LedgerConfig{
Mode: auditapp.LedgerMode(value.LedgerMode),
FailureThreshold: value.LedgerFailureThreshold,
UnhealthyGrace: value.LedgerUnhealthyGrace.Value(),
QueueHighWatermarkPercent: value.LedgerQueueHighWatermarkPct,
}
}
func mediaConfig(cfg config.Config) mediaapp.Config {
return mediaapp.Config{
PublicBaseURL: cfg.Frontend.EffectivePublicAPIBaseURL(),
MaxImageBytes: cfg.Media.MaxImageBytes, MaxTotalBytes: cfg.Media.MaxTotalBytes,
CleanupThresholdPercent: cfg.Media.CleanupThresholdPercent, CleanupInterval: cfg.Media.CleanupInterval.Value(),
}
}
// Run 启动 HTTP 服务和本地后台维护任务。
func (a *Application) Run(ctx context.Context) error {
a.audits.Start()
defer func() {
closeCtx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
if err := a.audits.Close(closeCtx); err != nil {
a.logger.Warn("audit_shutdown_failed", "error", err)
}
}()
runCtx, cancelBackground := context.WithCancel(ctx)
var background sync.WaitGroup
defer func() {
cancelBackground()
background.Wait()
}()
errCh := make(chan error, 1)
go func() {
a.logger.Info("server_started", "listen", a.server.Addr)
errCh <- a.server.ListenAndServe()
}()
a.reconcileStartup(runCtx)
startBackground := func(name string, task func(context.Context) error) {
background.Add(1)
go func() {
defer background.Done()
a.runSupervisedTask(runCtx, name, task)
}()
}
if a.invalidationBus != nil {
startBackground("invalidation_publisher", a.invalidations.RunPublisher)
startBackground("invalidation_subscriber", a.invalidations.RunSubscriber)
}
startBackground("settings_reconcile", func(taskCtx context.Context) error {
a.runPeriodicTask(taskCtx, 30*time.Second, "settings_reconcile", func(runCtx context.Context) error {
return a.settings.ReloadPersisted(runCtx)
})
return nil
})
startBackground("performance_metrics", func(taskCtx context.Context) error {
a.runPeriodicTask(taskCtx, time.Minute, "performance_metrics", func(context.Context) error {
a.logPerformanceMetrics()
return nil
})
return nil
})
startBackground("release_check", func(taskCtx context.Context) error {
a.updates.Check(taskCtx)
a.runPeriodicTask(taskCtx, 24*time.Hour, "release_check", func(checkCtx context.Context) error {
a.updates.Check(checkCtx)
return nil
})
return nil
})
startBackground("billing_reservation_cleanup", func(taskCtx context.Context) error {
a.runPeriodicTask(taskCtx, 10*time.Minute, "billing_reservation_cleanup", func(runCtx context.Context) error {
_, err := a.clientKeys.CleanupExpiredBilling(runCtx, 1000)
return err
})
return nil
})
startBackground("model_cooldown_cleanup", func(taskCtx context.Context) error {
a.runPeriodicTask(taskCtx, 10*time.Minute, "model_cooldown_cleanup", func(runCtx context.Context) error {
_, err := a.accountRepo.PruneExpiredModelQuotaBlocks(runCtx, time.Now().UTC(), 1000)
return err
})
return nil
})
startBackground("response_ownership_cleanup", func(taskCtx context.Context) error {
a.runPeriodicTask(taskCtx, responseCleanupInterval, "response_ownership_cleanup", func(runCtx context.Context) error {
return a.cleanupExpiredResponses(runCtx, time.Now().UTC())
})
return nil
})
startBackground("quota_recovery", func(taskCtx context.Context) error {
a.quotaRecovery.Run(taskCtx)
return nil
})
startBackground("web_quota_refresh", func(taskCtx context.Context) error {
a.accounts.RunWebQuotaRefresh(taskCtx)
return nil
})
startBackground("credential_refresh", func(taskCtx context.Context) error {
a.accounts.RunCredentialRefresh(taskCtx)
return nil
})
startBackground("account_auto_clean", func(taskCtx context.Context) error {
a.accounts.RunAccountAutoClean(taskCtx)
return nil
})
startBackground("statsig_warmup", func(taskCtx context.Context) error {
a.runStatsigWarmup(taskCtx)
return nil
})
startBackground("web_quota_startup_catchup", func(taskCtx context.Context) error {
a.runWebQuotaCatchup(taskCtx)
return nil
})
startBackground("model_catalog_startup_catchup", func(taskCtx context.Context) error {
a.runModelCatalogCatchup(taskCtx)
return nil
})
startBackground("video_recovery", func(taskCtx context.Context) error {
a.gateway.RunVideoRecovery(taskCtx)
return nil
})
startBackground("video_workers", func(taskCtx context.Context) error {
a.gateway.RunVideoWorkers(taskCtx)
return nil
})
startBackground("media_cleanup", func(taskCtx context.Context) error {
a.media.RunCleanup(taskCtx, func(err error) {
a.logger.Warn("media_cleanup_failed", "error", err)
})
return nil
})
startBackground("clearance_refresh", func(taskCtx context.Context) error {
if err := a.egress.RefreshDueClearances(taskCtx, false); err != nil {
a.logger.Warn("clearance_initial_refresh_failed", "error", err)
}
a.runPeriodicTask(taskCtx, time.Minute, "clearance_refresh", func(runCtx context.Context) error {
if err := a.egress.RefreshDueClearances(runCtx, false); err != nil {
a.logger.Warn("clearance_refresh_failed", "error", err)
}
return nil
})
return nil
})
startBackground("egress_operations", func(taskCtx context.Context) error {
if err := a.egressOps.RunMaintenance(taskCtx); err != nil {
a.logger.Warn("egress_operations_initial_run_failed", "error", err)
}
a.runPeriodicTask(taskCtx, time.Minute, "egress_operations", a.egressOps.RunMaintenance)
return nil
})
if a.settingsBus != nil {
startBackground("settings_change_listener", func(taskCtx context.Context) error {
return a.settingsBus.ListenSettingsChanges(taskCtx, func(eventCtx context.Context) error {
reloadCtx, cancel := context.WithTimeout(eventCtx, 5*time.Second)
defer cancel()
if err := a.settings.ReloadPersisted(reloadCtx); err != nil {
a.logger.Warn("settings_reload_failed", "error", err)
}
return nil
})
})
}
a.queueDueWebQuotaRefresh(runCtx)
select {
case <-ctx.Done():
shutdownCtx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
if err := a.server.Shutdown(shutdownCtx); err != nil {
return fmt.Errorf("关闭 HTTP 服务: %w", err)
}
return nil
case err := <-errCh:
if errors.Is(err, http.ErrServerClosed) {
return nil
}
return err
}
}
func (a *Application) cleanupExpiredResponses(ctx context.Context, now time.Time) error {
cleanupCtx, cancel := context.WithTimeout(ctx, responseCleanupBudget)
defer cancel()
if a.cleanupLock != nil {
release, acquired, err := a.cleanupLock.Acquire(cleanupCtx, "response-ownership-cleanup", responseCleanupLockTTL)
if err != nil {
return err
}
if !acquired {
return nil
}
defer release()
}
var totalOwnership, totalWebState int64
for range responseCleanupMaxBatches {
if err := cleanupCtx.Err(); err != nil {
if ctx.Err() != nil {
return ctx.Err()
}
a.recordResponseCleanup(totalOwnership, totalWebState, true)
return nil
}
result, err := a.responses.DeleteExpired(cleanupCtx, now, responseOwnershipCleanupBatchSize, webResponseStateCleanupBatchSize)
if err != nil {
if errors.Is(err, context.DeadlineExceeded) && ctx.Err() == nil {
a.recordResponseCleanup(totalOwnership, totalWebState, true)
return nil
}
return err
}
totalOwnership += result.OwnershipDeleted
totalWebState += result.WebStateDeleted
if !result.HasMore {
a.recordResponseCleanup(totalOwnership, totalWebState, false)
return nil
}
}
a.recordResponseCleanup(totalOwnership, totalWebState, true)
return nil
}
func (a *Application) recordResponseCleanup(ownershipDeleted, webStateDeleted int64, backlog bool) {
outcome := "complete"
if backlog {
outcome = "backlog"
a.logger.Warn("response_cleanup_backlog", "ownership_deleted", ownershipDeleted, "web_state_deleted", webStateDeleted)
}
labels := perfmetrics.Labels{Subsystem: "response", Operation: "cleanup", Outcome: outcome}
perfmetrics.Default.Add("response_cleanup_ownership_rows", labels, ownershipDeleted)
perfmetrics.Default.Add("response_cleanup_web_state_rows", labels, webStateDeleted)
}
func (a *Application) logPerformanceMetrics() {
stats := a.database.Stats()
databaseLabels := perfmetrics.Labels{Subsystem: "database", Operation: a.database.Dialect()}
perfmetrics.Default.SetGauge("db_open_connections", databaseLabels, int64(stats.OpenConnections))
perfmetrics.Default.SetGauge("db_in_use_connections", databaseLabels, int64(stats.InUse))
perfmetrics.Default.SetGauge("db_idle_connections", databaseLabels, int64(stats.Idle))
perfmetrics.Default.SetGauge("db_wait_count", databaseLabels, stats.WaitCount)
perfmetrics.Default.SetGauge("db_wait_duration_us", databaseLabels, stats.WaitDuration.Microseconds())
if a.audits != nil {
a.audits.LedgerSnapshot()
}
if a.accounts != nil {
quota := a.accounts.QuotaRefreshStats()
labels := perfmetrics.Labels{Subsystem: "quota", Operation: "refresh"}
perfmetrics.Default.SetGauge("quota_refresh_pending", labels, int64(quota.Pending))
perfmetrics.Default.SetGauge("quota_refresh_queued", labels, int64(quota.Queued))
perfmetrics.Default.SetGauge("quota_refresh_running", labels, int64(quota.Running))
}
for _, sample := range perfmetrics.Default.CollectAndReset() {
a.logger.Info("performance_metric",
"name", sample.Name,
"subsystem", sample.Labels.Subsystem,
"operation", sample.Labels.Operation,
"provider", sample.Labels.Provider,
"plane", sample.Labels.Plane,
"stage", sample.Labels.Stage,
"ordinal", sample.Labels.Ordinal,
"outcome", sample.Labels.Outcome,
"count", sample.Count,
"total", sample.Total,
"maximum", sample.Maximum,
"gauge", sample.Gauge,
"has_gauge", sample.HasGauge,
)
}
}
func (a *Application) Close() error {
var runtimeErr error
if a.runtime != nil {
runtimeErr = a.runtime.Close()
}
return errors.Join(runtimeErr, a.database.Close())
}
func (a *Application) runPeriodicTask(ctx context.Context, interval time.Duration, name string, task func(context.Context) error) {
timer := time.NewTimer(interval)
defer timer.Stop()
for {
select {
case <-ctx.Done():
return
case <-timer.C:
runCtx, cancel := context.WithTimeout(ctx, minDuration(interval, 5*time.Minute))
err := task(runCtx)
cancel()
if err != nil {
a.logger.Warn(name+"_failed", "error", err)
}
resetTimer(timer, interval)
}
}
}
func (a *Application) runSupervisedTask(ctx context.Context, name string, task func(context.Context) error) {
backoff := time.Second
for {
err := batch.Do(ctx, task)
if ctx.Err() != nil {
return
}
if err == nil {
err = errors.New("后台任务意外退出")
}
var panicErr *batch.PanicError
if errors.As(err, &panicErr) {
a.logger.Error("background_task_restarting", "task", name, "backoff", backoff, "error", panicErr, "stack", string(panicErr.Stack))
} else {
a.logger.Error("background_task_restarting", "task", name, "backoff", backoff, "error", err)
}
timer := time.NewTimer(backoff)
select {
case <-ctx.Done():
timer.Stop()
return
case <-timer.C:
}
backoff = min(backoff*2, 30*time.Second)
}
}
func resetTimer(timer *time.Timer, interval time.Duration) {
if !timer.Stop() {
select {
case <-timer.C:
default:
}
}
timer.Reset(interval)
}
func minDuration(left, right time.Duration) time.Duration {
if left < right {
return left
}
return right
}
|