2014-03-30 11:28:04 -07:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2019-06-23 15:29:49 -07:00
|
|
|
"context"
|
|
|
|
"fmt"
|
2018-08-13 01:22:32 -07:00
|
|
|
"net/http"
|
2018-12-05 23:24:25 -08:00
|
|
|
"os"
|
2020-03-30 01:19:33 -07:00
|
|
|
"sync"
|
2019-06-23 15:29:49 -07:00
|
|
|
"time"
|
2018-08-13 01:22:32 -07:00
|
|
|
|
2019-12-31 11:52:54 -08:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2020-05-05 02:05:28 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util/grace"
|
|
|
|
|
2019-06-23 15:29:49 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
2020-04-03 00:47:33 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2019-06-23 15:29:49 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2019-06-15 12:21:44 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
2019-06-05 01:30:24 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2019-12-31 11:52:54 -08:00
|
|
|
|
2020-09-01 00:21:19 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/cassandra"
|
2020-09-03 17:05:26 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/elastic/v7"
|
2020-09-01 00:21:19 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/etcd"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/leveldb"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/leveldb2"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/mongodb"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/mysql"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/postgres"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/redis"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/redis2"
|
2018-08-13 01:22:32 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-09-16 01:18:30 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/notification"
|
2018-10-31 01:11:19 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/notification/aws_sqs"
|
2019-07-17 01:24:20 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/notification/gocdk_pub_sub"
|
2018-11-01 01:11:09 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/notification/google_pub_sub"
|
2018-11-01 01:12:21 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/notification/kafka"
|
2018-09-16 01:18:30 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/notification/log"
|
2018-07-21 17:39:10 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
2014-03-30 11:28:04 -07:00
|
|
|
)
|
|
|
|
|
2018-07-07 02:18:47 -07:00
|
|
|
type FilerOption struct {
|
|
|
|
Masters []string
|
|
|
|
Collection string
|
|
|
|
DefaultReplication string
|
|
|
|
DisableDirListing bool
|
|
|
|
MaxMB int
|
|
|
|
DirListingLimit int
|
2018-07-09 02:22:48 -07:00
|
|
|
DataCenter string
|
2018-12-05 23:24:25 -08:00
|
|
|
DefaultLevelDbDir string
|
2019-03-21 16:00:46 -07:00
|
|
|
DisableHttp bool
|
2020-04-18 15:17:27 -07:00
|
|
|
Host string
|
2020-03-01 22:13:47 -08:00
|
|
|
Port uint32
|
2019-12-31 11:52:54 -08:00
|
|
|
recursiveDelete bool
|
2020-03-06 00:49:47 -08:00
|
|
|
Cipher bool
|
2020-07-05 23:05:02 -07:00
|
|
|
Filers []string
|
2018-07-07 02:18:47 -07:00
|
|
|
}
|
|
|
|
|
2014-03-30 11:28:04 -07:00
|
|
|
type FilerServer struct {
|
2019-02-18 12:11:52 -08:00
|
|
|
option *FilerOption
|
|
|
|
secret security.SigningKey
|
2020-09-01 00:21:19 -07:00
|
|
|
filer *filer.Filer
|
2019-02-18 12:11:52 -08:00
|
|
|
grpcDialOption grpc.DialOption
|
2020-03-30 01:19:33 -07:00
|
|
|
|
2020-09-17 06:43:54 -07:00
|
|
|
// metrics read from the master
|
|
|
|
metricsAddress string
|
|
|
|
metricsIntervalSec int
|
|
|
|
|
2020-03-30 01:19:33 -07:00
|
|
|
// notifying clients
|
2020-04-05 00:51:16 -07:00
|
|
|
listenersLock sync.Mutex
|
|
|
|
listenersCond *sync.Cond
|
2020-05-05 02:05:28 -07:00
|
|
|
|
2020-05-08 02:47:22 -07:00
|
|
|
brokers map[string]map[string]bool
|
2020-05-05 02:05:28 -07:00
|
|
|
brokersLock sync.Mutex
|
2014-03-30 11:28:04 -07:00
|
|
|
}
|
|
|
|
|
2018-07-07 02:18:47 -07:00
|
|
|
func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, option *FilerOption) (fs *FilerServer, err error) {
|
2018-10-07 10:54:05 -07:00
|
|
|
|
2014-03-30 11:28:04 -07:00
|
|
|
fs = &FilerServer{
|
2019-02-18 12:11:52 -08:00
|
|
|
option: option,
|
2020-01-29 09:09:55 -08:00
|
|
|
grpcDialOption: security.LoadClientTLS(util.GetViper(), "grpc.filer"),
|
2020-05-08 02:47:22 -07:00
|
|
|
brokers: make(map[string]map[string]bool),
|
2014-03-30 11:28:04 -07:00
|
|
|
}
|
2020-04-05 00:51:16 -07:00
|
|
|
fs.listenersCond = sync.NewCond(&fs.listenersLock)
|
2018-06-01 00:39:39 -07:00
|
|
|
|
2018-07-07 02:18:47 -07:00
|
|
|
if len(option.Masters) == 0 {
|
2018-06-01 00:39:39 -07:00
|
|
|
glog.Fatal("master list is required!")
|
|
|
|
}
|
|
|
|
|
2020-09-01 00:21:19 -07:00
|
|
|
fs.filer = filer.NewFiler(option.Masters, fs.grpcDialOption, option.Host, option.Port, option.Collection, option.DefaultReplication, func() {
|
2020-07-05 23:05:02 -07:00
|
|
|
fs.listenersCond.Broadcast()
|
|
|
|
})
|
2020-03-06 00:49:47 -08:00
|
|
|
fs.filer.Cipher = option.Cipher
|
2018-06-01 00:39:39 -07:00
|
|
|
|
2020-09-17 06:43:54 -07:00
|
|
|
fs.maybeStartMetrics()
|
2020-04-03 00:40:54 -07:00
|
|
|
|
2018-06-01 00:39:39 -07:00
|
|
|
go fs.filer.KeepConnectedToMaster()
|
2018-05-26 03:49:46 -07:00
|
|
|
|
2020-01-29 09:09:55 -08:00
|
|
|
v := util.GetViper()
|
2019-06-05 01:30:24 -07:00
|
|
|
if !util.LoadConfiguration("filer", false) {
|
2019-06-30 00:44:57 -07:00
|
|
|
v.Set("leveldb2.enabled", true)
|
|
|
|
v.Set("leveldb2.dir", option.DefaultLevelDbDir)
|
2018-12-05 23:24:25 -08:00
|
|
|
_, err := os.Stat(option.DefaultLevelDbDir)
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
os.MkdirAll(option.DefaultLevelDbDir, 0755)
|
|
|
|
}
|
2020-07-07 23:06:48 -07:00
|
|
|
glog.V(0).Infof("default to create filer store dir in %s", option.DefaultLevelDbDir)
|
2018-12-05 23:24:25 -08:00
|
|
|
}
|
2019-06-05 01:30:24 -07:00
|
|
|
util.LoadConfiguration("notification", false)
|
2018-05-13 23:56:16 -07:00
|
|
|
|
2019-12-31 11:52:54 -08:00
|
|
|
fs.option.recursiveDelete = v.GetBool("filer.options.recursive_delete")
|
2020-04-07 01:58:48 -07:00
|
|
|
v.SetDefault("filer.options.buckets_folder", "/buckets")
|
2020-04-07 01:30:53 -07:00
|
|
|
fs.filer.DirBucketsPath = v.GetString("filer.options.buckets_folder")
|
2020-04-11 23:37:10 -07:00
|
|
|
fs.filer.FsyncBuckets = v.GetStringSlice("filer.options.buckets_fsync")
|
2018-08-19 15:17:55 -07:00
|
|
|
fs.filer.LoadConfiguration(v)
|
|
|
|
|
2020-01-29 09:09:55 -08:00
|
|
|
notification.LoadConfiguration(v, "notification.")
|
2018-08-13 01:20:49 -07:00
|
|
|
|
2018-10-07 10:54:05 -07:00
|
|
|
handleStaticResources(defaultMux)
|
2019-03-21 16:00:46 -07:00
|
|
|
if !option.DisableHttp {
|
|
|
|
defaultMux.HandleFunc("/", fs.filerHandler)
|
|
|
|
}
|
2017-05-27 20:14:22 -07:00
|
|
|
if defaultMux != readonlyMux {
|
|
|
|
readonlyMux.HandleFunc("/", fs.readonlyFilerHandler)
|
|
|
|
}
|
2014-03-30 11:28:04 -07:00
|
|
|
|
2020-07-12 17:31:24 -07:00
|
|
|
fs.filer.AggregateFromPeers(fmt.Sprintf("%s:%d", option.Host, option.Port), option.Filers)
|
2020-07-07 23:06:48 -07:00
|
|
|
|
2020-04-11 23:37:10 -07:00
|
|
|
fs.filer.LoadBuckets()
|
2020-02-24 22:28:45 -08:00
|
|
|
|
2020-04-28 14:10:23 +08:00
|
|
|
grace.OnInterrupt(func() {
|
2020-03-14 20:30:26 -07:00
|
|
|
fs.filer.Shutdown()
|
|
|
|
})
|
|
|
|
|
2019-06-23 15:29:49 -07:00
|
|
|
return fs, nil
|
|
|
|
}
|
|
|
|
|
2020-09-17 06:43:54 -07:00
|
|
|
func (fs *FilerServer) maybeStartMetrics() {
|
2020-04-03 00:47:33 -07:00
|
|
|
|
2020-09-17 06:43:54 -07:00
|
|
|
for _, master := range fs.option.Masters {
|
2020-04-03 00:47:33 -07:00
|
|
|
_, err := pb.ParseFilerGrpcAddress(master)
|
|
|
|
if err != nil {
|
|
|
|
glog.Fatalf("invalid master address %s: %v", master, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-23 15:29:49 -07:00
|
|
|
isConnected := false
|
|
|
|
var readErr error
|
|
|
|
for !isConnected {
|
2020-09-17 06:43:54 -07:00
|
|
|
for _, master := range fs.option.Masters {
|
|
|
|
fs.metricsAddress, fs.metricsIntervalSec, readErr = readFilerConfiguration(fs.grpcDialOption, master)
|
2020-04-03 00:47:48 -07:00
|
|
|
if readErr == nil {
|
|
|
|
isConnected = true
|
|
|
|
} else {
|
|
|
|
time.Sleep(7 * time.Second)
|
|
|
|
}
|
2019-06-23 15:29:49 -07:00
|
|
|
}
|
|
|
|
}
|
2020-09-19 00:03:00 -07:00
|
|
|
|
2020-09-24 10:21:23 -07:00
|
|
|
go stats.LoopPushingMetric("filer", stats.SourceName(fs.option.Port), fs.metricsAddress, fs.metricsIntervalSec)
|
2019-06-23 15:29:49 -07:00
|
|
|
}
|
2019-06-13 02:01:51 -07:00
|
|
|
|
2020-04-03 00:41:05 -07: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 {
|
2020-02-25 21:50:12 -08:00
|
|
|
resp, err := masterClient.GetMasterConfiguration(context.Background(), &master_pb.GetMasterConfigurationRequest{})
|
2019-06-23 15:29:49 -07:00
|
|
|
if err != nil {
|
2020-04-03 00:41:05 -07:00
|
|
|
return fmt.Errorf("get master %s configuration: %v", masterAddress, err)
|
2019-06-23 15:29:49 -07:00
|
|
|
}
|
|
|
|
metricsAddress, metricsIntervalSec = resp.MetricsAddress, int(resp.MetricsIntervalSeconds)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return
|
2014-03-30 11:28:04 -07:00
|
|
|
}
|