iRODS
On this page
- What belongs in an archive?
- What is the allowed/recommended filesize?
- iRODS Account
- Data Persistence
- Using the Archiving System
- Basic Command Overview
- Handling Metadata
- Handling Metadata with Schema Support
- Data Policy/Recommendation
- Further Documentation
- Technical Background Information to the ZDV iRODS System
- Supplied iRODS Configuration
iRODS stands for integrated Rule-Oriented Data System iRODS and is an Open Source Data Management software. The ZDV provides an iRODS-system to meet modern data management requirements, in particular:
- storing data at two different locations
- encrypting data
- providing or prohibiting access
If you would like to know more about the internal workings, take a look on a more detailed description.
iRODS renamed the PAM authentication. Therefore, you must change the authentication method to pam_password
in your .irods/irods_environment.json
file:
or, if you want to do it manually, replace the line "irods_authentication_scheme": "PAM",
by "irods_authentication_scheme": "pam_password",
After changing the irods_environment.json
file use iinit
.
What belongs in an archive?
- (Raw) input data
- Final publishable or already published data
- zipped (git) repositories of the scripts/software used to process the data
- or even the software workflow to re-create your results.
What is the allowed/recommended filesize?
If you want to store a lot of data (several GB), we recommend to zip/tar it to files between 5 and 200GB. If you want to store single files larger than 200GB, in advance, please.
iRODS Account
There is no need to apply for an iRODS archiving account. Every user of our HPC resources automatically gets access to iRODS. If your account is associated with a MOGON project you also get read/write access to the iRODS project collection (/zdv/project/<PROJECT NAME>
). iRODS collections start with /zdv
, whereas paths on the MOGON-filesystem do not have this /zdv-
prefix part in their path.
The auto-generated configuration is stored in a users home directory. Here, you can get more detailed information.
Data Persistence
Subcollections in the home collection of an individual user will be deleted once the account gets deleted. Only the /zdv/project/<PROJECT NAME>
collections will be archived for an appropriate period (default: 10 years, as suggested by the
DFG, Leitlinie 17
).
The data saved to the above project collection is owned by the group. This means after a user leaves the project, the data can still be accessed by the other group members, as long as the access permissions are not modified.
Using the Archiving System
Important: Before you start
Since the HPC system uses its own identity management via SSH-keys, you need to identify yourself against the central system. For this you run
which will prompt you for your password - this is the password associated with your account, rather then the passphrase associated with your ssh-keys or anything else.
Basic Command Overview
Here is a short summary over the most important iRODS commands with some important command line parameters. All commands from the iRODS command line tools start with an i
and they are installed on the Mogon login nodes.
Navigation
iRODS works based a kind of a virtual file system#storage_locations. The following commands can be used to for navigation and are analogous to their bash-counterparts without the i
-prefix.
Command | Parameters | Description |
---|---|---|
ipwd | print current iRODS working directory (collection) | |
ils | -l , -L , -A | list iRODS collection (-l : with details; -L : more details; -A : ACL) |
icd | <target path> | change iRODS collection |
imkdir | -p <coll> | create a new collection (directory; -p : with parents) |
Each user gets a personal home under /zdv/home/${USER}
and access to the associated HPC projects under /zdv/project/<PROJECT NAME>
.
Accessible collections:
/zdv/home/${USER}
private directory/zdv/project/<PROJECT NAME>
project directory/zdv/home/public
every registered user can read/write/delete/zdv/trash/home/${USER}
private trash bin
Archiving
Uploading data to the iRODS-Archive is done with the command iput
.
Command | Parameters | Description |
---|---|---|
iput | -K , -k , -r | Upload files/directories, ( -k : calculate checksums; -K : calculate checksums and validate; -r : recursively work upon directories) |
ichksum | -r <obj|coll> | Compute and store checksums (-r : recursive) |
The checksum is calculated on the iRODS server and we highly recommend to switch it on immediately on upload. Nevertheless, You can also do it later on with ichksum -K <filename>
. It creates a checksum equivalent to the command sha256sum <local filename> | cut -d ' ' -f 1 | xxd -r -p | base64
, which you can compare to ensure data integrity. The checksums can be queried with ils -L
.
Hint: Bundle before Archiving
Prior to archiving several small files, e.g. files in a directory, they should be bundled. Here is a description how to compress many files in parallel.
It is possible to make up for the forgotten bundling using the ibun
command, e.g. to bundle a given iRODS collection called mydir
into a tar file:
Access Control
iRODS allows for fine-grained access control. You can use the ichmod
command to grant or withdraw permissions with the following parameters:
Parameter | Description |
---|---|
null |read |write |own | access right |
User |Group | to whom |
Object |Collection | for what |
-r
is a useful optional parameter for recursive ACL modifications. Also, see the chmod
bash manual (man chmod
) for comparison.
Retrieving Data
To get data from the iRODS archive, the iget
command can be used:
Parameter | Description |
---|---|
-r | recursive for a collection |
-f | overwrite local existing files |
Example
We provide an example page with all the used commands, so far.
Handling Metadata
Metadata, describing the archived data, are of great importance when striving for reproducible research. Only sufficient metadata describing creation and content of data will ensure a reliable lookup, if need arises.
In iRODS metadata are defined as so called AVU triplets (Attribute, Value, Unit). The first two fields (AV) are mandatory and must not be empty, the unit (U) is optional. AV are defined as VARCHAR(2700)
and U as VARCHAR(250)
, which means they are all text with a maximum size of 2700 and 250 characters, respectively. They might also contain JSON, XML or YAML as text.
Editing
Parameter | Description |
---|---|
add |set |rm |ls |cp | command, see next table for details (ls|cp do not require the AVU triplet) |
-d dataObject |-C collection | which object/collection (file/path) should be queried/edited |
Attribute Value [Unit] | AVU triplet, where the Unit is optional |
Command Description:
Command | Description |
---|---|
add | add a AV(U) triplet |
set | set a single value |
rm | remove an AV(U) triplet |
ls | list existing metadata. If Attribute is given, only metadata of the given attribute |
cp | copy existing metadata. Needs a target and source (e.g. imeta cp -d source -c target ) |
An Example
The following command lists the metadata automatically associated with the previously upladed file hello_world.txt
:
The output of the query is:
You can now add a title, which is not created automatically:
If you query the Attribute ‘Table’ with imeta ls -d hello_world.txt Title
you get:
Adjusting Meta Data
In the example we deliberately made an error (you might have noticed). You can correct such glitches with the general syntax:
or in our example:
For further details see man imeta
.
Minimum set of Attributes
Some meta data attributes are set automatically, to meet most meta data minimum standards (see our policies), those are:
Set automatically:
- Creator full user name
- Publisher “Johannes Gutenberg-University”
- Location “Mainz, Germany”
- Date Unix timestamp
- ExpiryDate Date + 10 years
- protected (default: “false”)
User input required:
- Title free text
- Description text
- Type audio, data set, image, source code, …
- Format simply the file format (e.g. output from file command)
- AccessRights “closed”, “restricted”, “embargoed”, “open” (default: “closed”)
- AccessConditions if AccessRights is “resticted” (not yet)
- EmbargoDate if AccessRights is “embargoed” (not yet)
Write Protection
There is one attribute, which should be used with caution: protected (which default value is ‘false’). If the attribute protected with the value true is set (case sensitive!) or modified to true, the user cannot delete/overwrite the object and most of the metadata attributes any more. This is for the case, if data integrity needs to be ensured, that p.e. after a publication the data cannot be changed any more. Nevertheless, additional metadata attributes can still be edited.
If the dataset should be FAIR (Findable, Accessible, Interaperable, Reusable), these attributes are also mandatory:
- AccessRights must not be “closed”
- Identifier (provided by ZDV/UB, only if attribute “protected” is set; not yet)
- License The license for reuse. Recommended: GPL for code, CC0 for data sets, otherwise CC-BY
- Keywords any keywords
Additional Recommended Attributes
- ORCID Open Researcher Contributor Identification Initiative
- Contributor co-authors
- Reference publication references
Further fields can be inserted. This depends on the scientific field and is the responsibility of the respective researcher or group.
- general
- subject specific
Handling Metadata with Schema Support
Aside of the iRODS commands for editing metadata, contemporary scientific datamanagement adapts more and more data schemas to annotate data sets of various kinds. We therefore provide a helper script.
Searching
for filenames: ilocate
for metadata: imeta qu
You must know, if you want to search for a data object (-d
) or a collection (-C
). And you can use SQL wildcards (%
), if you don’t know the exact pattern you are looking for. The wildcard pattern matching is also applicable for ilocate
.
via database query: iquest
For this complex syntax consult the Online help .
Publishing
For public access a ticket needs to be created for collections or data objects. For example, if you use the above uploaded hello_world.txt
file again.
With this ticket and the path everybody can query information and the content of collections and data objects vi a provided REST-API. JSON strings are returned for valid URLs.
General information about data objects
Querying the metadata
Downloading data
The file content can be viewed with curl
or downloaded with wget
.
Retrieve the metadata of a collection
REST-API URL
the URL for the REST-API consists of:
- Server ( https://irods-web.zdv.uni-mainz.de/irods-rest/rest )
- what (
collection
|dataObject
|fileContents
) - iRODS path
- optionally ‘metadata’
- Ticket string (?ticket=1234567890)
For further information, please read the original IRODS-REST documentation
Data Policy/Recommendation
The “Creator” is the responsible person in the sense of the Urheberrechtsgesetz, taking care that reusing of third party data is legal and in the sense of the DSGVO, that personal data is handled correctly. Even if the “Creator” is not employed at the university any more.
There exists a decision guide if data can be published, sadly only in german.
Licensing
Different kinds of Licenses exist for various cases, this here is just an incomplete list of the most common Open Access Licenses for the three most common datatypes:
- Software
- Arts, Images, Text, etc.
- Data sets
The applicability of CC-BY licenses for Software is not recommended: CC-recommendation and discussion . The same applies for datasets, their publication under a CC-license other than CC0 is doubtful . For other dataset licenses search at Open Definition Licenses Service .
Proprietary file formats should be avoided, since you don’t know if the software to open them still exists in a few years. Try to stick to open standards.
Further Documentation
There are a lot more commands. You can look them up in the original documentation: iRODS documentation
Technical Background Information to the ZDV iRODS System
Storage Locations
iRODS works based a kind of a virtual file system, with its own lingo:
- directories are called collections, they may contain further subcollections
- files are (data objects).
iRODS uses so called ‘Resources’ to archive the collections and data objects. The resources are organized hierarchically. The root is a replication resource, where other resources are added as children. Currently there is a compound resource consisting itself of a cache (unix filesystem) and a universal mass storage system (here: TSM) as archive. The cache has a size of 8TB, once it is fills up, the oldest data objects will be deleted on the cache. If required, they will be fetched back from the archive.
Transfer Speeds
Here we show some transfer speed benchmarks:
This explains why a directory, resp. collection, consisting of many small files, should be compressed. iRODS works best for files > 5GB.
Supplied iRODS Configuration
Every user has a hidden directory ${HOME}/.irods
with the file irods_environment.json
our the HPC Systems home directory containing the connection information for the iRODS archive. Below you see the information template for irods_environment.json
. Do not edit this file.