feat(sync): move stream from global to per upstream

Signed-off-by: Vishwas Rajashekar <dev@vrajashkr.com>
This commit is contained in:
Vishwas Rajashekar
2026-05-19 00:55:07 +05:30
parent 63b7654d50
commit 14cd52e993
12 changed files with 198 additions and 28 deletions
+1
View File
@@ -656,4 +656,5 @@ type SyncOnDemand interface {
SyncReferrers(ctx context.Context, repo string, subjectDigestStr string, referenceTypes []string) error
FetchManifestForStream(ctx context.Context, repo, reference string) (manifest.Manifest, error)
StreamManager() sync.StreamManager
IsStreamingEnabledForRepo(repo string) bool
}
+9 -14
View File
@@ -1124,8 +1124,7 @@ func (rh *RouteHandler) CheckBlob(response http.ResponseWriter, request *http.Re
e := apiErr.NewError(apiErr.DIGEST_INVALID).AddDetail(details)
zcommon.WriteJSON(response, http.StatusBadRequest, apiErr.NewErrorList(e))
} else if errors.Is(err, zerr.ErrRepoNotFound) {
extConf := rh.c.Config.CopyExtensionsConfig()
if extConf.IsStreamingEnabled() {
if rh.c.SyncOnDemand != nil && rh.c.SyncOnDemand.IsStreamingEnabledForRepo(name) {
streamErr := rh.getBlobInfoFromStreamCache(digest.String(), response)
if streamErr == nil {
return
@@ -1135,8 +1134,7 @@ func (rh *RouteHandler) CheckBlob(response http.ResponseWriter, request *http.Re
e := apiErr.NewError(apiErr.NAME_UNKNOWN).AddDetail(details)
zcommon.WriteJSON(response, http.StatusNotFound, apiErr.NewErrorList(e))
} else if errors.Is(err, zerr.ErrBlobNotFound) {
extConf := rh.c.Config.CopyExtensionsConfig()
if extConf.IsStreamingEnabled() {
if rh.c.SyncOnDemand != nil && rh.c.SyncOnDemand.IsStreamingEnabledForRepo(name) {
streamErr := rh.getBlobInfoFromStreamCache(digest.String(), response)
if streamErr == nil {
return
@@ -1494,13 +1492,12 @@ func (rh *RouteHandler) GetBlob(response http.ResponseWriter, request *http.Requ
writeBlobError := func(err error) {
details := zerr.GetDetails(err)
extConf := rh.c.Config.CopyExtensionsConfig()
if extConf.IsStreamingEnabled() {
rh.c.Log.Info().Msg("streaming enabled. using stream logic")
if rh.c.SyncOnDemand != nil && rh.c.SyncOnDemand.IsStreamingEnabledForRepo(name) {
rh.c.Log.Debug().Str("repo", name).Msg("streaming enabled for repo. using stream logic for blob.")
if errors.Is(err, zerr.ErrRepoNotFound) || errors.Is(err, zerr.ErrBlobNotFound) {
rh.c.Log.Info().Msg("blob was not found. Connecting client to stream")
rh.c.Log.Debug().Str("repo", name).Str("digest", digest.String()).Msg("connecting client to stream")
copier, clientConnErr := rh.c.SyncOnDemand.StreamManager().ConnectClient(digest.String(), response)
if clientConnErr != nil {
@@ -2718,12 +2715,10 @@ func getImageManifest(ctx context.Context, routeHandler *RouteHandler, imgStore
routeHandler.c.Log.Info().Str("repository", name).Str("reference", reference).
Msg("trying to get updated image by syncing on demand")
extConf := routeHandler.c.Config.CopyExtensionsConfig()
// if streaming enabled, return manifest immediately
if extConf.IsStreamingEnabled() {
routeHandler.c.Log.Info().Str("repository", name).Str("reference", reference).
Msg("streaming is enabled. Direct fetching manifest.")
// If streaming is enabled for this repo, return manifest immediately.
if routeHandler.c.SyncOnDemand.IsStreamingEnabledForRepo(name) {
routeHandler.c.Log.Debug().Str("repository", name).Str("reference", reference).
Msg("streaming is enabled for repo. Direct fetching manifest.")
fetchedManifest, err := routeHandler.c.SyncOnDemand.FetchManifestForStream(ctx, name, reference)
if err != nil {
+27
View File
@@ -1565,6 +1565,33 @@ func validateSync(config *config.Config, logger zlog.Logger) error {
// can't check with IsSyncEnabled(), because it can't test invalid sync configs
if extensionsConfig != nil && extensionsConfig.Sync != nil && len(extensionsConfig.Sync.Registries) > 0 {
for regID, regCfg := range extensionsConfig.Sync.Registries {
// check streaming sync configuration
if regCfg.IsStreamEnabled() {
if !regCfg.OnDemand {
msg := "streaming sync requires onDemand to be enabled"
logger.Error().Err(zerr.ErrBadConfig).Int("id", regID).Interface("extensions.sync.registries[id]",
extensionsConfig.Sync.Registries[regID]).Msg(msg)
return fmt.Errorf("%w: %s", zerr.ErrBadConfig, msg)
}
if regCfg.MaxRetries != nil {
msg := "maxRetries cannot be used when streaming sync is enabled"
logger.Error().Err(zerr.ErrBadConfig).Int("id", regID).Interface("extensions.sync.registries[id]",
extensionsConfig.Sync.Registries[regID]).Msg(msg)
return fmt.Errorf("%w: %s", zerr.ErrBadConfig, msg)
}
if regCfg.RetryDelay != nil {
msg := "retryDelay cannot be used when streaming sync is enabled"
logger.Error().Err(zerr.ErrBadConfig).Int("id", regID).Interface("extensions.sync.registries[id]",
extensionsConfig.Sync.Registries[regID]).Msg(msg)
return fmt.Errorf("%w: %s", zerr.ErrBadConfig, msg)
}
}
// check retry options are configured for sync
if regCfg.MaxRetries != nil && regCfg.RetryDelay == nil {
msg := "retryDelay is required when using maxRetries"
+98
View File
@@ -3446,3 +3446,101 @@ func TestBearerASMConfigValidation(t *testing.T) {
})
})
}
func TestValidateStreamingSync(t *testing.T) {
Convey("Test streaming sync config validation", t, func() {
Convey("Valid streaming sync with onDemand enabled", func() {
content := `{"storage":{"rootDirectory":"/tmp/zot"},
"http":{"address":"127.0.0.1","port":"8080","realm":"zot",
"auth":{"htpasswd":{"path":"test/data/htpasswd"},"failDelay":1}},
"extensions":{"sync": {"registries": [{"urls":["localhost:9999"],
"onDemand": true, "stream": true}]}}}`
cfg := config.New()
tmpfile := MakeTempFileWithContent(t, "zot-test.json", content)
err := cli.LoadConfiguration(cfg, tmpfile)
So(err, ShouldBeNil)
})
Convey("Reject streaming sync when onDemand is false", func() {
content := `{"storage":{"rootDirectory":"/tmp/zot"},
"http":{"address":"127.0.0.1","port":"8080","realm":"zot",
"auth":{"htpasswd":{"path":"test/data/htpasswd"},"failDelay":1}},
"extensions":{"sync": {"registries": [{"urls":["localhost:9999"],
"onDemand": false, "stream": true}]}}}`
cfg := config.New()
tmpfile := MakeTempFileWithContent(t, "zot-test.json", content)
err := cli.LoadConfiguration(cfg, tmpfile)
So(err, ShouldNotBeNil)
So(err, ShouldWrap, zerr.ErrBadConfig)
So(err.Error(), ShouldContainSubstring, "streaming sync requires onDemand to be enabled")
})
Convey("Reject streaming sync when maxRetries is set", func() {
content := `{"storage":{"rootDirectory":"/tmp/zot"},
"http":{"address":"127.0.0.1","port":"8080","realm":"zot",
"auth":{"htpasswd":{"path":"test/data/htpasswd"},"failDelay":1}},
"extensions":{"sync": {"registries": [{"urls":["localhost:9999"],
"onDemand": true, "stream": true, "maxRetries": 3, "retryDelay": "10s"}]}}}`
cfg := config.New()
tmpfile := MakeTempFileWithContent(t, "zot-test.json", content)
err := cli.LoadConfiguration(cfg, tmpfile)
So(err, ShouldNotBeNil)
So(err, ShouldWrap, zerr.ErrBadConfig)
So(err.Error(), ShouldContainSubstring, "maxRetries cannot be used when streaming sync is enabled")
})
Convey("Reject streaming sync when retryDelay is set without maxRetries", func() {
content := `{"storage":{"rootDirectory":"/tmp/zot"},
"http":{"address":"127.0.0.1","port":"8080","realm":"zot",
"auth":{"htpasswd":{"path":"test/data/htpasswd"},"failDelay":1}},
"extensions":{"sync": {"registries": [{"urls":["localhost:9999"],
"onDemand": true, "stream": true, "retryDelay": "10s"}]}}}`
cfg := config.New()
tmpfile := MakeTempFileWithContent(t, "zot-test.json", content)
err := cli.LoadConfiguration(cfg, tmpfile)
So(err, ShouldNotBeNil)
So(err, ShouldWrap, zerr.ErrBadConfig)
So(err.Error(), ShouldContainSubstring, "retryDelay cannot be used when streaming sync is enabled")
})
Convey("Non-streaming sync allows maxRetries with retryDelay", func() {
content := `{"storage":{"rootDirectory":"/tmp/zot"},
"http":{"address":"127.0.0.1","port":"8080","realm":"zot",
"auth":{"htpasswd":{"path":"test/data/htpasswd"},"failDelay":1}},
"extensions":{"sync": {"registries": [{"urls":["localhost:9999"],
"onDemand": true, "maxRetries": 3, "retryDelay": "10s"}]}}}`
cfg := config.New()
tmpfile := MakeTempFileWithContent(t, "zot-test.json", content)
err := cli.LoadConfiguration(cfg, tmpfile)
So(err, ShouldBeNil)
})
Convey("Streaming registry and non-streaming registry can coexist", func() {
content := `{"storage":{"rootDirectory":"/tmp/zot"},
"http":{"address":"127.0.0.1","port":"8080","realm":"zot",
"auth":{"htpasswd":{"path":"test/data/htpasswd"},"failDelay":1}},
"extensions":{"sync": {"registries": [
{"urls":["localhost:9999"], "onDemand": true, "stream": true},
{"urls":["localhost:9998"], "onDemand": true, "maxRetries": 3, "retryDelay": "10s"}
]}}}`
cfg := config.New()
tmpfile := MakeTempFileWithContent(t, "zot-test.json", content)
err := cli.LoadConfiguration(cfg, tmpfile)
So(err, ShouldBeNil)
})
Convey("Streaming upstream and periodic sync upstreams can coexist", func() {
content := `{"storage":{"rootDirectory":"/tmp/zot"},
"http":{"address":"127.0.0.1","port":"8080","realm":"zot",
"auth":{"htpasswd":{"path":"test/data/htpasswd"},"failDelay":1}},
"extensions":{"sync": {"registries": [
{"urls":["localhost:9999"], "onDemand": true, "stream": true},
{"urls":["localhost:9998"], "onDemand": false, "pollInterval": "12h"}
]}}}`
cfg := config.New()
tmpfile := MakeTempFileWithContent(t, "zot-test.json", content)
err := cli.LoadConfiguration(cfg, tmpfile)
So(err, ShouldBeNil)
})
})
}
+9 -3
View File
@@ -133,13 +133,19 @@ func (e *ExtensionConfig) IsSyncEnabled() bool {
(e.Sync.Enable == nil && len(e.Sync.Registries) > 0))
}
// IsStreamingEnabled checks if streaming is enabled in this extensions config.
// IsStreamingEnabled checks if streaming is enabled for any upstream registry in the sync config.
func (e *ExtensionConfig) IsStreamingEnabled() bool {
if e == nil {
if e == nil || e.Sync == nil {
return false
}
return e.Sync != nil && e.Sync.Stream != nil && *e.Sync.Stream
for i := range e.Sync.Registries {
if e.Sync.Registries[i].IsStreamEnabled() {
return true
}
}
return false
}
// IsScrubEnabled checks if scrub is enabled in this extensions config.
+13 -8
View File
@@ -13,9 +13,7 @@ type Credentials struct {
}
type Config struct {
Enable *bool
// Stream is set to true when it is desired to stream blobs to clients as they are being synced to zot.
Stream *bool
Enable *bool
CredentialsFile string
/* DownloadDir is needed only in case of using cloud based storages
it uses regclient to first copy images into this dir (as oci layout)
@@ -25,11 +23,13 @@ type Config struct {
}
type RegistryConfig struct {
URLs []string
PollInterval time.Duration
Content []Content
TLSVerify *bool
OnDemand bool
URLs []string
PollInterval time.Duration
Content []Content
TLSVerify *bool
OnDemand bool
// Stream is set to true when it is desired to stream blobs to clients as they are being synced from this upstream.
Stream *bool
CertDir string
MaxRetries *int
RetryDelay *time.Duration
@@ -47,6 +47,11 @@ func (r RegistryConfig) ShouldSyncLegacyCosignTags() bool {
return r.SyncLegacyCosignTags == nil || *r.SyncLegacyCosignTags
}
// IsStreamEnabled returns true if streaming is enabled for this registry config.
func (r RegistryConfig) IsStreamEnabled() bool {
return r.Stream != nil && *r.Stream
}
type Content struct {
Prefix string
Tags *Tags
+7 -1
View File
@@ -65,8 +65,14 @@ func EnableSyncExtension(config *config.Config, metaDB mTypes.MetaDB,
// Get cluster config safely
clusterConfig := config.CopyClusterConfig()
// Only pass the stream manager to services that have streaming enabled on their registry config.
var svcStreamManager sync.StreamManager
if registryConfig.Stream != nil && *registryConfig.Stream {
svcStreamManager = streamManager
}
service, err := sync.New(
registryConfig, credsPath, clusterConfig, tmpDir, storeController, streamManager, metaDB, log)
registryConfig, credsPath, clusterConfig, tmpDir, storeController, svcStreamManager, metaDB, log)
if err != nil {
log.Error().Err(err).Msg("failed to initialize sync extension")
+11
View File
@@ -53,6 +53,17 @@ func (onDemand *BaseOnDemand) StreamManager() StreamManager {
return onDemand.streamManager
}
// IsStreamingEnabledForRepo returns true if any on-demand service has streaming enabled for the given repo.
func (onDemand *BaseOnDemand) IsStreamingEnabledForRepo(repo string) bool {
for _, service := range onDemand.services {
if service.IsStreamingForRepo(repo) {
return true
}
}
return false
}
// FetchManifestForStream directly fetches the manifest from the upstream services and prepares the image
// for streaming.
// This is only intended for use with streaming sync.
@@ -29,3 +29,7 @@ func (onDemand *BaseOnDemand) FetchManifestForStream(
func (onDemand *BaseOnDemand) StreamManager() StreamManager {
return nil
}
func (onDemand *BaseOnDemand) IsStreamingEnabledForRepo(_ string) bool {
return false
}
+16 -1
View File
@@ -215,6 +215,21 @@ func (service *BaseService) CanRetryOnError() bool {
return false
}
// IsStreamingForRepo returns whether streaming is enabled for the given local repo on this service.
// Streaming is enabled if the registry config has Stream set to true and the repo matches the content config.
func (service *BaseService) IsStreamingForRepo(repo string) bool {
if !service.config.IsStreamEnabled() {
return false
}
// If no content filter is configured, all repos match.
if len(service.config.Content) == 0 {
return true
}
return service.contentManager.GetContentByLocalRepo(repo) != nil
}
func (service *BaseService) GetSyncTimeout() time.Duration {
if service.config.SyncTimeout == 0 {
return syncConstants.DefaultSyncTimeout
@@ -520,7 +535,7 @@ func (service *BaseService) syncRef(ctx context.Context, localRepo string, remot
copyOpts := []regclient.ImageOpts{}
if service.streamManager != nil {
if service.config.Stream != nil && *service.config.Stream && service.streamManager != nil {
service.log.Debug().Str("repo", localRepo).Str("reference", remoteImageRef.Tag).
Msg("streaming is enabled. Enabling reader hook")
copyOpts = append(copyOpts, regclient.ImageWithBlobReaderHook(service.streamManager.StreamingBlobReader))
+2
View File
@@ -39,6 +39,8 @@ type Service interface {
GetSyncTimeout() time.Duration
FetchManifest(ctx context.Context, repo, reference string) (manifest.Manifest, error)
// Returns whether streaming is enabled for the given local repo on this service.
IsStreamingForRepo(repo string) bool
}
// Registry interface must be implemented by local and remote registries.