1. Apr 07, 2022
  2. Mar 15, 2022
  3. Mar 11, 2022
    • Ramon Nou's avatar
      Prepare Parallax Support to 0.9.1 · 68b85cab
      Ramon Nou authored
      68b85cab
    • Ramon Nou's avatar
      Update Parallax (solves delete-scan bug) · e4bb6135
      Ramon Nou authored
      e4bb6135
    • Ramon Nou's avatar
      Updated base ci image from 0.9 · d1848c91
      Ramon Nou authored
      d1848c91
    • Ramon Nou's avatar
      Updated scripts for 0.9.0-experimental · 6fec7bf1
      Ramon Nou authored
      6fec7bf1
    • Ramon Nou's avatar
      Parallax backend added · e4eebd35
      Ramon Nou authored
      Add command line option for kreon
      
      Resolve CRTP specific function name
      
      Testing Infrastructure for different databases
      
      add path
      
      Reactivated destructors, kreondb is destroyed to reduce CI space
      
      Returning string_view in fs_data added dbbackend property
      
      Updated Readme and MetatadaFactory
      
      Adding extra options for kreondb, README+CHANGELOG updated
      
      Update .gitlab-ci.yml
      
      updating script test...
      
      Updated dl_dep tests
      
      Kreon test (for metadata) backend.
      
      Add command line option for kreon
      
      Resolve CRTP specific function name
      
      Testing Infrastructure for different databases
      
      add path
      
      Reactivated destructors, kreondb is destroyed to reduce CI space
      
      Returning string_view in fs_data added dbbackend property
      
      Adding extra options for kreondb, README+CHANGELOG updated
      
      updating script test...
      
      Updated dl_dep tests
      
      Remove Kreon - Add Parallax
      
      Add Parallax
      
      Add DockerFile
      
      adding parallaxdb option
      
      Docker update
      
      Missing Parallax hpp
      
      Removed Kreon from code, lib conflicts
      
      Updated Parallax master
      
      Updated DockerFile deps
      
      Reformat
      
      Changed Base
      
      Added ps
      
      Reduced Logging and added ps in docker
      
      Add Path
      
      increase testing timeout
      
      Create options.yml automatically
      
      Updated out tests
      e4eebd35
  4. Feb 22, 2022
  5. Aug 15, 2021
  6. Jul 03, 2021
  7. Jul 01, 2021
  8. May 28, 2021
  9. Mar 30, 2021
  10. Feb 07, 2021
  11. Nov 25, 2020
  12. Jul 28, 2020
    • Marc Vef's avatar
      Adding truncate test · 2e2c190b
      Marc Vef authored and Alberto Miranda's avatar Alberto Miranda committed
      2e2c190b
    • Marc Vef's avatar
    • Marc Vef's avatar
      Refactoring daemon I/O logic and fixing truncate etc. · bcb30ac2
      Marc Vef authored and Alberto Miranda's avatar Alberto Miranda committed
      The `ChunkStorage` backend class on the daemon was throwing `system_errors` without being caught, crashing the server in the process. `ChunkStorage` now uses a designated error class for errors that might occur. In addition the dependency to Argobots was removed which was used to trigger `ABT_eventuals`, laying ground work for future non-Argobots IO implementations. Further, the whole class was refactored for consistency and failure resistance.
      
      A new class `ChunkOperation` is introduced which wraps Argobots' IO task operations which allows the removal of IO queue specific code within RPC handlers, i.e., read and write handlers. The idea is to separate eventuals, tasks and their arguments from handler logic into a designated class. Therefore, an object of an inherited class of `ChunkOperation` is instantiated within the handlers that drives all IO tasks. The corresponding code was added to the read and write RPC handlers. Note, `ChunkOperation` is not thread-safe and is supposed to be called by a single thread.
      
      In addition, truncate was reworked for error handling (it crashed the server on error) and that it uses the IO queue as well since truncate causes a write operation and should not overtake IO tasks in the queue.
      
      The chunk stat rpc handler was refactored for error handling and to use error codes as well. 
      
      Further minor changes:
      - dead chunk stat code has been removed
      - some namespaces were missing: `gkfs::rpc`
      - more flexible handler cleanup and response code
      - fixed a bug where the chunk dir wasn't removed when the metadata didn't exist on the same node
      bcb30ac2
  13. Apr 18, 2019
  14. Mar 05, 2019
  15. Oct 29, 2018
  16. Oct 28, 2018
    • Tommaso Tocci's avatar
      update deps, drop abt-snoozer · b0c8d184
      Tommaso Tocci authored
      margo, argobots and mercury have been updated. The abt-snoozer dep
      required by margo it is not needed anymore.
      
      RocksDB has been also updated to the lastest release
      b0c8d184
  17. May 09, 2018
    • Tommaso Tocci's avatar
      ChunkStorage: Acknoledge R/W before close() · 366d84e1
      Tommaso Tocci authored
      Acknowledge the main thread that the IO operation had terminate before
      to actually close the file.
      
      This is a "dirty" fix that waits to be refactored.
      
      WARNING: Error on close will not be reported to the client that issued the IO
      operation.
      366d84e1
    • Tommaso Tocci's avatar
      Wrap data ops into ChunkStorage class · 14a835da
      Tommaso Tocci authored
      Data operation has been grouped under a ChunkStorage class
      that will manage all the data backend operations.
      
      The instance of this object is stored into the ADAFS_DATA sigleton.
      14a835da