Actions
Bug #9964
closedQueues never get activated | Requests not staged
Status:
Resolved
Priority:
Normal
Assigned To:
-
Category:
-
Start date:
05/22/2015
Due date:
% Done:
0%
Estimated time:
Description
- Caution a queue name (JT819300) could have several queue_id (133, 114)
- Queues are activate by Activator in 'process' method
by iteration over queuesMap.getWaitingQueues(resource.getMediaType()); // getWaitingQueues will retrieve waiting queue from QueuesController.queuesMap while (waitingQueues.size() > 0)) { Queue bestQueue = QueuesController.getInstance().getBestQueue(resource, waitingQueues);
- For an activated queue name (JT819300), in memory , (I mean in queuesMap) you will have activated queue_id (e.g. 113) and created queue_id (e.g. 114),
this may be surprising !
(this will be done by Activator.activate(bestQueue);)
So in short term , in memory queuesMap (key = JT819300) can be activated, but in DB, queuue_id (113, 114) related to that queue name can be not all activated (Thank you very much for code clarity !!!)
- One more thing ...
queuesMap if fiiled by Dispatcher (for sure), when calling addFilePositionOnTape() from submitRequest() (see QueuesController.create())
But if Dispatcher fail for any reason, queuesMap will never be updated
and obviously files never get staged !
But why Dispatcher could get blocked ?
Updated by Chambon Bernard almost 10 years ago
- Status changed from New to Resolved
Updated by Chambon Bernard almost 10 years ago
- Description updated (diff)
- Status changed from Resolved to In progress
Updated by Chambon Bernard almost 10 years ago
This is due to concurrent access to queuesMap between Dispatcher and Stager
Stager can enter in finalizeQueue() method to remove 'queue_id' from queueMap
At the same time Dispatcher can submit a request in same queue (same queue_id)
Two consequences of such behaviour :
Stager can enter in finalizeQueue() method to remove 'queue_id' from queueMap
At the same time Dispatcher can submit a request in same queue (same queue_id)
Two consequences of such behaviour :
- the last requests inserted by dispatcher will never be processed (the files will be never staged)
- more serious impact, as the currentReading is not the last reading
the 'queue_id' is NEVER removed from queueMap
(see test if (last currentReading) in queue class)
so a queue ACTIVATED status remain in queuesMap
so the next queue_id will never be activated, because getWaitingQueues
doesn't return new waiting queue due to test(QueuesController.getInstance().exists(queue.getTape().getName(),QueueStatus.ACTIVATED) == null)
- Solutions :
- synchronized access between Dispatcher and Stager, nevertheless the point 1 above
will always possible due to code structure - get rid of test last currentReading to avoid previous point 2 above
- add an internal monitoring trick to restart treqsd (with help of JSW) case submitted queue (status 110) and no staging since a lot !
- synchronized access between Dispatcher and Stager, nevertheless the point 1 above
Updated by Chambon Bernard almost 10 years ago
- Subject changed from Queues never get activated ! to Queues never get activated | Requests not staged
- Description updated (diff)
Updated by Chambon Bernard over 9 years ago
- Status changed from In progress to Resolved
Actions