lsst-uk / lasair-lsst

Apache License 2.0
0 stars 0 forks source link

Deployment of cutoutcass #152

Closed RoyWilliams closed 1 month ago

RoyWilliams commented 2 months ago

Deployment should also do these things on cutoutcass-0

CREATE KEYSPACE cutouts WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 3 };

use cutouts;

CREATE TABLE IF NOT EXISTS cutouts (
    cutoutId      ascii,
    objectId      bigint,
    imjd          int,
    cutoutimage   blob,
    PRIMARY KEY (imjd, cutoutId)
);
gpfrancis commented 2 months ago

Does this need to be repeated on every instance, or just one instance in the cluster?