mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
always remember the max volume id
This commit is contained in:
parent
97f757c669
commit
9026b3e86e
|
@ -55,7 +55,7 @@ func NewRaftServer(r *mux.Router, peers []string, httpAddr string, dataDir strin
|
||||||
if oldPeers, changed := isPeersChanged(s.dataDir, httpAddr, s.peers); changed {
|
if oldPeers, changed := isPeersChanged(s.dataDir, httpAddr, s.peers); changed {
|
||||||
glog.V(0).Infof("Peers Change: %v => %v", oldPeers, s.peers)
|
glog.V(0).Infof("Peers Change: %v => %v", oldPeers, s.peers)
|
||||||
os.RemoveAll(path.Join(s.dataDir, "conf"))
|
os.RemoveAll(path.Join(s.dataDir, "conf"))
|
||||||
os.RemoveAll(path.Join(s.dataDir, "log"))
|
// os.RemoveAll(path.Join(s.dataDir, "log"))
|
||||||
os.RemoveAll(path.Join(s.dataDir, "snapshot"))
|
os.RemoveAll(path.Join(s.dataDir, "snapshot"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -194,7 +194,7 @@ func postFollowingOneRedirect(target string, contentType string, b bytes.Buffer)
|
||||||
reply := string(data)
|
reply := string(data)
|
||||||
|
|
||||||
if strings.HasPrefix(reply, "\"http") {
|
if strings.HasPrefix(reply, "\"http") {
|
||||||
urlStr := reply[1 : len(reply)-1]
|
urlStr := reply[1: len(reply)-1]
|
||||||
|
|
||||||
glog.V(0).Infoln("Post redirected to ", urlStr)
|
glog.V(0).Infoln("Post redirected to ", urlStr)
|
||||||
resp2, err2 := http.Post(urlStr, contentType, backupReader)
|
resp2, err2 := http.Post(urlStr, contentType, backupReader)
|
||||||
|
|
|
@ -25,7 +25,7 @@ func (c *MaxVolumeIdCommand) Apply(server raft.Server) (interface{}, error) {
|
||||||
before := topo.GetMaxVolumeId()
|
before := topo.GetMaxVolumeId()
|
||||||
topo.UpAdjustMaxVolumeId(c.MaxVolumeId)
|
topo.UpAdjustMaxVolumeId(c.MaxVolumeId)
|
||||||
|
|
||||||
glog.V(4).Infoln("max volume id", before, "==>", topo.GetMaxVolumeId())
|
glog.V(0).Infoln("max volume id", before, "==>", topo.GetMaxVolumeId())
|
||||||
|
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue