1. 11 3月, 2014 1 次提交
    • M
      Fix "can't bind to address" error reporting. · 6f4b5ef6
      Matt Stancliff 提交于
      Report the actual port used for the listening attempt instead of
      server.port.
      
      Originally, Redis would just listen on server.port.
      But, with clustering, Redis uses a Cluster Port too,
      so we can't say server.port is always where we are listening.
      
      If you tried to launch Redis with a too-high port number (any
      port where Port+10000 > 65535), Redis would refuse to start, but
      only print an error saying it can't connect to the Redis port.
      
      This patch fixes much confusions.
      6f4b5ef6
  2. 05 3月, 2014 3 次提交
  3. 27 2月, 2014 1 次提交
    • A
      Initial implementation of BITPOS. · 1f8005ca
      antirez 提交于
      It appears to work but more stress testing, and both unit tests and
      fuzzy testing, is needed in order to ensure the implementation is sane.
      1f8005ca
  4. 25 2月, 2014 1 次提交
    • M
      Add cluster or sentinel to proc title · 5a8c9f94
      Matt Stancliff 提交于
      If you launch redis with `redis-server --sentinel` then
      in a ps, your output only says "redis-server IP:Port" — this
      patch changes the proc title to include [sentinel] or
      [cluster] depending on the current server mode:
      e.g.  "redis-server IP:Port [sentinel]"
            "redis-server IP:Port [cluster]"
      5a8c9f94
  5. 18 2月, 2014 1 次提交
    • A
      Get absoulte config file path before processig 'dir'. · 58b6dd9b
      antirez 提交于
      The code tried to obtain the configuration file absolute path after
      processing the configuration file. However if config file was a relative
      path and a "dir" statement was processed reading the config, the absolute
      path obtained was wrong.
      
      With this fix the absolute path is obtained before processing the
      configuration while the server is still in the original directory where
      it was executed.
      58b6dd9b
  6. 13 2月, 2014 1 次提交
    • A
      Update cached time in rdbLoad() callback. · 3c1672da
      antirez 提交于
      server.unixtime and server.mstime are cached less precise timestamps
      that we use every time we don't need an accurate time representation and
      a syscall would be too slow for the number of calls we require.
      
      Such an example is the initialization and update process of the last
      interaction time with the client, that is used for timeouts.
      
      However rdbLoad() can take some time to load the DB, but at the same
      time it did not updated the time during DB loading. This resulted in the
      bug described in issue #1535, where in the replication process the slave
      loads the DB, creates the redisClient representation of its master, but
      the timestamp is so old that the master, under certain conditions, is
      sensed as already "timed out".
      
      Thanks to @yoav-steinberg and Redis Labs Inc for the bug report and
      analysis.
      3c1672da
  7. 12 2月, 2014 2 次提交
    • A
      AOF write error: retry with a frequency of 1 hz. · 0296aab6
      antirez 提交于
      0296aab6
    • A
      AOF: don't abort on write errors unless fsync is 'always'. · dd73a7bf
      antirez 提交于
      A system similar to the RDB write error handling is used, in which when
      we can't write to the AOF file, writes are no longer accepted until we
      are able to write again.
      
      For fsync == always we still abort on errors since there is currently no
      easy way to avoid replying with success to the user otherwise, and this
      would violate the contract with the user of only acknowledging data
      already secured on disk.
      dd73a7bf
  8. 08 2月, 2014 1 次提交
  9. 07 2月, 2014 1 次提交
  10. 04 2月, 2014 1 次提交
    • A
      CLIENT PAUSE and related API implemented. · 4919a13f
      antirez 提交于
      The API is one of the bulding blocks of CLUSTER FAILOVER command that
      executes a manual failover in Redis Cluster. However exposed as a
      command that the user can call directly, it makes much simpler to
      upgrade a standalone Redis instance using a slave in a safer way.
      
      The commands works like that:
      
          CLIENT PAUSE <milliesconds>
      
      All the clients that are not slaves and not in MONITOR state are paused
      for the specified number of milliesconds. This means that slaves are
      normally served in the meantime.
      
      At the end of the specified amount of time all the clients are unblocked
      and will continue operations normally. This command has no effects on
      the population of the slow log, since clients are not blocked in the
      middle of operations but only when there is to process new data.
      
      Note that while the clients are unblocked, still new commands are
      accepted and queued in the client buffer, so clients will likely not
      block while writing to the server while the pause is active.
      4919a13f
  11. 03 2月, 2014 1 次提交
  12. 31 1月, 2014 3 次提交
  13. 28 1月, 2014 1 次提交
  14. 14 1月, 2014 1 次提交
    • A
      Cluster: support to read from slave nodes. · 28273394
      antirez 提交于
      A client can enter a special cluster read-only mode using the READONLY
      command: if the client read from a slave instance after this command,
      for slots that are actually served by the instance's master, the queries
      will be processed without redirection, allowing clients to read from
      slaves (but without any kind fo read-after-write guarantee).
      
      The READWRITE command can be used in order to exit the readonly state.
      28273394
  15. 23 12月, 2013 1 次提交
  16. 19 12月, 2013 1 次提交
  17. 11 12月, 2013 1 次提交
    • A
      Replication: publish the slave_repl_offset when disconnected from master. · a5ec247f
      antirez 提交于
      When a slave was disconnected from its master the replication offset was
      reported as -1. Now it is reported as the replication offset of the
      previous master, so that failover can be performed using this value in
      order to try to select a slave with more processed data from a set of
      slaves of the old master.
      a5ec247f
  18. 05 12月, 2013 2 次提交
    • A
      Fixed grammar: before H the article is a, not an. · 11e81a1e
      antirez 提交于
      11e81a1e
    • A
      Fix clients timeout handling. · 58713c6b
      antirez 提交于
      During the refactoring of blocking operations, commit
      82b672f6, a bug was introduced where
      a milliseconds time is compared to a seconds time, so all the clients
      always appear to timeout if timeout is set to non-zero value.
      
      Thanks to Jonathan Leibiusky for finding the bug and helping verifying
      the cause and fix.
      58713c6b
  19. 04 12月, 2013 2 次提交
  20. 30 11月, 2013 1 次提交
  21. 28 11月, 2013 2 次提交
  22. 21 11月, 2013 1 次提交
    • A
      Sentinel: test for writable config file. · 297de1ab
      antirez 提交于
      This commit introduces a funciton called when Sentinel is ready for
      normal operations to avoid putting Sentinel specific stuff in redis.c.
      297de1ab
  23. 19 11月, 2013 1 次提交
    • A
      Sentinel: distinguish between is-master-down-by-addr requests. · 37a51a25
      antirez 提交于
      Some are just to know if the master is down, and in this case the runid
      in the request is set to "*", others are actually in order to seek for a
      vote and get elected. In the latter case the runid is set to the runid
      of the instance seeking for the vote.
      37a51a25
  24. 28 10月, 2013 4 次提交
  25. 25 10月, 2013 2 次提交
  26. 09 10月, 2013 2 次提交
  27. 26 9月, 2013 1 次提交