resolve issue : when the host disk full, the volume server will core dump

This commit is contained in:
stlpmo
2019-12-24 16:36:15 +08:00
parent a18f62bbe7
commit f300c35266
3 changed files with 16 additions and 5 deletions

View File

@@ -11,8 +11,11 @@ import (
func createVolumeFile(fileName string, preallocate int64, memoryMapSizeMB uint32) (backend.BackendStorageFile, error) {
file, e := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
if e != nil {
return nil, e
}
if preallocate > 0 {
glog.V(0).Infof("Preallocated disk space for %s is not supported", fileName)
}
return backend.NewDiskFile(file), e
return backend.NewDiskFile(file), nil
}