Skip to content
Snippets Groups Projects
Commit f528b72f authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Added 'processed_blocks' and 'total_bocks' fields to track the progress of...

Added 'processed_blocks' and 'total_bocks' fields to track the progress of jobs involving retrieve operations.

Signed-off-by: default avatarCristiano Urban <cristiano.urban@inaf.it>
parent bc5b6a67
No related branches found
No related tags found
No related merge requests found
Pipeline #1630 passed
...@@ -11,6 +11,8 @@ CREATE TABLE job ( ...@@ -11,6 +11,8 @@ CREATE TABLE job (
end_time timestamp, end_time timestamp,
creation_time timestamp default CURRENT_TIMESTAMP, creation_time timestamp default CURRENT_TIMESTAMP,
job_info jsonb, job_info jsonb,
processed_blocks int default null,
total_blocks int default null,
results jsonb, results jsonb,
error_message varchar, error_message varchar,
error_type ErrorType, error_type ErrorType,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment