1. Jun 16, 2021
    • Ramon Nou's avatar
      Moved distributor instantation to RPC_DATA and daemon.cpp on the server side.... · a8dc9c3c
      Ramon Nou authored and Ramon Nou's avatar Ramon Nou committed
      Moved distributor instantation to RPC_DATA and daemon.cpp on the server side. Added interval_map to GuidedDistributor for better performance
      
      Moving reads extended log to normal log module.
      
      Update logging.hpp
      
      Added GKFS prefix to CMake options
      
      Catch2 Guided Distributor test
      
      Added creation of /tmp/guided.txt in the test
      
      updated README.MD and protected Distributor for duplicated inserts
      
      Added metadata + data optimization with #
      a8dc9c3c
  2. May 28, 2021
  3. Mar 30, 2021
  4. Feb 07, 2021
  5. Nov 25, 2020
  6. Sep 11, 2020
  7. Sep 10, 2020
  8. May 19, 2020
  9. May 12, 2020
  10. Feb 25, 2020
  11. Feb 24, 2020
  12. Feb 20, 2020
  13. Feb 19, 2020
  14. Feb 18, 2020
  15. Feb 10, 2020
  16. Feb 09, 2020
  17. Feb 07, 2020
    • Marc Vef's avatar
      Code Maintenance: Configurations, definitions, adafs to gkfs · 053cd9a5
      Marc Vef authored
      Restructuring code w.r.t. configurations and definitions:
      - #defines have been mostly removed from configurations
      - a dedicated config file has been added for configurations with constexpr
      - past configure file is now only a cmake wrapper
      - wrapping global functions into namespaces
      
      Removed all adafs and ifs occurrences. Now called gkfs
      053cd9a5
  18. Jan 28, 2020
  19. Nov 07, 2019
  20. Nov 05, 2019
  21. Nov 04, 2019
  22. Sep 14, 2019
    • Alberto Miranda's avatar
      Add tracking of internal fds · 58055d57
      Alberto Miranda authored
      Fixes an issue where client applications such as ssh might attempt to
      close all open fds, therefore also closing the fds used by the internal
      components of the library such as Mercury.
      58055d57
  23. Sep 09, 2019
  24. Sep 06, 2019
  25. Jul 04, 2019
  26. Apr 24, 2019
  27. Mar 05, 2019
  28. Feb 21, 2019
    • Tommaso Tocci's avatar
      Disable interception during library shutdown · 225552aa
      Tommaso Tocci authored
      If we intercept function during shutdown we could try to access the
      internal file map that has been already freed.
      
      This woun't affect performance at runtime since we are always checking
      only one boolean flags on every interception as before.
      
      On the other hand should sppedup the shutdown of the library, because we
      disable the interception of glibc library call before performing the
      shutdown routines.
      225552aa
  29. Nov 05, 2018
    • Tommaso Tocci's avatar
      bugfix: do not always follow last link in path · 20108549
      Tommaso Tocci authored
      when resolving path we don't want always
      to resolve also the last components if it is a link. Cause in some cases
      we want exactly the path of that link and not the one it points to.
      
      lstat and readlink are some example of functions that don't want to
      resolve the last link.
      20108549
  30. Nov 04, 2018
    • Tommaso Tocci's avatar
      relativize path support fd descriptor logic · 58360b32
      Tommaso Tocci authored
      relativize path now accepts a file descriptor.
      
      If fd is AT_FDCWD relative path need to be considered with respect to
      the current working directory. Otherwise the path is relative to the
      directory with the given file descriptor
      58360b32