mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
adjust the needle mapper
as discussed on https://github.com/chrislusf/seaweedfs/pull/642#issuecomment-387606960
This commit is contained in:
parent
43a69d20bf
commit
e2c7be3a2e
|
@ -32,7 +32,7 @@ func NewBoltDbNeedleMap(dbFileName string, indexFile *os.File) (m *BoltDbNeedleM
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
glog.V(1).Infof("Loading %s...", indexFile.Name())
|
glog.V(1).Infof("Loading %s...", indexFile.Name())
|
||||||
nm, indexLoadError := LoadBtreeNeedleMap(indexFile)
|
nm, indexLoadError := NewBoltDbNeedleMap(dbFileName, indexFile)
|
||||||
if indexLoadError != nil {
|
if indexLoadError != nil {
|
||||||
return nil, indexLoadError
|
return nil, indexLoadError
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,7 @@ func NewLevelDbNeedleMap(dbFileName string, indexFile *os.File) (m *LevelDbNeedl
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
glog.V(1).Infof("Loading %s...", indexFile.Name())
|
glog.V(1).Infof("Loading %s...", indexFile.Name())
|
||||||
nm, indexLoadError := LoadBtreeNeedleMap(indexFile)
|
nm, indexLoadError := NewLevelDbNeedleMap(dbFileName, indexFile)
|
||||||
if indexLoadError != nil {
|
if indexLoadError != nil {
|
||||||
return nil, indexLoadError
|
return nil, indexLoadError
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue