1. 31 May, 2013 1 commit
    • antirez's avatar
      New INFO field "min_slaves_good_slaves". · 971217c7
      antirez authored
      When min-slaves-to-write feature is active, this field reports the
      number of slaves considered good (online state, lag within the specified
      range).
      971217c7
  2. 30 May, 2013 2 commits
  3. 29 May, 2013 2 commits
  4. 28 May, 2013 1 commit
  5. 27 May, 2013 2 commits
  6. 15 May, 2013 4 commits
  7. 24 Apr, 2013 1 commit
  8. 19 Apr, 2013 1 commit
  9. 02 Apr, 2013 1 commit
    • antirez's avatar
      Throttle BGSAVE attempt on saving error. · d6b0c18c
      antirez authored
      When a BGSAVE fails, Redis used to flood itself trying to BGSAVE at
      every next cron call, that is either 10 or 100 times per second
      depending on configuration and server version.
      
      This commit does not allow a new automatic BGSAVE attempt to be
      performed before a few seconds delay (currently 5).
      
      This avoids both the auto-flood problem and filling the disk with
      logs at a serious rate.
      
      The five seconds limit, considering a log entry of 200 bytes, will use
      less than 4 MB of disk space per day that is reasonable, the sysadmin
      should notice before of catastrofic events especially since by default
      Redis will stop serving write queries after the first failed BGSAVE.
      
      This fixes issue #849
      d6b0c18c
  10. 28 Mar, 2013 2 commits
  11. 26 Mar, 2013 2 commits
  12. 13 Mar, 2013 2 commits
  13. 12 Mar, 2013 1 commit
  14. 11 Mar, 2013 10 commits
  15. 06 Mar, 2013 2 commits
    • antirez's avatar
      API to lookup commands with their original name. · bc1b2e8f
      antirez authored
      A new server.orig_commands table was added to the server structure, this
      contains a copy of the commant table unaffected by rename-command
      statements in redis.conf.
      
      A new API lookupCommandOrOriginal() was added that checks both tables,
      new first, old later, so that rewriteClientCommandVector() and friends
      can lookup commands with their new or original name in order to fix the
      client->cmd pointer when the argument vector is renamed.
      
      This fixes the segfault of issue #986, but does not fix a wider range of
      problems resulting from renaming commands that actually operate on data
      and are registered into the AOF file or propagated to slaves... That is
      command renaming should be handled with care.
      bc1b2e8f
    • antirez's avatar
      Allow AUTH while loading the DB in memory. · aadb8aaa
      antirez authored
      While Redis is loading the AOF or RDB file in memory only a subset of
      commands are allowed. This commit adds AUTH to this subset.
      aadb8aaa
  16. 27 Feb, 2013 6 commits