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:
Lilac home storage :
mmlsquota lilac:home --block-size auto |
Lilac compute storage :
mmlsquota -j data_<lab group name> lilac --block-size auto |
Lilac warm storage (oscar) :
mmlsquota -j warm_<lab group name> oscar --block-size auto |
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:
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 |
|