Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Rucio QoS RSE Description and Instructions #277

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions docs/operator/qos_rse_config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
id: qos_rse_config
title: QoS RSE Configuration
---

## QoS RSE Configuration

The following steps show how to configure an RSE to use the Rucio storage-managed QoS feature.
bari12 marked this conversation as resolved.
Show resolved Hide resolved

### How to Configure an RSE for QoS

1. Set the following RSE attributes:

```bash
staging_required: True
maximum_pin_lifetime: 345600 (in seconds)
staging_buffer: {{value}} # this value can be the name of the RSE.
```

Upon executing `rucio-admin rse info <RSE>` command one should see something like the following in settings:

```bash
.
.
Attributes:
===========
maximum_pin_lifetime: 345600
staging_buffer: <RSE>
staging_required: True
.
.
```

2. Either values of `DISK` or `TAPE` are supported for the RSE setting `rse_type`. However workflows using PanDA job brokerage require this value to be `DISK`.

Upon executing `rucio-admin rse info <RSE>` command one should see something like the following in settings:

```bash
.
.
Settings:
=========
rse: <RSE>
rse_type: DISK
.
.
```
1 change: 1 addition & 0 deletions website/sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"operator/did_meta",
"operator/policy_packages",
"operator/s3_rse_config",
"operator/qos_rse_config",
"operator/notifications",
{
"Executables": [
Expand Down