Not blocking REA because of slow removal at a site
Open
- Dominant language
- Python
- Stars
- 126
- Forks
- 191
- Avg merge
- 1d 13h
- Merged PRs (30d)
- 33
Description
Problem seen by Juno and LHCb.
Current solution is to distribute requests over time directly in the DB:
```
update Request set NotBefore = DATE_ADD(NOW(), INTERVAL FLOOR(RAND() * 3 * 24 * 60 * 60) SECOND) where Status = 'Waiting' AND
RequestName like '00293211_%';
```
Possible solution in the future:
* multiple dedicated REA
* TS submit requests already delayed requests
Contributor guide
Assessment
This issue has not been assessed yet.