seaweedfs/weed/server/filer_server.go

133 lines
4.0 KiB
Go
Raw Normal View History

2014-03-31 02:28:04 +08:00
package weed_server
import (
2019-06-24 06:29:49 +08:00
"context"
"fmt"
2018-08-13 16:22:32 +08:00
"net/http"
"os"
2019-06-24 06:29:49 +08:00
"time"
2018-08-13 16:22:32 +08:00
2019-06-24 06:29:49 +08:00
"github.com/chrislusf/seaweedfs/weed/operation"
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
2019-06-16 03:21:44 +08:00
"github.com/chrislusf/seaweedfs/weed/stats"
"github.com/chrislusf/seaweedfs/weed/util"
"google.golang.org/grpc"
2018-05-14 14:56:16 +08:00
"github.com/chrislusf/seaweedfs/weed/filer2"
2018-05-27 15:01:15 +08:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/cassandra"
2019-08-01 10:16:45 +08:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/etcd"
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb"
2019-06-30 15:44:57 +08:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb2"
2018-05-26 20:32:15 +08:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/mysql"
2018-05-27 13:02:49 +08:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/postgres"
2018-05-28 02:14:29 +08:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/redis"
2019-10-23 15:31:31 +08:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/tikv"
2018-08-13 16:22:32 +08:00
"github.com/chrislusf/seaweedfs/weed/glog"
2018-09-16 16:18:30 +08:00
"github.com/chrislusf/seaweedfs/weed/notification"
_ "github.com/chrislusf/seaweedfs/weed/notification/aws_sqs"
2019-07-17 16:24:20 +08:00
_ "github.com/chrislusf/seaweedfs/weed/notification/gocdk_pub_sub"
_ "github.com/chrislusf/seaweedfs/weed/notification/google_pub_sub"
2018-11-01 16:12:21 +08:00
_ "github.com/chrislusf/seaweedfs/weed/notification/kafka"
2018-09-16 16:18:30 +08:00
_ "github.com/chrislusf/seaweedfs/weed/notification/log"
2018-07-22 08:39:10 +08:00
"github.com/chrislusf/seaweedfs/weed/security"
"github.com/spf13/viper"
2014-03-31 02:28:04 +08:00
)
2018-07-07 17:18:47 +08:00
type FilerOption struct {
Masters []string
Collection string
DefaultReplication string
RedirectOnRead bool
DisableDirListing bool
MaxMB int
DirListingLimit int
2018-07-09 17:22:48 +08:00
DataCenter string
DefaultLevelDbDir string
DisableHttp bool
2019-06-16 03:21:44 +08:00
Port int
2018-07-07 17:18:47 +08:00
}
2014-03-31 02:28:04 +08:00
type FilerServer struct {
2019-02-19 04:11:52 +08:00
option *FilerOption
secret security.SigningKey
filer *filer2.Filer
grpcDialOption grpc.DialOption
2014-03-31 02:28:04 +08:00
}
2018-07-07 17:18:47 +08:00
func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, option *FilerOption) (fs *FilerServer, err error) {
2018-10-08 01:54:05 +08:00
2014-03-31 02:28:04 +08:00
fs = &FilerServer{
2019-02-19 04:11:52 +08:00
option: option,
grpcDialOption: security.LoadClientTLS(viper.Sub("grpc"), "filer"),
2014-03-31 02:28:04 +08:00
}
2018-07-07 17:18:47 +08:00
if len(option.Masters) == 0 {
glog.Fatal("master list is required!")
}
2019-02-19 04:11:52 +08:00
fs.filer = filer2.NewFiler(option.Masters, fs.grpcDialOption)
go fs.filer.KeepConnectedToMaster()
v := viper.GetViper()
if !util.LoadConfiguration("filer", false) {
2019-06-30 15:44:57 +08:00
v.Set("leveldb2.enabled", true)
v.Set("leveldb2.dir", option.DefaultLevelDbDir)
_, err := os.Stat(option.DefaultLevelDbDir)
if os.IsNotExist(err) {
os.MkdirAll(option.DefaultLevelDbDir, 0755)
}
}
util.LoadConfiguration("notification", false)
2018-05-14 14:56:16 +08:00
fs.filer.LoadConfiguration(v)
2018-09-16 16:18:30 +08:00
notification.LoadConfiguration(v.Sub("notification"))
2018-08-13 16:20:49 +08:00
2018-10-08 01:54:05 +08:00
handleStaticResources(defaultMux)
if !option.DisableHttp {
defaultMux.HandleFunc("/", fs.filerHandler)
}
2017-05-28 11:14:22 +08:00
if defaultMux != readonlyMux {
readonlyMux.HandleFunc("/", fs.readonlyFilerHandler)
}
2014-03-31 02:28:04 +08:00
2019-06-24 06:29:49 +08:00
maybeStartMetrics(fs, option)
return fs, nil
}
func maybeStartMetrics(fs *FilerServer, option *FilerOption) {
isConnected := false
var metricsAddress string
var metricsIntervalSec int
var readErr error
for !isConnected {
metricsAddress, metricsIntervalSec, readErr = readFilerConfiguration(fs.grpcDialOption, option.Masters[0])
if readErr == nil {
isConnected = true
2019-06-24 06:30:16 +08:00
} else {
2019-06-24 06:29:49 +08:00
time.Sleep(7 * time.Second)
}
}
if metricsAddress == "" && metricsIntervalSec <= 0 {
return
}
go stats.LoopPushingMetric("filer", stats.SourceName(option.Port), stats.FilerGather,
func() (addr string, intervalSeconds int) {
2019-06-24 06:29:49 +08:00
return metricsAddress, metricsIntervalSec
})
2019-06-24 06:29:49 +08:00
}
2019-06-24 06:29:49 +08:00
func readFilerConfiguration(grpcDialOption grpc.DialOption, masterGrpcAddress string) (metricsAddress string, metricsIntervalSec int, err error) {
err = operation.WithMasterServerClient(masterGrpcAddress, grpcDialOption, func(masterClient master_pb.SeaweedClient) error {
resp, err := masterClient.GetMasterConfiguration(context.Background(), &master_pb.GetMasterConfigurationRequest{})
if err != nil {
return fmt.Errorf("get master %s configuration: %v", masterGrpcAddress, err)
}
metricsAddress, metricsIntervalSec = resp.MetricsAddress, int(resp.MetricsIntervalSeconds)
return nil
})
return
2014-03-31 02:28:04 +08:00
}