Task #1589
Feature #1577: use tables for storing System Metadata in Metacat
Task #1579: create additional tables
create replica status table
100%
History
#1 Updated by Ben Leinfelder over 13 years ago
- Status changed from New to In Progress
proposed table:
CREATE TABLE systemMetadataReplicationStatus (
guid text, -- the globally unique string identifier of the object that the system metadata describes
member_node VARCHAR(250), -- replication member node
status VARCHAR(250), -- replication status
date_verified TIMESTAMP, -- the date replication was verified
CONSTRAINT systemMetadataReplicationStatus_fk
FOREIGN KEY (guid) REFERENCES systemMetadata
);
#2 Updated by Ben Leinfelder over 13 years ago
- % Done changed from 0 to 80
testing the changes locally.
eventually will need more detailed unit tests for storing/retrieving these systemMetadata facets - probably when we start to proxy the CN replication interface.
#3 Updated by Ben Leinfelder over 13 years ago
- Status changed from In Progress to Closed
- % Done changed from 80 to 100
crudservice now passing