Files
seaweedfs/weed/command/filer.go

198 lines
7.0 KiB
Go
Raw Normal View History

package command
2014-03-30 20:57:25 -07:00
import (
2020-09-27 23:00:43 -07:00
"fmt"
2014-03-30 20:57:25 -07:00
"net/http"
"strconv"
2018-10-11 00:05:54 -07:00
"strings"
2014-03-30 20:57:25 -07:00
"time"
"google.golang.org/grpc/reflection"
"github.com/chrislusf/seaweedfs/weed/glog"
2020-03-04 00:39:47 -08:00
"github.com/chrislusf/seaweedfs/weed/pb"
2018-05-27 11:52:26 -07:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/security"
"github.com/chrislusf/seaweedfs/weed/server"
2020-09-24 10:21:23 -07:00
stats_collect "github.com/chrislusf/seaweedfs/weed/stats"
"github.com/chrislusf/seaweedfs/weed/util"
2014-03-30 20:57:25 -07:00
)
var (
2020-09-27 23:00:43 -07:00
f FilerOptions
filerStartS3 *bool
filerS3Options S3Options
2014-03-30 20:57:25 -07:00
)
type FilerOptions struct {
masters *string
ip *string
2020-04-21 14:21:06 -07:00
bindIp *string
2014-03-30 20:57:25 -07:00
port *int
2017-05-27 20:14:22 -07:00
publicPort *int
2014-03-30 20:57:25 -07:00
collection *string
defaultReplicaPlacement *string
2015-04-13 23:38:46 -07:00
disableDirListing *bool
2016-08-31 11:32:30 +08:00
maxMB *int
2018-07-07 02:18:47 -07:00
dirListingLimit *int
2018-07-09 02:22:48 -07:00
dataCenter *string
rack *string
2018-08-13 01:20:49 -07:00
enableNotification *bool
disableHttp *bool
cipher *bool
peers *string
2020-09-24 17:45:39 +05:00
metricsHttpPort *int
2020-09-24 17:48:39 +05:00
// default leveldb directory, used in "weed server" mode
defaultLevelDbDirectory *string
2014-03-30 20:57:25 -07:00
}
func init() {
cmdFiler.Run = runFiler // break init cycle
f.masters = cmdFiler.Flag.String("master", "localhost:9333", "comma-separated master servers")
2014-03-30 20:57:25 -07: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 14:21:06 -07:00
f.bindIp = cmdFiler.Flag.String("ip.bind", "0.0.0.0", "ip address to bind to")
2014-03-30 20:57:25 -07: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")
2020-09-30 09:32:00 -07:00
f.defaultReplicaPlacement = cmdFiler.Flag.String("defaultReplicaPlacement", "", "default replication type. If not specified, use master setting.")
2015-04-13 23:38:46 -07: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")
2020-11-12 10:07:52 +05:00
f.dataCenter = cmdFiler.Flag.String("dataCenter", "", "prefer to read and write to volumes in this data center")
f.rack = cmdFiler.Flag.String("rack", "", "prefer to write to volumes in this rack")
f.disableHttp = cmdFiler.Flag.Bool("disableHttp", false, "disable http request, only gRpc operations are allowed")
2020-03-09 22:31:14 -07: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")
2020-09-24 17:45:39 +05:00
f.metricsHttpPort = cmdFiler.Flag.Int("metricsPort", 0, "Prometheus metrics listen port")
2020-09-27 23:00:43 -07:00
// start s3 on filer
filerStartS3 = cmdFiler.Flag.Bool("s3", false, "whether to start S3 gateway")
filerS3Options.port = cmdFiler.Flag.Int("s3.port", 8333, "s3 server http listen port")
2020-10-22 11:23:00 +05:00
filerS3Options.domainName = cmdFiler.Flag.String("s3.domainName", "", "suffix of the host name in comma separated list, {bucket}.{domainName}")
2020-09-27 23:00:43 -07:00
filerS3Options.tlsPrivateKey = cmdFiler.Flag.String("s3.key.file", "", "path to the TLS private key file")
filerS3Options.tlsCertificate = cmdFiler.Flag.String("s3.cert.file", "", "path to the TLS certificate file")
filerS3Options.config = cmdFiler.Flag.String("s3.config", "", "path to the config file")
2014-03-30 20:57:25 -07: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-30 20:57:25 -07:00
Long: `start a file server which accepts REST operation for any files.
2014-03-30 20:57:25 -07: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-09 21:07:12 -08:00
The example filer.toml configuration file can be generated by "weed scaffold -config=filer"
2014-03-30 20:57:25 -07:00
2018-08-19 15:36:30 -07:00
`,
2014-03-30 20:57:25 -07:00
}
func runFiler(cmd *Command, args []string) bool {
2014-12-14 00:20:21 -08:00
util.LoadConfiguration("security", false)
2019-02-18 12:11:52 -08:00
2020-09-24 10:21:23 -07:00
go stats_collect.StartMetricsServer(*f.metricsHttpPort)
2020-09-27 23:00:43 -07:00
if *filerStartS3 {
filerAddress := fmt.Sprintf("%s:%d", *f.ip, *f.port)
filerS3Options.filer = &filerAddress
go func() {
time.Sleep(2 * time.Second)
filerS3Options.startS3Server()
}()
}
2018-10-10 23:19:54 -07:00
f.startFiler()
2017-05-27 20:14:22 -07:00
return true
}
2018-10-10 23:19:54 -07:00
func (fo *FilerOptions) startFiler() {
2017-05-27 20:14:22 -07:00
2017-05-27 18:11:18 -07:00
defaultMux := http.NewServeMux()
2017-05-27 20:14:22 -07:00
publicVolumeMux := defaultMux
if *fo.publicPort != 0 {
publicVolumeMux = http.NewServeMux()
}
2019-06-30 00:44:57 -07: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 02:18:47 -07:00
fs, nfs_err := weed_server.NewFilerServer(defaultMux, publicVolumeMux, &weed_server.FilerOption{
Masters: strings.Split(*fo.masters, ","),
2018-08-13 01:20:49 -07:00
Collection: *fo.collection,
DefaultReplication: *fo.defaultReplicaPlacement,
DisableDirListing: *fo.disableDirListing,
MaxMB: *fo.maxMB,
DirListingLimit: *fo.dirListingLimit,
DataCenter: *fo.dataCenter,
Rack: *fo.rack,
DefaultLevelDbDir: defaultLevelDbDirectory,
DisableHttp: *fo.disableHttp,
Host: *fo.ip,
Port: uint32(*fo.port),
Cipher: *fo.cipher,
Filers: peers,
2018-07-07 02:18:47 -07:00
})
2014-03-30 20:57:25 -07:00
if nfs_err != nil {
2015-01-13 17:04:41 -08:00
glog.Fatalf("Filer startup error: %v", nfs_err)
2014-03-30 20:57:25 -07:00
}
2017-05-27 20:14:22 -07:00
if *fo.publicPort != 0 {
2020-04-21 14:21:06 -07:00
publicListeningAddress := *fo.bindIp + ":" + strconv.Itoa(*fo.publicPort)
2020-06-02 00:10:35 -07:00
glog.V(0).Infoln("Start Seaweed filer server", util.Version(), "public at", publicListeningAddress)
2017-05-27 20:14:22 -07: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 00:10:35 -07:00
glog.V(0).Infof("Start Seaweed Filer %s at %s:%d", util.Version(), *fo.ip, *fo.port)
2014-03-30 20:57:25 -07:00
filerListener, e := util.NewListener(
2020-04-21 14:21:06 -07:00
*fo.bindIp+":"+strconv.Itoa(*fo.port),
2014-03-30 20:57:25 -07:00
time.Duration(10)*time.Second,
)
if e != nil {
2015-01-13 17:04:41 -08:00
glog.Fatalf("Filer listener error: %v", e)
2014-03-30 20:57:25 -07:00
}
2018-05-08 01:59:43 -07:00
2018-06-05 23:37:41 -07:00
// starting grpc server
grpcPort := *fo.port + 10000
grpcL, err := util.NewListener(*fo.bindIp+":"+strconv.Itoa(grpcPort), 0)
2018-06-05 23:37:41 -07:00
if err != nil {
glog.Fatalf("failed to listen on grpc port %d: %v", grpcPort, err)
}
2020-03-04 00:39:47 -08:00
grpcS := pb.NewGrpcServer(security.LoadServerTLS(util.GetViper(), "grpc.filer"))
2018-05-09 23:18:02 -07:00
filer_pb.RegisterSeaweedFilerServer(grpcS, fs)
2018-05-08 01:59:43 -07:00
reflection.Register(grpcS)
go grpcS.Serve(grpcL)
2018-06-05 23:37:41 -07:00
httpS := &http.Server{Handler: defaultMux}
if err := httpS.Serve(filerListener); err != nil {
2015-01-13 17:04:41 -08:00
glog.Fatalf("Filer Fail to serve: %v", e)
2014-03-30 20:57:25 -07:00
}
}