This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
howto:data [2020/06/23 13:04] ccrosby [Compressing Files] |
howto:data [2021/12/09 16:42] (current) |
||
|---|---|---|---|
| Line 3: | Line 3: | ||
| ===== Understand how critical data management is ===== | ===== Understand how critical data management is ===== | ||
| Managing data is an integral part of doing computational analysis work. Scientific applications generally use and create very large amounts of raw data. The graphs and tables that eventually show up in reports, theses and research publications represent this data in post-processed form. However, the raw data generated in the process of may take up several Terabytes of data. Once the raw data has been post-processed, | Managing data is an integral part of doing computational analysis work. Scientific applications generally use and create very large amounts of raw data. The graphs and tables that eventually show up in reports, theses and research publications represent this data in post-processed form. However, the raw data generated in the process of may take up several Terabytes of data. Once the raw data has been post-processed, | ||
| + | |||
| + | ===== Data management is the responsibility of the Principal Investigator ===== | ||
| + | Individual users, mostly post-graduate students, come and go. For this reason, it is the responsibility of the principal investigator to manage the data and storage occupation of their research programme. This is a big task, and we recommend that PIs of large groups appoint a person responsible for managing the compute activities of the group. | ||
| + | |||
| + | ===== Pre-process - Run - Post-process - Store results - Clean-up ===== | ||
| + | This mantra is critical: | ||
| + | - Prepare your run, download and link driving data, generate grids, setup initial and boundary conditions, pepare run scripts | ||
| + | - Execute the run | ||
| + | - Inspect the raw results, then post-process the raw information **immediately** | ||
| + | - Store the processed results | ||
| + | - Remove the raw results and driving data, unless these will **immediately** be re-used | ||
| + | |||
| + | ===== Offload data with Globus ===== | ||
| + | If you need to move a lot of data off the cluster to your own storage, consider using [[howto: | ||
| + | |||
| + | ===== Request long-term storage from Dirisa ===== | ||
| + | If you need large amounts of data to be archived or stored in an accessible form, request this from [[https:// | ||
| + | |||
| ===== The CHPC's limited storage capacity ===== | ===== The CHPC's limited storage capacity ===== | ||
| On the Lengau cluster, users have access to a total of 4 Petabytes of " | On the Lengau cluster, users have access to a total of 4 Petabytes of " | ||
| + | |||
| + | Please be pro-active about managing your data before we do it for you. **Without** first asking your permission. | ||
| + | < | ||
| + | find -type f -atime +90 -printf " | ||
| + | </ | ||
| + | which will produce a csv table with the path, size in bytes and last time of access. | ||
| + | < | ||
| + | find -type f -atime +90 -delete | ||
| + | </ | ||
| + | |||
| + | |||
| + | |||
| =====Compressing Files===== | =====Compressing Files===== | ||