You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor the process such that runs and related datasets
get created/persisted synchronously whereas the datasets
processing (label values calculation and so on) is deferred
to the async process by making use if the dataset-even queue
Signed-off-by: Andrea Lamparelli <[email protected]>
@APIResponse(responseCode = "200", description = "id of the newly generated run", content = @Content(mediaType = MediaType.APPLICATION_JSON, schema = @Schema(type = SchemaType.INTEGER, implementation = Integer.class), example = "101")),
204
-
@APIResponse(responseCode = "202", description = "The run data will be processed asynchronously", content = @Content(mediaType = MediaType.TEXT_PLAIN)),
205
-
@APIResponse(responseCode = "204", description = "Data is valid but no run was created", content = @Content(mediaType = MediaType.TEXT_PLAIN)),
206
-
@APIResponse(responseCode = "400", description = "Some fields are missing or invalid", content = @Content(mediaType = MediaType.APPLICATION_JSON))
207
-
})
208
208
@Operation(description = "Upload a new Run")
209
209
@Parameters(value = {
210
210
@Parameter(name = "start", required = true, description = "start timestamp of run, or json path expression", examples = {
0 commit comments