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. 02 Nov, 2020 1 commit
  2. 30 Oct, 2020 2 commits
  3. 29 Oct, 2020 2 commits
  4. 28 Oct, 2020 1 commit
    • Petr Janouch's avatar
      Improving cooperation between the page cache and the IO limiter · 0af77afd
      Petr Janouch authored
      The purpose of this change is to guarantee configured IOPS limits.
      
      Before this change, the page cache could flush more aggressively
      than the IOPS limit depending on layout of dirty pages.
      The reason was that it processed 4k page segments before invoking
      the IO limiter which would block only for up to 100ms.
      This could lead to pages being flushed at rate up to 40k/s,
      depending on the distribution of dirty pages
      among the 4k page segments.
      0af77afd
  5. 26 Oct, 2020 2 commits
  6. 23 Oct, 2020 1 commit
    • Pontus Melke's avatar
      Don't fail when encountering eventually consistent index · 1c9f216a
      Pontus Melke authored
      In planning whenever we encountered an eventually consistent
      index we throw an error when trying to map the behaviour to a scala
      equivalent.
      
      changelog: Fix error where we could get an error Missing kernel to cypher mapping for index behaviour: EVENTUALLY_CONSISTENT in Cypher.
      1c9f216a
  7. 22 Oct, 2020 9 commits
  8. 21 Oct, 2020 1 commit
  9. 15 Oct, 2020 3 commits
  10. 13 Oct, 2020 1 commit
    • emmaholmbergohlsson's avatar
      Write bytes setting values without decimal points for docs · ad1b577f
      emmaholmbergohlsson authored
      The bytes values were written as decimal numbers but the SettingValueParser didn't
      support decimal points. This meant that the default values in the documentation
      weren't actually valid values.
      Now the values that will end up in the docs are printed with the highest unit
      they can use without needing a decimal point instead.
      
      Also adds a test that verifies that the string representation of our default values
      for settings are parsable.
      ad1b577f
  11. 08 Oct, 2020 1 commit
    • Pontus Melke's avatar
      PruningVarExpand must satisfy predicate on start node · 618b0650
      Pontus Melke authored
      For queries using pruning varExpand with a predicate we were only
      evaluating the predicate on the relationship and the node we are
      expanding to - not the node we were coming from. This leads to the
      wrong results for some queries.
      
      changelog: Fix bug where predicate in WHERE clause was ignored for queries combining
      variable lenght pattern and DISTINCT.
      618b0650
  12. 07 Oct, 2020 1 commit
  13. 01 Oct, 2020 1 commit
  14. 30 Sep, 2020 4 commits
  15. 29 Sep, 2020 2 commits
    • Mattias Finné's avatar
      Importer checks token name validity · e756b587
      Mattias Finné authored
      e756b587
    • Mattias Finné's avatar
      Fixes an issue decrementing loop degrees · c6909be9
      Mattias Finné authored
      Each relationship chain holds the total length of the chain (degree) in
      the prev pointer of the first relationship. When deleting a relationship
      that wasn't the first in the chain, but where the first relationship in
      that chain happened to be a loop relationship the degree would be
      decremented twice for one of the degree slots.
      
      In turn this would cause degree for that chain to be skewed from
      that point onwards and would result in inconsistent counts with what
      the counts store had if e.g. labels were changed after this point.
      c6909be9
  16. 25 Sep, 2020 1 commit
    • Mattias Finné's avatar
      Fixes a log pruning comparison issue in volumetric check point threshold · ccd0c87d
      Mattias Finné authored
      There was an issue where the volumetric checkpoint policy (which uses
      log pruning to check if check point can be made) and the actual log pruning
      wouldn't use the same upper log version bound and so if no further write
      transaction was committed the db would be stuck in a state of infinite
      checkpointing (or rather checkpoint on every check) because it would
      look like it could do checkpoint, but log pruning would not prune any log.
      ccd0c87d
  17. 24 Sep, 2020 1 commit
  18. 22 Sep, 2020 1 commit
  19. 11 Sep, 2020 5 commits