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
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -11,6 +11,8 @@ CREATE TABLE job (
    end_time timestamp,
    creation_time timestamp default CURRENT_TIMESTAMP,
    job_info jsonb,
    processed_blocks int default null,
    total_blocks int default null,
    results jsonb,
    error_message varchar,
    error_type ErrorType,