mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00: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:
parent
b2f4a4e739
commit
60c17068a6
|
@ -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--
|
||||||
|
|
Loading…
Reference in a new issue