1. 09 4月, 2013 1 次提交
    • A
      Cluster: properly send ping to nodes not pinged foro too much time. · f09b2508
      antirez 提交于
      In commit d728ec6d it was introduced the concept of sending a ping to
      every node not receiving a ping since node_timeout/2 seconds.
      However the code was located in a place that was not executed because of
      a previous conditional causing the loop to re-iterate.
      
      This caused false positives in nodes availability detection.
      
      The current code is still not perfect as a node may be detected to be in
      PFAIL state even if it does not reply for just node_timeout/2 seconds
      that is not correct. There is a plan to improve this code ASAP.
      f09b2508
  2. 04 4月, 2013 5 次提交
  3. 03 4月, 2013 1 次提交
  4. 02 4月, 2013 3 次提交
    • A
      Throttle BGSAVE attempt on saving error. · b237de33
      antirez 提交于
      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
      b237de33
    • A
      Version bumped to 2.9.9. · b14fda7d
      antirez 提交于
      b14fda7d
    • S
      Merge pull request #1017 from jbergstroem/build-improvements · 63457d1a
      Salvatore Sanfilippo 提交于
      Build improvements
      63457d1a
  5. 29 3月, 2013 1 次提交
  6. 28 3月, 2013 7 次提交
  7. 27 3月, 2013 4 次提交
  8. 26 3月, 2013 7 次提交
    • A
      Allow SELECT while loading the DB. · df69155e
      antirez 提交于
      Fixes issue #1024.
      df69155e
    • A
      TTL / PTTL commands: two bugs fixed. · 873f328f
      antirez 提交于
      This commit fixes two corner cases for the TTL command.
      
      1) When the key was already logically expired (expire time older
      than current time) the command returned -1 instead of -2.
      
      2) When the key was existing and the expire was found to be exactly 0
      (the key was just about to expire), the command reported -1 (that is, no
      expire) instead of a TTL of zero (that is, about to expire).
      873f328f
    • A
      Flag PUBLISH as read-only in the command table. · 8bb5eb73
      antirez 提交于
      8bb5eb73
    • A
      Transactions: propagate MULTI/EXEC only when needed. · 71f3e743
      antirez 提交于
      MULTI/EXEC is now propagated to the AOF / Slaves only once we encounter
      the first command that is not a read-only one inside the transaction.
      
      The old behavior was to always propagate an empty MULTI/EXEC block when
      the transaction was composed just of read only commands, or even
      completely empty. This created two problems:
      
      1) It's a bandwidth waste in the replication link and a space waste
         inside the AOF file.
      
      2) We used to always increment server.dirty to force the propagation of
         the EXEC command, resulting into triggering RDB saves more often
         than needed.
      
      Note: even read-only commands may also trigger writes that will be
      propagated, when we access a key that is found expired and Redis will
      synthesize a DEL operation. However there is no need for this to stay
      inside the transaction itself, but only to be ordered.
      
      So for instance something like:
      
          MULTI
          GET foo
          SET key zap
          EXEC
      
      May be propagated into:
      
          DEL foo
          MULTI
          SET key zap
          EXEC
      
      While the DEL is outside the transaction, the commands are delivered in
      the right order and it is not possible for other commands to be inserted
      between DEL and MULTI.
      71f3e743
    • A
      02c269e2
    • A
      Transactions: use the propagate() API to propagate MULTI. · 2f497340
      antirez 提交于
      The behavior is the same, but the code is now cleaner and uses the
      proper interface instead of dealing directly with AOF/replication
      functions.
      2f497340
    • S
      Merge pull request #1003 from NanXiao/patch-3 · afce0106
      Salvatore Sanfilippo 提交于
      Update config.c
      afce0106
  9. 25 3月, 2013 6 次提交
  10. 23 3月, 2013 2 次提交
    • A
      redis-cli --stat, stolen from redis-tools. · 09aa55a3
      antirez 提交于
      Redis-tools is a connection of tools no longer mantained that was
      intented as a way to economically make sense of Redis in the pre-vmware
      sponsorship era. However there was a nice redis-stat utility, this
      commit imports one of the functionalities of this tool here in redis-cli
      as it seems to be pretty useful.
      
      Usage: redis-cli --stat
      
      The output is similar to vmstat in the format, but with Redis specific
      stuff of course.
      
      From the point of view of the monitored instance, only INFO is used in
      order to grab data.
      09aa55a3
    • A
      redis-trib: All output wrapped by a specific function. · c195289e
      antirez 提交于
      This is needed in order to colorize it as next step.
      We use conventions in output messages such as
      
      >>> This is an action
      *** This is a warning
      [ERR] This is an error
      [OK] That's fine
      
      And so forth, so that a color will be associated checking the first
      three chars.
      c195289e
  11. 22 3月, 2013 3 次提交