This page documents the various questions related to lilac storage. Lilac storage is primarily divided into 4 categories.
Lilac home storage :
Lilac compute storage :
Lilac warm storage :
Lilac local scratch storage :
Check Quota for GPFS filesystem:
Since blocks on Lilac GPFS home/compute storage are replicated, quota is double the apparent size of data. |
Lilac home storage :
mmlsquota lila:home --block-size auto |
Lilac compute storage :
mmlsquota -j data_<lab group name> lila --block-size auto |
df -h /data/<lab group name> df -ih /data/<lab group name> |
Lilac warm storage (oscar) :
mmlsquota -j warm_<lab group name> oscar --block-size auto |
df -h /warm/<lab group name> df -ih /warm/<lab group name> |
mmlsquota gives information about quota on number of files too, along with information about block quota.
Once the number of blocks or number of files reach the value mentioned in "quota" - Storage system will give 7 days as a grace period, to fill up until the max value mentioned in "limit" is reached. Storage system will not allow any more data to be written when:
|
2. Copy files from other clusters:
HAL cluster is outside the firewall, so lilac cannot be accessed directly from HAL cluster |
SABA/LUNA/LUX:
To copy files from other clusters, first ssh -A
into the other cluster to forward your keys.
ssh -A $USERNAME@$CLUSTER |
We recommend rsync -va
to copy files and directories.
Make note of the source directory/source files and destination directory/files on Lilac and copy them as below:
rsync -av --progress $SOURCEPATH lilac:$DESTPATH |
HAL:
Remember that the hal
cluster is outside the MSKCC network, and does not have access to lilac
.
First - Make note of the source directory/source files on HAL and destination directory/files on Lilac:
To transfer data, ssh into lilac as below :
ssh -A $USERNAME@lilac.mskcc.org |
Then pull files from HAL:
rsync -av --progress hal:$SOURCEPATH $DESTPATH |
|