618399f86d
- Replace single Load() with a watching Store that re-reads config files
(and config.local.yaml) and fans out a ReloadEvent with a per-field diff
so consumers can decide whether the change is hot-applicable or requires
a process restart.
- Wrap llm, retrieval, vector store, and object storage clients in
Reloadable* shells so the bootstrap can swap their underlying impls when
config changes without re-instantiating handlers.
- Make jwt.Manager and ops TokenIssuer mutable under a lock so secrets and
TTLs can be rotated live; thread default plan code through a setter on
the ops AdminUserService.
- Wire ConfigStore through bootstrap and every cmd/main.go, scheduler /
worker / tenant-api / ops-api start the watcher; services and handlers
take a config.Provider so they always read current values for things
like generation.stream_enabled, scheduler dispatch, retrieval, etc.
- Switch shared/config decoding off viper to a Kratos-derived runtime
package so env placeholders (\${VAR:default}) resolve consistently and
the same source machinery powers both the loader and the watcher.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
79 lines
1.5 KiB
Go
79 lines
1.5 KiB
Go
package file
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"path/filepath"
|
|
"sync"
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
|
|
"github.com/geo-platform/tenant-api/internal/shared/config/runtime"
|
|
)
|
|
|
|
type watcher struct {
|
|
f *file
|
|
fw *fsnotify.Watcher
|
|
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
stopOnce sync.Once
|
|
}
|
|
|
|
func newWatcher(f *file) (runtime.Watcher, error) {
|
|
fw, err := fsnotify.NewWatcher()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := fw.Add(f.path); err != nil {
|
|
_ = fw.Close()
|
|
return nil, err
|
|
}
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
return &watcher{f: f, fw: fw, ctx: ctx, cancel: cancel}, nil
|
|
}
|
|
|
|
func (w *watcher) Next() ([]*runtime.KeyValue, error) {
|
|
for {
|
|
select {
|
|
case <-w.ctx.Done():
|
|
return nil, w.ctx.Err()
|
|
case event := <-w.fw.Events:
|
|
if !w.f.match(event.Name) {
|
|
continue
|
|
}
|
|
if event.Op == fsnotify.Rename {
|
|
if _, err := os.Stat(event.Name); err == nil || os.IsExist(err) {
|
|
if err := w.fw.Add(event.Name); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
}
|
|
info, err := os.Stat(w.f.path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
path := w.f.path
|
|
if info.IsDir() {
|
|
path = filepath.Join(w.f.path, filepath.Base(event.Name))
|
|
}
|
|
kv, err := w.f.loadFile(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return []*runtime.KeyValue{kv}, nil
|
|
case err := <-w.fw.Errors:
|
|
return nil, err
|
|
}
|
|
}
|
|
}
|
|
|
|
func (w *watcher) Stop() error {
|
|
var err error
|
|
w.stopOnce.Do(func() {
|
|
w.cancel()
|
|
err = w.fw.Close()
|
|
})
|
|
return err
|
|
}
|