1. 13 2月, 2018 3 次提交
    • A
      Make it explicit with a comment why we kill the old AOF rewrite. · f1705801
      antirez 提交于
      See #3858.
      f1705801
    • G
      rewriteAppendOnlyFileBackground() failure fix · 0c030dea
      Guy Benoish 提交于
      It is possible to do BGREWRITEAOF even if appendonly=no. This is by design.
      stopAppendonly() didn't turn off aof_rewrite_scheduled (it can be turned on
      again by BGREWRITEAOF even while appendonly is off anyway).
      After configuring `appendonly yes` it will see that the state is AOF_OFF,
      there's no RDB fork, so it will do rewriteAppendOnlyFileBackground() which
      will fail since the aof_child_pid is set (was scheduled and started by cron).
      
      Solution:
      stopAppendonly() will turn off the schedule flag (regardless of who asked for it).
      startAppendonly() will terminate any existing fork and start a new one (so it is the most recent).
      0c030dea
    • O
      fix to latency monitor reporting wrong max latency · 58073974
      Oran Agra 提交于
      in some cases LATENCY HISTORY reported latency that was
      higher than the max latency reported by LATENCY LATEST / DOCTOR
      58073974
  2. 03 2月, 2018 1 次提交
  3. 02 2月, 2018 1 次提交
  4. 24 1月, 2018 5 次提交
  5. 18 1月, 2018 21 次提交
  6. 10 1月, 2018 9 次提交