1. 22 Mar, 2013 4 commits
  2. 21 Mar, 2013 6 commits
  3. 20 Mar, 2013 4 commits
    • antirez's avatar
      Cluster: clear the PROMOTED slave directly into clusterSetMaster(). · 8c1bc8e8
      antirez authored
      This way we make sure every time a master is turned into a replica
      the flag will be cleared.
      8c1bc8e8
    • antirez's avatar
      Cluster: master node must clear its hash slots when turning into a slave. · e006407f
      antirez authored
      When a master turns into a slave after a failover event, make sure to
      clear the assigned slots before setting up the replication, as a slave
      should never claim slots in an explicit way, but just take over the
      master slots when replacing its master.
      e006407f
    • antirez's avatar
      Cluster: new flag PROMOTED introduced. · 506f9a42
      antirez authored
      A slave node set this flag for itself when, after receiving authorization
      from the majority of nodes, it turns itself into a master.
      
      At the same time now this flag is tested by nodes receiving a PING
      message before reconfiguring after a failover event. This makes the
      system more robust: even if currently there is no way to manually turn
      a slave into a master it is possible that we'll have such a feature in
      the future, or that simply because of misconfiguration a node joins the
      cluster as master while others believe it's a slave. This alone is now
      no longer enough to trigger reconfiguration as other nodes will check
      for the PROMOTED flag.
      
      The PROMOTED flag is cleared every time the node is turned back into a
      replica of some other node.
      506f9a42
    • antirez's avatar
      Cluster: add sender flags in cluster bus messages header. · 026b9483
      antirez authored
      Sender flags were not propagated for the sender, but only for nodes in
      the gossip section. This is odd and in the next commits we'll need to
      get updated flags for the sender node, so this commit adds a new field
      in the cluster messages header.
      
      The message header is the same size as we reused some free space that
      was marked as 'unused' because of alignment concerns.
      026b9483
  4. 19 Mar, 2013 4 commits
  5. 15 Mar, 2013 11 commits
  6. 14 Mar, 2013 5 commits
  7. 13 Mar, 2013 6 commits