feat(sync): additional changes for streaming

Signed-off-by: Vishwas Rajashekar <dev@vrajashkr.com>
This commit is contained in:
Vishwas Rajashekar
2026-05-16 18:44:10 +05:30
parent e2aa088e0d
commit 2fb691cd3b
14 changed files with 421 additions and 110 deletions
@@ -1,7 +1,7 @@
{
"distSpecVersion": "1.1.1",
"storage": {
"rootDirectory": "./temp/zot1"
"rootDirectory": "./temp/zot"
},
"http": {
"address": "127.0.0.1",
@@ -13,6 +13,7 @@
"extensions": {
"sync": {
"enable": true,
"enableStream": true,
"registries": [
{
"urls": [
@@ -0,0 +1,30 @@
{
"distSpecVersion": "1.1.1",
"storage": {
"rootDirectory": "./temp/zotlocalbuildnormal"
},
"http": {
"address": "127.0.0.1",
"port": "8082"
},
"log": {
"level": "debug"
},
"extensions": {
"sync": {
"enable": true,
"registries": [
{
"urls": [
"http://localhost:9000"
],
"onDemand": true,
"tlsVerify": false,
"maxRetries": 5,
"retryDelay": "30s",
"syncTimeout": "10m"
}
]
}
}
}
+30
View File
@@ -0,0 +1,30 @@
{
"distSpecVersion": "1.1.1",
"storage": {
"rootDirectory": "./temp/zotmainlinenormal"
},
"http": {
"address": "127.0.0.1",
"port": "8081"
},
"log": {
"level": "debug"
},
"extensions": {
"sync": {
"enable": true,
"registries": [
{
"urls": [
"http://localhost:9000"
],
"onDemand": true,
"tlsVerify": false,
"maxRetries": 5,
"retryDelay": "30s",
"syncTimeout": "10m"
}
]
}
}
}