Skip to main content

Contributing Guide

Thank you for participating

The following is a set of rules for contributing to Rucio and its packages. Use your best judgment, and feel free to propose changes to this document.

If you have questions, you can reach the core development team on our Mattermost channel, or send an email to our development mailing list rucio-dev@cern.ch.

What should I know before I get started

A contribution can be either be a patch or feature:

  • Patches include bugfixes and minor changes to the code and are included in patch releases usually made on a bi-weekly schedule.
  • Features include major developments or potentially disruptive changes and are included in feature releases made multiple times a year.

The repository consists of different branches:

  • the master branch includes the development for the next major version.
  • the release-… branches include the patch/minor development of the releases.

Release branches only exist for the currently maintained release versions. Hotfix branches are created on demand. Please communicate to the Rucio maintainers, if you wish to hotfix a previous release.

Generally all pull requests are to be created against the Rucio master branch. Features will end up in the upstream master only and patches are cherry-picked to the maintained releases if applicable. Release-specific changes are excluded from that rule and might be needed if e.g. cherry-picking to the last release was not successful.

The following figure might help you with an overview:

Branching Strategy Graph

How can I Contribute

1. Prerequisite

  • Ensure you add your name (and organisation) to our list of contributors.

  • Fork the repository on Github.

  • Clone the repository to your development machine and configure it:

    git clone https://github.com/<YOUR_USER>/rucio/
    cd rucio
    git remote add upstream https://github.com/rucio/rucio.git
  • Optional: Install Git Hooks

    The prepare-commit-msg hook can be installed by executing the script:

    ./tools/configure_git.sh

    Also, the pre-commit python package is configured for this repository. The pre-commit hook checks the syntax and format of the files before commiting. This saves time in the development process, since minor errors are noticed before submission.

    To install the package and activate the hooks for the project:

    pip install pre-commit
    pre-commit install

    If you only want to run the hooks on a push, run:

    pre-commit install --hook-type pre-push

    More information: https://pre-commit.com/#confining-hooks-to-run-at-certain-stages

2. Create an Issue

Please ensure that an issue exists before submitting your contribution as a pull request. The issue should contain the motivation, modification and expected results (discussions usually happen there). No pull request will be merged without an associated issue (release notes are generated from issues). Each issue gets a unique issue number.

3. Create a local working branch

Create a local branch that corresponds to the issue. To easily identify the purpose of branches different keywords must be used:

  • Patch branches must be named patch-[issue number]-[short description]
  • Feature branches must be named feature-[issue number]-[short description]

If you create these branches by hand please check the spelling because otherwise the test automation might misidentify your branch. There are utility scripts to fetch master and create these branches for you:

./tools/create-patch-branch <unique issue number> '<short_change_message>'
./tools/create-feature-branch <unique issue number> '<short_change_message>'

4. Commit your changes

Commit your change. The commit command must include a specific message format:

git commit -m "<component>: <change_message> #<issue number>"

Valid component names are listed in the label list and are usually specified on the issue of the change.

Add additional explanations to the body of the commit, such as motivation for certain decisions and background information. Here are some general rules: https://cbea.ms/git-commit/.

If you add a github-recognised keyword then the associated issue can be closed automatically once the pull request is merged, e.g.:

<component>: <change_message> Fix #<issue number>

Using multiple commits is allowed as long as they achieve an independent, well-defined, change and are well-described. Otherwise multiple commits should be squashed.

5. Push changes and create a Pull Request

Push the commit to your forked repository and create the pull request. Try to keep the Pull Request simple, it should achieve the single objective described in the issue. Multiple enhancements/fixes should be split into multiple Pull Requests.

While using the github interface is the default interface to create pull requests, you could also use GitHub’s command-line wrapper hub or the GitHub CLI.

The format of the pull request title must be:

<component>: <short_change_message> #<issue number>

6. Watch the Pull Request for reviews

Watch the pull request for comments and reviews. For any pull requests update, please try to squash/amend your commits to avoid “in-between” commits.

Automatic Testing

Every submitted pull request will automatically be run through automated testing through continuous integration. You should see the status of these tests on your pull request.

Local automatic testing

There is also a local shell script to run the same autotests: tools/run_autotests.sh. For manual local testing within containers, please see the docker README.

WARNING: Because of the nature of using the same scripts as continuous integration, some containers may be left running after a test run or when aborting the test run. This is especially the case for running this script without podman.

By default the tool uses 3 worker processes to run all tests that are defined in etc/docker/test/matrix.yml. Feel free to modify the matrix to your needs, but be sure to not unintentionally commit your changes to it. The tests run at most 6 hours - after that a TimeoutError will be raised, causing the script to fail. Running the autotests like this can be parameterized with environment variables as follows:

  • USE_PODMAN 0/1 (default: depends on whether the docker command points to podman)

    Use podman and therefore pods to run the tests.

  • PARALLEL_AUTOTESTS 0/1 (default: 1)

    1 enables multiple processes to run autotests and 0 disables it. When enabled, logs of the running autotests will be written to the .autotest directory created in the working directory. Otherwise the log output will be written to the console (stderr).

    Note that when tests are not running in parallel mode, the test run will always fail fast.

  • PARALLEL_AUTOTESTS_PROCNUM (1,) (default: 3)

    Specifies the number of processes to run and therefor the concurrently run autotests. 3 will usually result in more than 8 GB RAM usage and a fair amount of load on the PC.

  • PARALLEL_AUTOTESTS_FAILFAST 0/1 (default: 0)

    Will abort the parallel run of autotests as soon as possible after at least one autotest failed. Enabling this will leave containers running in case of a failure even on podman.

  • COPY_AUTOTEST_LOGS 0/1 (default: 0)

    Copies /var/log from the rucio container into the .autotest directory after the test run. Each test case will have it’s specific naming as with the logs from the parallel run above.

Human Review

Anyone is welcome to review merge requests and make comments!

The Rucio development team can approve, request changes, or close pull requests. Merging of approved pull requests is done by the Rucio development lead.

Coding Style

We use flake8 and pylint to sanitize our code. Please do the same before submitting a pull request.