Files
seaweedfs/weed/storage/backend/volume_create.go

21 lines
464 B
Go
Raw Normal View History

2019-10-18 11:31:25 +01:00
// +build !linux,!windows
2017-01-08 11:01:46 -08:00
2020-04-11 14:27:25 -07:00
package backend
2017-01-08 11:01:46 -08:00
import (
"os"
"github.com/chrislusf/seaweedfs/weed/glog"
2017-01-08 11:01:46 -08:00
)
2020-04-11 14:27:25 -07:00
func CreateVolumeFile(fileName string, preallocate int64, memoryMapSizeMB uint32) (BackendStorageFile, error) {
2019-10-18 10:32:07 +01:00
file, e := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
if e != nil {
return nil, e
}
2017-01-08 11:01:46 -08:00
if preallocate > 0 {
2020-08-16 16:32:22 -07:00
glog.V(2).Infof("Preallocated disk space for %s is not supported", fileName)
2017-01-08 11:01:46 -08:00
}
2020-04-11 14:27:25 -07:00
return NewDiskFile(file), nil
2017-01-08 11:01:46 -08:00
}