Skip to content
Snippets Groups Projects
  1. Jul 26, 2019
    • Eric Cano's avatar
      #533 Changed strategy for implementation. · ad203f96
      Eric Cano authored
      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.
      ad203f96
  2. Jul 03, 2019
  3. Jul 02, 2019
  4. Jul 01, 2019
  5. Jun 24, 2019
  6. Jun 21, 2019
  7. Jun 17, 2019
  8. Jun 03, 2019
  9. May 28, 2019
  10. May 22, 2019
  11. May 21, 2019
  12. May 20, 2019
  13. May 19, 2019
  14. May 17, 2019
  15. May 14, 2019
  16. May 09, 2019
  17. May 08, 2019
  18. May 02, 2019
  19. Apr 30, 2019
  20. Apr 15, 2019
  21. Mar 19, 2019
  22. Mar 15, 2019
  23. Mar 14, 2019
  24. Mar 05, 2019
    • Eric Cano's avatar
    • Eric Cano's avatar
      Expanded retrieve requests for repack · 028b5231
      Eric Cano authored
      The retrieve requests now carry all the information necessary to create the archive jobs.
      Retrive requests carry an isRepack boolean. The distinction between repack and non-repack behaviour
      is pushed as low as possible in the api (in the object store) so that client code can be more
      generic. For the same reason, the
      The expand repack mode (re-creation of missing tape files) is not supported yet.
      Changed the represenation of copy numbers to uint32 (as this is the smalled number supported but protocol buffers).
      Added ArchiveRoute::StorageClassMap and ArchiveRoute::FullMap to store archive routing in memory.
      Added repack buffer base URL support, and mechanism to compute temporary copy location in disk cache.
      Fixed bug in ObjectOps<>::asyncInsert();
      Inplemented the path generation for repack disk storage (<BaseURL>/<VID>/<FSeq (09%d)>).
      028b5231
  25. Feb 27, 2019
Loading