mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-18 23:17:57 +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:
@@ -17,7 +17,7 @@ var (
|
|||||||
metaFolder = flag.String("mdir", "/tmp", "data directory to store mappings")
|
metaFolder = flag.String("mdir", "/tmp", "data directory to store mappings")
|
||||||
capacity = flag.Int("capacity", 100, "maximum number of volumes to hold")
|
capacity = flag.Int("capacity", 100, "maximum number of volumes to hold")
|
||||||
mapper *directory.Mapper
|
mapper *directory.Mapper
|
||||||
IsDebug = flag.Bool("debug", false, "verbose debug information")
|
IsDebug = flag.Bool("debug", false, "verbose debug information")
|
||||||
)
|
)
|
||||||
|
|
||||||
func dirLookupHandler(w http.ResponseWriter, r *http.Request) {
|
func dirLookupHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
@@ -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)
|
||||||
log.Println(s, "volumes", r.FormValue("volumes"))
|
if *IsDebug {
|
||||||
|
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