-
- Downloads
#533 Changed strategy for implementation.
Moved the space reservation information to the DriveStatus object store object instead of a new central registry. The central registry would have been a single point of contention as was the DriveRegistry before being split into DriveStates. As the problem is so close to the one of the drive status, we can actually reuse the drive status for this purpose. The algorithm will also change as we move the responsibility of querying the free space from the disk systems into the OStoreDb object instead of the Scheduler. This leads to a slightly worth layering of responsibilities, making the OStoreDb::RetrieveMount object a client of the disk::DiskSystemFreeSpaceList object. The current implementation will also query the free space from the disk systems on each pop, instead of doing so in a globally cached fashion. With the new model, we could cache the free space per drive (if needed), but not globally. This is not expected to be a real issue and free space is a global counter in the disk system, expected to be readily available.
Showing
- common/dataStructures/ArchiveFile.hpp 1 addition, 1 deletioncommon/dataStructures/ArchiveFile.hpp
- objectstore/DriveState.cpp 64 additions, 0 deletionsobjectstore/DriveState.cpp
- objectstore/DriveState.hpp 6 additions, 0 deletionsobjectstore/DriveState.hpp
- objectstore/RetrieveQueue.cpp 3 additions, 2 deletionsobjectstore/RetrieveQueue.cpp
- objectstore/RetrieveQueue.hpp 2 additions, 1 deletionobjectstore/RetrieveQueue.hpp
- objectstore/RetrieveQueueAlgorithms.hpp 9 additions, 2 deletionsobjectstore/RetrieveQueueAlgorithms.hpp
- objectstore/RetrieveQueueShard.cpp 1 addition, 1 deletionobjectstore/RetrieveQueueShard.cpp
- objectstore/RetrieveQueueShard.hpp 2 additions, 1 deletionobjectstore/RetrieveQueueShard.hpp
- objectstore/RetrieveQueueTest.cpp 6 additions, 4 deletionsobjectstore/RetrieveQueueTest.cpp
- objectstore/RetrieveQueueToTransferForUserAlgorithms.cpp 2 additions, 2 deletionsobjectstore/RetrieveQueueToTransferForUserAlgorithms.cpp
- objectstore/cta.proto 8 additions, 17 deletionsobjectstore/cta.proto
- scheduler/OStoreDB/OStoreDB.cpp 97 additions, 5 deletionsscheduler/OStoreDB/OStoreDB.cpp
- scheduler/OStoreDB/OStoreDB.hpp 8 additions, 4 deletionsscheduler/OStoreDB/OStoreDB.hpp
- scheduler/RetrieveMount.cpp 34 additions, 29 deletionsscheduler/RetrieveMount.cpp
- scheduler/SchedulerDatabase.hpp 2 additions, 31 deletionsscheduler/SchedulerDatabase.hpp
- scheduler/SchedulerDatabaseTest.cpp 3 additions, 3 deletionsscheduler/SchedulerDatabaseTest.cpp
- tapeserver/castor/tape/tapeserver/daemon/DiskWriteTaskTest.cpp 1 addition, 4 deletions...erver/castor/tape/tapeserver/daemon/DiskWriteTaskTest.cpp
- tapeserver/castor/tape/tapeserver/daemon/DiskWriteThreadPoolTest.cpp 1 addition, 4 deletions...castor/tape/tapeserver/daemon/DiskWriteThreadPoolTest.cpp
- tapeserver/castor/tape/tapeserver/daemon/RecallTaskInjectorTest.cpp 1 addition, 4 deletions.../castor/tape/tapeserver/daemon/RecallTaskInjectorTest.cpp
Loading
Please register or sign in to comment