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. Mar 30, 2021
  3. Feb 07, 2021
  4. Nov 25, 2020
  5. Sep 10, 2020
  6. May 19, 2020
  7. May 12, 2020
  8. Feb 25, 2020
  9. Feb 24, 2020
  10. Feb 20, 2020
  11. Feb 10, 2020
  12. Feb 09, 2020
  13. 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
  14. Nov 07, 2019
  15. Nov 04, 2019
  16. 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
  17. Sep 09, 2019
  18. Sep 06, 2019
  19. Jul 04, 2019
  20. Jun 28, 2019
  21. Apr 24, 2019
  22. Apr 03, 2019
  23. Mar 06, 2019
  24. Mar 05, 2019
  25. 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
  26. Nov 07, 2018
  27. 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
  28. Nov 04, 2018
  29. Oct 31, 2018
    • Tommaso Tocci's avatar
      use mercury automatic SM routing · c40be81b
      Tommaso Tocci authored
      Mercury now support shared memory autorouting.
      
      A single margo instance can be initialized and it will handle both
      shared memory communication and remote ones.
      
      If the endpoint of the RPC is local mercury will automatically use
      shared memory.
      
      Since there is only one margo instance all the duplicated code for
      rpc/ipc have been unified and simplified considerably.
      
      ------
      
      The way in which client contact the server has changed.
      
       - Server initializes its own margo instance and generate the endpoint
      communication string using `HG_Addr_self`.
       - This endpoint description string is written on the pid file
       - When the client library loads it will fetch the server endpoint
      description from the pid file and will use that to contact the server.
      c40be81b