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