Merge pull request #643 from rave-eserating/master

Issue #642 - Expose config and INFO response for slave_priority
This commit is contained in:
Josh Baker 2022-06-22 10:58:36 -07:00 committed by GitHub
commit 59778e6092
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 56 additions and 20 deletions

View File

@ -25,6 +25,7 @@ const (
FollowPort = "follow_port" FollowPort = "follow_port"
FollowID = "follow_id" FollowID = "follow_id"
FollowPos = "follow_pos" FollowPos = "follow_pos"
ReplicaPriority = "replica-priority"
ServerID = "server_id" ServerID = "server_id"
ReadOnly = "read_only" ReadOnly = "read_only"
RequirePass = "requirepass" RequirePass = "requirepass"
@ -36,7 +37,7 @@ const (
LogConfig = "logconfig" LogConfig = "logconfig"
) )
var validProperties = []string{RequirePass, LeaderAuth, ProtectedMode, MaxMemory, AutoGC, KeepAlive, LogConfig} var validProperties = []string{RequirePass, LeaderAuth, ProtectedMode, MaxMemory, AutoGC, KeepAlive, LogConfig, ReplicaPriority}
// Config is a tile38 config // Config is a tile38 config
type Config struct { type Config struct {
@ -48,6 +49,7 @@ type Config struct {
_followPort int64 _followPort int64
_followID string _followID string
_followPos int64 _followPos int64
_replicaPriority int64
_serverID string _serverID string
_readOnly bool _readOnly bool
@ -99,6 +101,15 @@ func loadConfig(path string) (*Config, error) {
config._serverID = randomKey(16) config._serverID = randomKey(16)
} }
// Need to be sure we look for existence vs not zero because zero is an intentional setting
// anything less than zero will be considered default and will result in no slave_priority
// being output when INFO is called.
if gjson.Get(json, ReplicaPriority).Exists() {
config._replicaPriority = gjson.Get(json, ReplicaPriority).Int()
} else {
config._replicaPriority = -1
}
// load properties // load properties
if err := config.setProperty(RequirePass, config._requirePassP, true); err != nil { if err := config.setProperty(RequirePass, config._requirePassP, true); err != nil {
return nil, err return nil, err
@ -167,6 +178,9 @@ func (config *Config) write(writeProperties bool) {
if config._followPos != 0 { if config._followPos != 0 {
m[FollowPos] = config._followPos m[FollowPos] = config._followPos
} }
if config._replicaPriority >= 0 {
m[ReplicaPriority] = config._replicaPriority
}
if config._serverID != "" { if config._serverID != "" {
m[ServerID] = config._serverID m[ServerID] = config._serverID
} }
@ -312,6 +326,13 @@ func (config *Config) setProperty(name, value string, fromLoad bool) error {
} else { } else {
config._logConfig = value config._logConfig = value
} }
case ReplicaPriority:
replicaPriority, err := strconv.ParseUint(value, 10, 64)
if err != nil || replicaPriority < 0 {
invalid = true
} else {
config._replicaPriority = int64(replicaPriority)
}
} }
if invalid { if invalid {
@ -351,6 +372,12 @@ func (config *Config) getProperty(name string) string {
return strconv.FormatUint(uint64(config._keepAlive), 10) return strconv.FormatUint(uint64(config._keepAlive), 10)
case LogConfig: case LogConfig:
return config._logConfig return config._logConfig
case ReplicaPriority:
if config._replicaPriority < 0 {
return ""
} else {
return strconv.FormatUint(uint64(config._replicaPriority), 10)
}
} }
} }
@ -426,6 +453,12 @@ func (config *Config) followPort() int {
config.mu.RUnlock() config.mu.RUnlock()
return int(v) return int(v)
} }
func (config *Config) replicaPriority() int {
config.mu.RLock()
v := config._replicaPriority
config.mu.RUnlock()
return int(v)
}
func (config *Config) serverID() string { func (config *Config) serverID() string {
config.mu.RLock() config.mu.RLock()
v := config._serverID v := config._serverID

View File

@ -408,6 +408,9 @@ func (s *Server) writeInfoReplication(w *bytes.Buffer) {
fmt.Fprintf(w, "role:slave\r\n") fmt.Fprintf(w, "role:slave\r\n")
fmt.Fprintf(w, "master_host:%s\r\n", s.config.followHost()) fmt.Fprintf(w, "master_host:%s\r\n", s.config.followHost())
fmt.Fprintf(w, "master_port:%v\r\n", s.config.followPort()) fmt.Fprintf(w, "master_port:%v\r\n", s.config.followPort())
if s.config.replicaPriority() >= 0 {
fmt.Fprintf(w, "slave_priority:%v\r\n", s.config.replicaPriority())
}
} else { } else {
fmt.Fprintf(w, "role:master\r\n") fmt.Fprintf(w, "role:master\r\n")
var i int var i int