seaweedfs/weed/server/filer_server.go

162 lines
4.8 KiB
Go
Raw Normal View History

2014-03-30 18:28:04 +00:00
package weed_server
import (
2019-06-23 22:29:49 +00:00
"context"
"fmt"
2018-08-13 08:22:32 +00:00
"net/http"
"os"
2020-03-30 08:19:33 +00:00
"sync"
2019-06-23 22:29:49 +00:00
"time"
2018-08-13 08:22:32 +00:00
"google.golang.org/grpc"
2019-06-23 22:29:49 +00:00
"github.com/chrislusf/seaweedfs/weed/operation"
"github.com/chrislusf/seaweedfs/weed/pb"
2020-03-30 08:19:33 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2019-06-23 22:29:49 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
2019-06-15 19:21:44 +00:00
"github.com/chrislusf/seaweedfs/weed/stats"
"github.com/chrislusf/seaweedfs/weed/util"
2018-05-14 06:56:16 +00:00
"github.com/chrislusf/seaweedfs/weed/filer2"
2018-05-27 07:01:15 +00:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/cassandra"
2019-08-01 02:16:45 +00:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/etcd"
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb"
2019-06-30 07:44:57 +00:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb2"
2018-05-26 12:32:15 +00:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/mysql"
2018-05-27 05:02:49 +00:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/postgres"
2018-05-27 18:14:29 +00:00
_ "github.com/chrislusf/seaweedfs/weed/filer2/redis"
2018-08-13 08:22:32 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
2018-09-16 08:18:30 +00:00
"github.com/chrislusf/seaweedfs/weed/notification"
_ "github.com/chrislusf/seaweedfs/weed/notification/aws_sqs"
2019-07-17 08:24:20 +00:00
_ "github.com/chrislusf/seaweedfs/weed/notification/gocdk_pub_sub"
_ "github.com/chrislusf/seaweedfs/weed/notification/google_pub_sub"
2018-11-01 08:12:21 +00:00
_ "github.com/chrislusf/seaweedfs/weed/notification/kafka"
2018-09-16 08:18:30 +00:00
_ "github.com/chrislusf/seaweedfs/weed/notification/log"
2018-07-22 00:39:10 +00:00
"github.com/chrislusf/seaweedfs/weed/security"
2014-03-30 18:28:04 +00:00
)
2018-07-07 09:18:47 +00:00
type FilerOption struct {
Masters []string
Collection string
DefaultReplication string
DisableDirListing bool
MaxMB int
DirListingLimit int
2018-07-09 09:22:48 +00:00
DataCenter string
DefaultLevelDbDir string
DisableHttp bool
Port uint32
recursiveDelete bool
Cipher bool
2018-07-07 09:18:47 +00:00
}
2014-03-30 18:28:04 +00:00
type FilerServer struct {
2019-02-18 20:11:52 +00:00
option *FilerOption
secret security.SigningKey
filer *filer2.Filer
grpcDialOption grpc.DialOption
2020-03-30 08:19:33 +00:00
// notifying clients
clientChansLock sync.RWMutex
clientChans map[string]chan *filer_pb.FullEventNotification
2014-03-30 18:28:04 +00:00
}
2018-07-07 09:18:47 +00:00
func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, option *FilerOption) (fs *FilerServer, err error) {
2018-10-07 17:54:05 +00:00
2014-03-30 18:28:04 +00:00
fs = &FilerServer{
2019-02-18 20:11:52 +00:00
option: option,
grpcDialOption: security.LoadClientTLS(util.GetViper(), "grpc.filer"),
2014-03-30 18:28:04 +00:00
}
2018-07-07 09:18:47 +00:00
if len(option.Masters) == 0 {
glog.Fatal("master list is required!")
}
fs.filer = filer2.NewFiler(option.Masters, fs.grpcDialOption, option.Port+10000)
fs.filer.Cipher = option.Cipher
2020-04-03 07:40:54 +00:00
maybeStartMetrics(fs, option)
go fs.filer.KeepConnectedToMaster()
v := util.GetViper()
if !util.LoadConfiguration("filer", false) {
2019-06-30 07:44:57 +00: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 06:56:16 +00:00
fs.option.recursiveDelete = v.GetBool("filer.options.recursive_delete")
v.Set("filer.option.buckets_folder", "/buckets")
2020-02-27 08:07:13 +00:00
v.Set("filer.option.queues_folder", "/queues")
fs.filer.DirBucketsPath = v.GetString("filer.option.buckets_folder")
fs.filer.DirQueuesPath = v.GetString("filer.option.queues_folder")
fs.filer.LoadConfiguration(v)
notification.LoadConfiguration(v, "notification.")
2018-08-13 08:20:49 +00:00
2018-10-07 17:54:05 +00:00
handleStaticResources(defaultMux)
if !option.DisableHttp {
defaultMux.HandleFunc("/", fs.filerHandler)
}
2017-05-28 03:14:22 +00:00
if defaultMux != readonlyMux {
readonlyMux.HandleFunc("/", fs.readonlyFilerHandler)
}
2014-03-30 18:28:04 +00:00
2020-02-27 08:07:13 +00:00
fs.filer.LoadBuckets(fs.filer.DirBucketsPath)
2020-03-15 03:30:26 +00:00
util.OnInterrupt(func() {
fs.filer.Shutdown()
})
2019-06-23 22:29:49 +00:00
return fs, nil
}
func maybeStartMetrics(fs *FilerServer, option *FilerOption) {
for _, master := range option.Masters {
_, err := pb.ParseFilerGrpcAddress(master)
if err != nil {
glog.Fatalf("invalid master address %s: %v", master, err)
}
}
2019-06-23 22:29:49 +00:00
isConnected := false
var metricsAddress string
var metricsIntervalSec int
var readErr error
for !isConnected {
2020-04-03 07:47:48 +00:00
for _, master := range option.Masters {
metricsAddress, metricsIntervalSec, readErr = readFilerConfiguration(fs.grpcDialOption, master)
if readErr == nil {
isConnected = true
} else {
time.Sleep(7 * time.Second)
}
2019-06-23 22:29:49 +00:00
}
}
if metricsAddress == "" && metricsIntervalSec <= 0 {
return
}
go stats.LoopPushingMetric("filer", stats.SourceName(option.Port), stats.FilerGather,
func() (addr string, intervalSeconds int) {
2019-06-23 22:29:49 +00:00
return metricsAddress, metricsIntervalSec
})
2019-06-23 22:29:49 +00:00
}
2020-04-03 07:41:05 +00:00
func readFilerConfiguration(grpcDialOption grpc.DialOption, masterAddress string) (metricsAddress string, metricsIntervalSec int, err error) {
err = operation.WithMasterServerClient(masterAddress, grpcDialOption, func(masterClient master_pb.SeaweedClient) error {
resp, err := masterClient.GetMasterConfiguration(context.Background(), &master_pb.GetMasterConfigurationRequest{})
2019-06-23 22:29:49 +00:00
if err != nil {
2020-04-03 07:41:05 +00:00
return fmt.Errorf("get master %s configuration: %v", masterAddress, err)
2019-06-23 22:29:49 +00:00
}
metricsAddress, metricsIntervalSec = resp.MetricsAddress, int(resp.MetricsIntervalSeconds)
return nil
})
return
2014-03-30 18:28:04 +00:00
}