chore(server) Add job for storage migration (#1117)

This commit is contained in:
Alex
2022-12-19 12:13:10 -06:00
committed by GitHub
parent 8998a79ff9
commit de69d0031e
33 changed files with 398 additions and 241 deletions

View File

@@ -3562,6 +3562,9 @@
"machineLearningQueueCount": {
"$ref": "#/components/schemas/JobCounts"
},
"storageMigrationQueueCount": {
"$ref": "#/components/schemas/JobCounts"
},
"isThumbnailGenerationActive": {
"type": "boolean"
},
@@ -3573,6 +3576,9 @@
},
"isMachineLearningActive": {
"type": "boolean"
},
"isStorageMigrationActive": {
"type": "boolean"
}
},
"required": [
@@ -3580,10 +3586,12 @@
"metadataExtractionQueueCount",
"videoConversionQueueCount",
"machineLearningQueueCount",
"storageMigrationQueueCount",
"isThumbnailGenerationActive",
"isMetadataExtractionActive",
"isVideoConversionActive",
"isMachineLearningActive"
"isMachineLearningActive",
"isStorageMigrationActive"
]
},
"JobId": {
@@ -3592,7 +3600,8 @@
"thumbnail-generation",
"metadata-extraction",
"video-conversion",
"machine-learning"
"machine-learning",
"storage-template-migration"
]
},
"JobStatusResponseDto": {