-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* starting with the exclude list * save_config using exclude.to_list * exclude done * added du.sh sbatch script * Use callback to free up zip_contect memory * separating cores used for zipping and upload * freeing up memory not working and possibly redundant. * done
- Loading branch information
1 parent
3ce2a40
commit d5eccdc
Showing
3 changed files
with
75 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
# Script to discover the size of datasets using a back-end node | ||
|
||
#SBATCH -A IRIS-IP005-CPU | ||
#SBATCH --job-name="volume" | ||
#SBATCH --time=06:00:00 | ||
#SBATCH --partition=cclake | ||
#SBATCH --nodes=1 | ||
#SBATCH --tasks-per-node=1 | ||
#SBATCH --cpus-per-task=1 | ||
#SBATCH --mem=3420mb | ||
|
||
# Change to job working directory | ||
# Edit to parent folder of folder(s) of interest | ||
cd /rds/project/rds-lT5YGmtKack/ras81/butler_wide_20220930/data/u/ir-shir1/DRP | ||
date | ||
pwd -P | ||
# uncomment the below for multiple subfolders | ||
du -h --max-depth=1 | ||
# uncomment the below for a single named folder | ||
# du -sh folder | ||
date | ||
|
||
# for multiple named folders, copy/paste the above |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters