mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-11-08 16:56:14 +08:00
correct sequence generating
git-svn-id: https://weed-fs.googlecode.com/svn/trunk@30 282b0af5-e82d-9cf1-ede4-77906d7719d0
This commit is contained in:
@@ -43,7 +43,9 @@ func dirJoinHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
publicUrl := r.FormValue("publicUrl")
|
publicUrl := r.FormValue("publicUrl")
|
||||||
volumes := new([]storage.VolumeInfo)
|
volumes := new([]storage.VolumeInfo)
|
||||||
json.Unmarshal([]byte(r.FormValue("volumes")), volumes)
|
json.Unmarshal([]byte(r.FormValue("volumes")), volumes)
|
||||||
|
if *IsDebug {
|
||||||
log.Println(s, "volumes", r.FormValue("volumes"))
|
log.Println(s, "volumes", r.FormValue("volumes"))
|
||||||
|
}
|
||||||
mapper.Add(*directory.NewMachine(s, publicUrl, *volumes))
|
mapper.Add(*directory.NewMachine(s, publicUrl, *volumes))
|
||||||
}
|
}
|
||||||
func dirStatusHandler(w http.ResponseWriter, r *http.Request) {
|
func dirStatusHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|||||||
@@ -69,6 +69,7 @@ func (m *Mapper) PickForWrite() (string, MachineInfo) {
|
|||||||
func (m *Mapper) NextFileId() uint64 {
|
func (m *Mapper) NextFileId() uint64 {
|
||||||
if m.fileIdCounter <= 0 {
|
if m.fileIdCounter <= 0 {
|
||||||
m.fileIdCounter = FileIdSaveInterval
|
m.fileIdCounter = FileIdSaveInterval
|
||||||
|
m.FileIdSequence += FileIdSaveInterval
|
||||||
m.saveSequence()
|
m.saveSequence()
|
||||||
}
|
}
|
||||||
m.fileIdCounter--
|
m.fileIdCounter--
|
||||||
|
|||||||
Reference in New Issue
Block a user