Skip to content
Snippets Groups Projects
  1. Jan 29, 2018
  2. Jan 26, 2018
  3. Jan 25, 2018
  4. Jan 22, 2018
  5. Jan 12, 2018
  6. Jan 11, 2018
  7. Nov 27, 2017
  8. Nov 20, 2017
  9. Nov 14, 2017
    • Steven Murray's avatar
      Issue #136 Implement summary for cta tapepool ls command · f34c4f72
      Steven Murray authored
      Partially implemented.
      
      The Catalogue::getTapePools() method called by the CTA front-end
      now returns an std::list of TapePool structures, where each
      structure now has the following additional "summary"
      member-variables:
      
        /**
         * The total number of tapes in the pool.
         */
        uint64_t nbTapes;
      
        /**
         * The total capacity of all the tapes in the pool in gigabytes
         * (10^9 bytes).
         */
        uint64_t capacityGigabytes;
      
        /**
         * The total amount of compressed data written to all the tapes
         * in the pool in gigabytes * (10^9 bytes).
         */
        uint64_t dataGigabytes;
      
      These three additional member-variables can now be used by the
      CTA front-end to provide the summary information requested by
      issue #136 in the appropriate format / presentation.  For example,
      the CTA front-end could subtract dataGigabytes from
      capacityGigabytes in order to calculate the approximate amount of
      free space.  Please note that this calculation could potentially
      result in a negative number due to the fact that capacityGigabytes
      is an approximate number entered by a tape operator for each tape
      when they register those tapes into CTA.  In such a case the CTA
      front-end should display 0 and not the negative result.
      f34c4f72
    • Steven Murray's avatar
      Moved TapePool from common::dataStructures:: to catalogue:: because it belongs... · b19daf7e
      Steven Murray authored
      Moved TapePool from common::dataStructures:: to catalogue:: because it belongs to the Catalogue interface
      b19daf7e
  10. Nov 10, 2017
  11. Nov 09, 2017
  12. Nov 08, 2017
  13. Oct 20, 2017
  14. Oct 03, 2017
  15. Sep 27, 2017
  16. Sep 26, 2017
  17. Sep 21, 2017
  18. Aug 18, 2017
    • Steven Murray's avatar
      Added TAPE_FILE_ARCHIVE_FILE_ID_FK index · 0259242c
      Steven Murray authored
      The reponse rate of the CTA catalogue to "eos rm"
      commands was too slow.  The response rate was
      around 20Hz when using the CTA/EOS production
      database configured with 10 database connections.
      The rate has now been increased to 30Hz by adding
      the TAPE_FILE_ARCHIVE_FILE_ID_FK index.
      0259242c
  19. Aug 17, 2017
Loading