This project is mirrored from https://gitee.com/mirrors/neo4jsource.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 03 Jun, 2019 3 commits
  2. 31 May, 2019 9 commits
  3. 30 May, 2019 6 commits
  4. 29 May, 2019 9 commits
    • fickludd's avatar
      Plan with minimum graph... · a3e737be
      fickludd authored
      Plan_with_minimum_graph replaces the previous functionality
      plan_with_minimum_cardinality, and solves the issue of getting plans on
      an empty database (or supersmall) that do not scale as data is added.
      The previous solution would set a minimum bound for operator cardinalities,
      but this would not work if the operator had an input cardinality bigger
      that the specified min cardinality. The new solution simply sets
      minimum values for the graph statistics, which should provide a
      whole-planner emulation of a bigger than actual graph, and therefore
      give scalable plans always.
      a3e737be
    • fickludd's avatar
    • fickludd's avatar
      Fix bug in ReportCostComparisonsAsRows · 761b672d
      fickludd authored
      761b672d
    • fickludd's avatar
      Fix test so it actually fails when broken · 21a387f6
      fickludd authored
      21a387f6
    • fickludd's avatar
      Remove some warnings · e1deeb55
      fickludd authored
      e1deeb55
    • fickludd's avatar
    • fickludd's avatar
      Javadoc and clean in GraphStatistics · c7aa3945
      fickludd authored
      c7aa3945
    • fickludd's avatar
      Move planner defaults to a more sensible place · 7fd5d864
      fickludd authored
      7fd5d864
    • lutovich's avatar
      Refactor thread handling in Bolt server · 51e0cd45
      lutovich authored
       * Removed selectorThreads system property because we never head a need
         to configure it. Netty itself has the same system property to
         configure the number of threads. It calculates the default
         amount using the same formula
      
       * Create a single event loop group and allow Netty to use it for
         both parent (acceptor) and child (client) threads. This removes
         the need to create manage two event loop groups in Bolt server
      
       * Close all server channels before closing the event loop group.
         This seems to be the recommended way of closing down Netty
         servers. It is also an attempt to fix a rare event loop
         shutdown exception "eventfd_write() failed: Bad file descriptor"
      
       * Shutdown the event loop in a synchronous manner. This is to make
         sure all network resources are terminated when Bolt server stops
      
       * Remove explicit pooled allocator configuration because it is
         now the default
      
       * Deregister ports from the port register when Bolt server is stopped
      51e0cd45
  5. 28 May, 2019 13 commits