-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing ATLASPANDA-979: New column OUTPUTFILETYPE in jobs tables (post…
…gres)
- Loading branch information
1 parent
ea7eb5b
commit db8a249
Showing
3 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1209,7 +1209,8 @@ CREATE TABLE jobsactive4 ( | |
meancorecount decimal(8,2), | ||
gco2_regional decimal(10,2), | ||
gco2_global decimal(10,2), | ||
cpu_architecture_level varchar(20) | ||
cpu_architecture_level varchar(20), | ||
outputfiletype varchar(32), | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
EdwardKaravakis
Author
Member
|
||
) ; | ||
COMMENT ON TABLE jobsactive4 IS E'Table for hosting all PanDA jobs that are in active running mode. All timestamp and date type columns are in UTC'; | ||
COMMENT ON COLUMN jobsactive4.assignedpriority IS E'defined priority value'; | ||
|
@@ -1492,7 +1493,8 @@ CREATE TABLE jobsarchived4 ( | |
meancorecount decimal(8,2), | ||
gco2_regional decimal(10,2), | ||
gco2_global decimal(10,2), | ||
cpu_architecture_level varchar(20) | ||
cpu_architecture_level varchar(20), | ||
outputfiletype varchar(32) | ||
) PARTITION BY RANGE (modificationtime) ; | ||
COMMENT ON TABLE jobsarchived4 IS E'Table for hosting all PanDA jobs that are in finished, failed or cancelled status. Data is regularly copied to an archive table in ATLAS_PANDAARCH schema. Data retention of the JOBSARCHIVED4 table is defined to be 3 days (can be changed if necessary). All timestamp and date type columns are in UTC '; | ||
COMMENT ON COLUMN jobsarchived4.assignedpriority IS E'defined priority value'; | ||
|
@@ -1791,7 +1793,8 @@ CREATE TABLE jobsdefined4 ( | |
meancorecount decimal(8,2), | ||
gco2_regional decimal(10,2), | ||
gco2_global decimal(10,2), | ||
cpu_architecture_level varchar(20) | ||
cpu_architecture_level varchar(20), | ||
outputfiletype varchar(32) | ||
) ; | ||
COMMENT ON COLUMN jobsdefined4.assignedpriority IS E'defined priority value'; | ||
COMMENT ON COLUMN jobsdefined4.atlasrelease IS E'Release required to run the job'; | ||
|
@@ -2086,7 +2089,8 @@ CREATE TABLE jobswaiting4 ( | |
meancorecount decimal(8,2), | ||
gco2_regional decimal(10,2), | ||
gco2_global decimal(10,2), | ||
cpu_architecture_level varchar(20) | ||
cpu_architecture_level varchar(20), | ||
outputfiletype varchar(32) | ||
) ; | ||
COMMENT ON TABLE jobswaiting4 IS E'Table for hosting all PanDA jobs that are in waiting state. The columns (and their description) are the same as the ones in JOBSACTIVE4 table. All timestamp and date type columns are in UTC'; | ||
COMMENT ON COLUMN jobswaiting4.assignedpriority IS E'defined priority value'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.0.16 | ||
0.0.17 |
This trailing comma causes syntax error here.