seaweedfs/weed/command/filer.go

170 lines
5.7 KiB
Go
Raw Normal View History

package command
2014-03-31 03:57:25 +00:00
import (
"net/http"
"strconv"
2018-10-11 07:05:54 +00:00
"strings"
2014-03-31 03:57:25 +00:00
"time"
"google.golang.org/grpc/reflection"
"github.com/chrislusf/seaweedfs/weed/glog"
2020-03-04 08:39:47 +00:00
"github.com/chrislusf/seaweedfs/weed/pb"
2018-05-27 18:52:26 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/security"
"github.com/chrislusf/seaweedfs/weed/server"
"github.com/chrislusf/seaweedfs/weed/util"
2014-03-31 03:57:25 +00:00
)
var (
f FilerOptions
)
type FilerOptions struct {
masters *string
ip *string
2020-04-21 21:21:06 +00:00
bindIp *string
2014-03-31 03:57:25 +00:00
port *int
2017-05-28 03:14:22 +00:00
publicPort *int
2014-03-31 03:57:25 +00:00
collection *string
defaultReplicaPlacement *string
2015-04-14 06:38:46 +00:00
disableDirListing *bool
2016-08-31 03:32:30 +00:00
maxMB *int
2018-07-07 09:18:47 +00:00
dirListingLimit *int
2018-07-09 09:22:48 +00:00
dataCenter *string
2018-08-13 08:20:49 +00:00
enableNotification *bool
disableHttp *bool
cipher *bool
peers *string
// default leveldb directory, used in "weed server" mode
defaultLevelDbDirectory *string
2014-03-31 03:57:25 +00:00
}
func init() {
cmdFiler.Run = runFiler // break init cycle
f.masters = cmdFiler.Flag.String("master", "localhost:9333", "comma-separated master servers")
2014-03-31 03:57:25 +00:00
f.collection = cmdFiler.Flag.String("collection", "", "all data will be stored in this collection")
f.ip = cmdFiler.Flag.String("ip", util.DetectedHostAddress(), "filer server http listen ip address")
2020-04-21 21:21:06 +00:00
f.bindIp = cmdFiler.Flag.String("ip.bind", "0.0.0.0", "ip address to bind to")
2014-03-31 03:57:25 +00:00
f.port = cmdFiler.Flag.Int("port", 8888, "filer server http listen port")
f.publicPort = cmdFiler.Flag.Int("port.readonly", 0, "readonly port opened to public")
f.defaultReplicaPlacement = cmdFiler.Flag.String("defaultReplicaPlacement", "000", "default replication type if not specified")
2015-04-14 06:38:46 +00:00
f.disableDirListing = cmdFiler.Flag.Bool("disableDirListing", false, "turn off directory listing")
f.maxMB = cmdFiler.Flag.Int("maxMB", 32, "split files larger than the limit")
f.dirListingLimit = cmdFiler.Flag.Int("dirListLimit", 100000, "limit sub dir listing size")
2018-07-10 07:22:11 +00:00
f.dataCenter = cmdFiler.Flag.String("dataCenter", "", "prefer to write to volumes in this data center")
f.disableHttp = cmdFiler.Flag.Bool("disableHttp", false, "disable http request, only gRpc operations are allowed")
2020-03-10 05:31:14 +00:00
f.cipher = cmdFiler.Flag.Bool("encryptVolumeData", false, "encrypt data on volume servers")
f.peers = cmdFiler.Flag.String("peers", "", "all filers sharing the same filer store in comma separated ip:port list")
2014-03-31 03:57:25 +00:00
}
var cmdFiler = &Command{
UsageLine: "filer -port=8888 -master=<ip:port>[,<ip:port>]*",
Short: "start a file server that points to a master server, or a list of master servers",
2014-03-31 03:57:25 +00:00
Long: `start a file server which accepts REST operation for any files.
2014-03-31 03:57:25 +00:00
//create or overwrite the file, the directories /path/to will be automatically created
POST /path/to/file
//get the file content
GET /path/to/file
//create or overwrite the file, the filename in the multipart request will be used
POST /path/to/
//return a json format subdirectory and files listing
GET /path/to/
The configuration file "filer.toml" is read from ".", "$HOME/.seaweedfs/", or "/etc/seaweedfs/", in that order.
2019-02-10 05:07:12 +00:00
The example filer.toml configuration file can be generated by "weed scaffold -config=filer"
2014-03-31 03:57:25 +00:00
2018-08-19 22:36:30 +00:00
`,
2014-03-31 03:57:25 +00:00
}
func runFiler(cmd *Command, args []string) bool {
2014-12-14 08:20:21 +00:00
util.LoadConfiguration("security", false)
2019-02-18 20:11:52 +00:00
2018-10-11 06:19:54 +00:00
f.startFiler()
2017-05-28 03:14:22 +00:00
return true
}
2018-10-11 06:19:54 +00:00
func (fo *FilerOptions) startFiler() {
2017-05-28 03:14:22 +00:00
2017-05-28 01:11:18 +00:00
defaultMux := http.NewServeMux()
2017-05-28 03:14:22 +00:00
publicVolumeMux := defaultMux
if *fo.publicPort != 0 {
publicVolumeMux = http.NewServeMux()
}
2019-06-30 07:44:57 +00:00
defaultLevelDbDirectory := "./filerldb2"
if fo.defaultLevelDbDirectory != nil {
defaultLevelDbDirectory = util.ResolvePath(*fo.defaultLevelDbDirectory + "/filerldb2")
}
var peers []string
if *fo.peers != "" {
peers = strings.Split(*fo.peers, ",")
}
2018-07-07 09:18:47 +00:00
fs, nfs_err := weed_server.NewFilerServer(defaultMux, publicVolumeMux, &weed_server.FilerOption{
Masters: strings.Split(*fo.masters, ","),
2018-08-13 08:20:49 +00:00
Collection: *fo.collection,
DefaultReplication: *fo.defaultReplicaPlacement,
DisableDirListing: *fo.disableDirListing,
MaxMB: *fo.maxMB,
DirListingLimit: *fo.dirListingLimit,
DataCenter: *fo.dataCenter,
DefaultLevelDbDir: defaultLevelDbDirectory,
DisableHttp: *fo.disableHttp,
Host: *fo.ip,
Port: uint32(*fo.port),
Cipher: *fo.cipher,
Filers: peers,
2018-07-07 09:18:47 +00:00
})
2014-03-31 03:57:25 +00:00
if nfs_err != nil {
2015-01-14 01:04:41 +00:00
glog.Fatalf("Filer startup error: %v", nfs_err)
2014-03-31 03:57:25 +00:00
}
2017-05-28 03:14:22 +00:00
if *fo.publicPort != 0 {
2020-04-21 21:21:06 +00:00
publicListeningAddress := *fo.bindIp + ":" + strconv.Itoa(*fo.publicPort)
2020-06-02 07:10:35 +00:00
glog.V(0).Infoln("Start Seaweed filer server", util.Version(), "public at", publicListeningAddress)
2017-05-28 03:14:22 +00:00
publicListener, e := util.NewListener(publicListeningAddress, 0)
if e != nil {
glog.Fatalf("Filer server public listener error on port %d:%v", *fo.publicPort, e)
}
go func() {
if e := http.Serve(publicListener, publicVolumeMux); e != nil {
glog.Fatalf("Volume server fail to serve public: %v", e)
}
}()
}
2020-06-02 07:10:35 +00:00
glog.V(0).Infof("Start Seaweed Filer %s at %s:%d", util.Version(), *fo.ip, *fo.port)
2014-03-31 03:57:25 +00:00
filerListener, e := util.NewListener(
2020-04-21 21:21:06 +00:00
*fo.bindIp+":"+strconv.Itoa(*fo.port),
2014-03-31 03:57:25 +00:00
time.Duration(10)*time.Second,
)
if e != nil {
2015-01-14 01:04:41 +00:00
glog.Fatalf("Filer listener error: %v", e)
2014-03-31 03:57:25 +00:00
}
2018-05-08 08:59:43 +00:00
2018-06-06 06:37:41 +00:00
// starting grpc server
grpcPort := *fo.port + 10000
grpcL, err := util.NewListener(*fo.bindIp+":"+strconv.Itoa(grpcPort), 0)
2018-06-06 06:37:41 +00:00
if err != nil {
glog.Fatalf("failed to listen on grpc port %d: %v", grpcPort, err)
}
2020-03-04 08:39:47 +00:00
grpcS := pb.NewGrpcServer(security.LoadServerTLS(util.GetViper(), "grpc.filer"))
2018-05-10 06:18:02 +00:00
filer_pb.RegisterSeaweedFilerServer(grpcS, fs)
2018-05-08 08:59:43 +00:00
reflection.Register(grpcS)
go grpcS.Serve(grpcL)
2018-06-06 06:37:41 +00:00
httpS := &http.Server{Handler: defaultMux}
if err := httpS.Serve(filerListener); err != nil {
2015-01-14 01:04:41 +00:00
glog.Fatalf("Filer Fail to serve: %v", e)
2014-03-31 03:57:25 +00:00
}
}