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
COMMENT ON COLUMN "ATLAS_PANDA"."DDM_ENDPOINT"."BLACKLISTED_WRITE" IS 'Defines whether a DDM endpoint is blacklisted for write (Y/N)';
220
223
COMMENT ON COLUMN "ATLAS_PANDA"."DDM_ENDPOINT"."SPACE_EXPIRED" IS 'Expired, used space in GB';
221
224
COMMENT ON COLUMN "ATLAS_PANDA"."DDM_ENDPOINT"."SPACE_TIMESTAMP" IS 'Timestamp reported by Rucio for the SRM space values';
225
+
COMMENT ON COLUMN "ATLAS_PANDA"."DDM_ENDPOINT"."DETAILED_STATUS" IS 'Endpoint-specific detailed status (JSON)';
222
226
COMMENT ON TABLE "ATLAS_PANDA"."DDM_ENDPOINT" IS 'DDM/Rucio storage endpoint.Table needed for the "Configurator" agent. The table consolidate information from other sources (AGIS and Rucio ) and caches it so that Panda can easily retrieve it and use it for brokerage.';
Copy file name to clipboardExpand all lines: schema/postgres/sqls/pg_PANDA_TABLE.sql
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,8 @@ CREATE TABLE ddm_endpoint (
144
144
space_expired bigint,
145
145
space_timestamp timestamp,
146
146
blacklisted_read char(1),
147
-
blacklisted_write char(1)
147
+
blacklisted_write char(1),
148
+
detailed_status JSONB
148
149
) ;
149
150
COMMENT ON TABLE ddm_endpoint IS E'DDM/Rucio storage endpoint.Table needed for the "Configurator" agent. The table consolidate information from other sources (AGIS and Rucio ) and caches it so that Panda can easily retrieve it and use it for brokerage.';
150
151
COMMENT ON COLUMN ddm_endpoint.blacklisted IS E'Defines whether a DDM endpoint is blacklisted or not (Y/N)';
@@ -160,6 +161,7 @@ COMMENT ON COLUMN ddm_endpoint.space_timestamp IS E'Timestamp reported by Rucio
160
161
COMMENT ON COLUMN ddm_endpoint.space_total IS E'Total space of a DDM endpoint as reported by Rucio. Value in GB';
161
162
COMMENT ON COLUMN ddm_endpoint.space_used IS E'Used space of a DDM endpoint as reported by Rucio. Value in GB';
162
163
COMMENT ON COLUMN ddm_endpoint.type IS E'Type of spacetoken, e.g. DATADISK, LOCALGROUPDISK...';
164
+
COMMENT ON COLUMN ddm_endpoint.detailed_status IS 'Endpoint-specific detailed status (JSON)';
0 commit comments