DIRAC icon indicating copy to clipboard operation
DIRAC copied to clipboard

Not blocking REA because of slow removal at a site

Open chaen opened this issue 3 months ago • 2 comments

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

chaen avatar Sep 19 '25 03:09 chaen

What is the problem you are seeing?

andresailer avatar Sep 19 '25 07:09 andresailer

If removing a file at a site is very slow and you have a removal transformation hammering this site, you end up having all your REA threads busy on these slow removals, and no other requests move

chaen avatar Sep 22 '25 06:09 chaen