An error occurred fetching the project authors.
  1. 15 May, 2018 1 commit
    • Julien Muchembled's avatar
      importer: new option to write back new transactions to the source database · 30a02bdc
      Julien Muchembled authored
      By doing the work with secondary connections to the underlying databases,
      asynchronously and in a separate process, this should have minimal impact on
      the performance of the storage node. Extra complexity comes from backends that
      may lose connection to the database (here MySQL): this commit fully implements
      reconnection.
      30a02bdc
  2. 20 Mar, 2018 1 commit
  3. 12 Jun, 2017 1 commit
  4. 12 May, 2017 1 commit
  5. 25 Apr, 2017 2 commits
  6. 13 Apr, 2017 1 commit
  7. 17 Mar, 2017 1 commit
  8. 18 Jan, 2017 2 commits
  9. 17 Jan, 2017 1 commit
  10. 28 Nov, 2016 1 commit
  11. 27 Nov, 2016 3 commits
    • Julien Muchembled's avatar
      Fix identification issues, including a race condition causing id conflicts · 9385706f
      Julien Muchembled authored
      The added test describes how the new id timestamps fix the race condition.
      These timestamps could be any unique opaque values, and the protocol is
      extended to exchange them along with node ids.
      
      Internally, nodes also reuse timestamps as a marker to identify the first
      NotifyNodeInformation packets from the master: since this packet is a complete
      list of nodes in the cluster, any other node in the node manager has left the
      cluster definitely and is removed.
      
      The secondary masters didn't receive update about master nodes.
      It's also useless to send them information about non-master nodes.
      9385706f
    • Julien Muchembled's avatar
      spelling: oudated -> outdated · b62b8dc3
      Julien Muchembled authored
      b62b8dc3
    • Julien Muchembled's avatar
      Fix spelling mistakes · 6e32ebb7
      Julien Muchembled authored
      6e32ebb7
  12. 26 Feb, 2016 1 commit
  13. 25 Jan, 2016 1 commit
  14. 05 Oct, 2015 1 commit
  15. 23 Sep, 2015 1 commit
  16. 14 Sep, 2015 1 commit
  17. 23 Jun, 2015 1 commit
    • Julien Muchembled's avatar
      tests: simplify preallocation of ports · c321971f
      Julien Muchembled authored
      Binding a port actually does not reserve it. And on the other side, a bound
      socket can't be bound again. So it could bind a port twice, warn about this,
      and then raise EINVAL when trying to bind again.
      
      Apart from this, the global lock didn't even prevent conflict with another
      NEO test run when tests restart nodes. So better keep it simple.
      c321971f
  18. 21 May, 2015 1 commit
  19. 30 Jul, 2014 1 commit
  20. 04 Jun, 2014 1 commit
    • Julien Muchembled's avatar
      Fix tests broken by API changes in new psutil 2.0.0 · 9fe34439
      Julien Muchembled authored
      This fixes:
      
      Traceback (most recent call last):
        File "neo/tests/functional/testMaster.py", line 50, in testStoppingSecondaryMaster
          self.neo.expectDead(master)
        File "neo/tests/functional/__init__.py", line 615, in expectDead
          self.expectCondition(callback, *args, **kw)
        File "neo/tests/functional/__init__.py", line 509, in expectCondition
          'History: %s' % opaque_history)
      AssertionError: Timeout while expecting condition. History: [False, False, False, False, False, False, False, False, False, False, False]
      9fe34439
  21. 03 Jun, 2014 1 commit
  22. 07 Jan, 2014 1 commit
  23. 27 Aug, 2012 1 commit
  24. 23 Aug, 2012 1 commit
  25. 22 Aug, 2012 2 commits
  26. 21 Aug, 2012 1 commit
  27. 20 Aug, 2012 1 commit
  28. 16 Aug, 2012 1 commit
  29. 12 Aug, 2012 1 commit
  30. 01 Aug, 2012 1 commit
  31. 13 Jul, 2012 1 commit
  32. 20 Mar, 2012 2 commits
    • Julien Muchembled's avatar
      neo.lib.logging.* -> logging.* · 5743cdce
      Julien Muchembled authored
      5743cdce
    • Julien Muchembled's avatar
      Review logging to keep all debugging information in RAM and flush only if useful · 1fce5cc4
      Julien Muchembled authored
      The main goal of this patch is to keep all DEBUG logs and packet logger enabled
      without exploding disk usage.
      This is done by keeping the last 16 MB (by default) of debugging information in
      a RAM buffer, and to emit it to an SQLite DB upon RTMIN signal or in case of
      warning and more severe log.
      
      Implementation is also cleaned up for better integration within a framework
      or if run standalone. NEO logger is now a direct child of root handler.
      Only warnings and more severe logs are forwarded to root handler.
      
      A new script 'neolog' is added to pretty-print the contents of the SQLite log.
      
      In unit tests, logging events are not buffered but emitted immediately.
      When a test passes, payloads of all exchanged packets are discarded to reduce
      disk usage on test bots.
      
      This slows down performance tests by about 15 % because even if nothing is
      written to disk, debug and packet log records are now always rendered.
      1fce5cc4
  33. 13 Mar, 2012 2 commits