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"
|
2018-12-06 07:24:25 +00:00
|
|
|
"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
|
|
|
|
2020-10-21 00:41:39 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
|
|
|
|
2019-12-31 19:52:54 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2020-05-05 09:05:28 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util/grace"
|
|
|
|
|
2019-06-23 22:29:49 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
2020-04-03 07:47:33 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2019-06-23 22:29:49 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2019-06-05 08:30:24 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2019-12-31 19:52:54 +00:00
|
|
|
|
2020-09-01 07:21:19 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/cassandra"
|
2020-09-03 09:05:26 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/elastic/v7"
|
2020-09-01 07:21:19 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/etcd"
|
2020-12-24 05:49:01 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/hbase"
|
2020-09-01 07:21:19 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/leveldb"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/leveldb2"
|
2021-01-12 10:29:44 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/leveldb3"
|
2020-09-01 07:21:19 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/mongodb"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/mysql"
|
2021-01-20 01:21:50 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/mysql2"
|
2020-09-01 07:21:19 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/postgres"
|
2021-01-20 02:07:29 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/postgres2"
|
2020-09-01 07:21:19 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/redis"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/redis2"
|
2021-10-04 08:01:31 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/redis3"
|
2021-07-01 08:21:14 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer/sqlite"
|
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"
|
2018-10-31 08:11:19 +00:00
|
|
|
_ "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"
|
2018-11-01 08:11:09 +00:00
|
|
|
_ "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 {
|
2021-09-13 05:47:52 +00:00
|
|
|
Masters []pb.ServerAddress
|
2021-03-30 09:10:50 +00:00
|
|
|
Collection string
|
|
|
|
DefaultReplication string
|
|
|
|
DisableDirListing bool
|
|
|
|
MaxMB int
|
|
|
|
DirListingLimit int
|
|
|
|
DataCenter string
|
|
|
|
Rack string
|
|
|
|
DefaultLevelDbDir string
|
|
|
|
DisableHttp bool
|
2021-09-13 05:47:52 +00:00
|
|
|
Host pb.ServerAddress
|
2021-03-30 09:10:50 +00:00
|
|
|
recursiveDelete bool
|
|
|
|
Cipher bool
|
2021-04-01 09:21:40 +00:00
|
|
|
SaveToFilerLimit int64
|
2021-09-13 05:47:52 +00:00
|
|
|
Filers []pb.ServerAddress
|
2021-03-30 09:10:50 +00:00
|
|
|
ConcurrentUploadLimit int64
|
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
|
2020-09-01 07:21:19 +00:00
|
|
|
filer *filer.Filer
|
2019-02-18 20:11:52 +00:00
|
|
|
grpcDialOption grpc.DialOption
|
2020-03-30 08:19:33 +00:00
|
|
|
|
2020-09-17 13:43:54 +00:00
|
|
|
// metrics read from the master
|
|
|
|
metricsAddress string
|
|
|
|
metricsIntervalSec int
|
|
|
|
|
2020-03-30 08:19:33 +00:00
|
|
|
// notifying clients
|
2020-04-05 07:51:16 +00:00
|
|
|
listenersLock sync.Mutex
|
|
|
|
listenersCond *sync.Cond
|
2020-05-05 09:05:28 +00:00
|
|
|
|
2020-05-08 09:47:22 +00:00
|
|
|
brokers map[string]map[string]bool
|
2020-05-05 09:05:28 +00:00
|
|
|
brokersLock sync.Mutex
|
2021-03-30 09:10:50 +00:00
|
|
|
|
|
|
|
inFlightDataSize int64
|
|
|
|
inFlightDataLimitCond *sync.Cond
|
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{
|
2021-03-30 09:10:50 +00:00
|
|
|
option: option,
|
|
|
|
grpcDialOption: security.LoadClientTLS(util.GetViper(), "grpc.filer"),
|
|
|
|
brokers: make(map[string]map[string]bool),
|
|
|
|
inFlightDataLimitCond: sync.NewCond(new(sync.Mutex)),
|
2014-03-30 18:28:04 +00:00
|
|
|
}
|
2020-04-05 07:51:16 +00:00
|
|
|
fs.listenersCond = sync.NewCond(&fs.listenersLock)
|
2018-06-01 07:39:39 +00:00
|
|
|
|
2018-07-07 09:18:47 +00:00
|
|
|
if len(option.Masters) == 0 {
|
2018-06-01 07:39:39 +00:00
|
|
|
glog.Fatal("master list is required!")
|
|
|
|
}
|
|
|
|
|
2021-09-13 05:47:52 +00:00
|
|
|
fs.filer = filer.NewFiler(option.Masters, fs.grpcDialOption, option.Host, option.Collection, option.DefaultReplication, option.DataCenter, func() {
|
2020-07-06 06:05:02 +00:00
|
|
|
fs.listenersCond.Broadcast()
|
|
|
|
})
|
2020-03-06 08:49:47 +00:00
|
|
|
fs.filer.Cipher = option.Cipher
|
2018-06-01 07:39:39 +00:00
|
|
|
|
2020-09-30 16:15:55 +00:00
|
|
|
fs.checkWithMaster()
|
2020-04-03 07:40:54 +00:00
|
|
|
|
2021-09-13 05:47:52 +00:00
|
|
|
go stats.LoopPushingMetric("filer", string(fs.option.Host), fs.metricsAddress, fs.metricsIntervalSec)
|
2018-06-01 07:39:39 +00:00
|
|
|
go fs.filer.KeepConnectedToMaster()
|
2018-05-26 10:49:46 +00:00
|
|
|
|
2020-01-29 17:09:55 +00:00
|
|
|
v := util.GetViper()
|
2019-06-05 08:30:24 +00:00
|
|
|
if !util.LoadConfiguration("filer", false) {
|
2019-06-30 07:44:57 +00:00
|
|
|
v.Set("leveldb2.enabled", true)
|
|
|
|
v.Set("leveldb2.dir", option.DefaultLevelDbDir)
|
2018-12-06 07:24:25 +00:00
|
|
|
_, err := os.Stat(option.DefaultLevelDbDir)
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
os.MkdirAll(option.DefaultLevelDbDir, 0755)
|
|
|
|
}
|
2020-07-08 06:06:48 +00:00
|
|
|
glog.V(0).Infof("default to create filer store dir in %s", option.DefaultLevelDbDir)
|
2020-12-23 01:33:37 +00:00
|
|
|
} else {
|
|
|
|
glog.Warningf("skipping default store dir in %s", option.DefaultLevelDbDir)
|
2018-12-06 07:24:25 +00:00
|
|
|
}
|
2019-06-05 08:30:24 +00:00
|
|
|
util.LoadConfiguration("notification", false)
|
2018-05-14 06:56:16 +00:00
|
|
|
|
2019-12-31 19:52:54 +00:00
|
|
|
fs.option.recursiveDelete = v.GetBool("filer.options.recursive_delete")
|
2020-04-07 08:58:48 +00:00
|
|
|
v.SetDefault("filer.options.buckets_folder", "/buckets")
|
2020-04-07 08:30:53 +00:00
|
|
|
fs.filer.DirBucketsPath = v.GetString("filer.options.buckets_folder")
|
2020-11-17 00:56:49 +00:00
|
|
|
// TODO deprecated, will be be removed after 2020-12-31
|
2020-11-17 00:57:31 +00:00
|
|
|
// replaced by https://github.com/chrislusf/seaweedfs/wiki/Path-Specific-Configuration
|
2021-05-22 07:24:23 +00:00
|
|
|
// fs.filer.FsyncBuckets = v.GetStringSlice("filer.options.buckets_fsync")
|
2018-08-19 22:17:55 +00:00
|
|
|
fs.filer.LoadConfiguration(v)
|
|
|
|
|
2020-01-29 17:09:55 +00:00
|
|
|
notification.LoadConfiguration(v, "notification.")
|
2018-08-13 08:20:49 +00:00
|
|
|
|
2018-10-07 17:54:05 +00:00
|
|
|
handleStaticResources(defaultMux)
|
2019-03-21 23:00:46 +00:00
|
|
|
if !option.DisableHttp {
|
|
|
|
defaultMux.HandleFunc("/", fs.filerHandler)
|
|
|
|
}
|
2017-05-28 03:14:22 +00:00
|
|
|
if defaultMux != readonlyMux {
|
2020-11-27 21:42:14 +00:00
|
|
|
handleStaticResources(readonlyMux)
|
2017-05-28 03:14:22 +00:00
|
|
|
readonlyMux.HandleFunc("/", fs.readonlyFilerHandler)
|
|
|
|
}
|
2014-03-30 18:28:04 +00:00
|
|
|
|
2021-09-13 05:47:52 +00:00
|
|
|
fs.filer.AggregateFromPeers(option.Host, option.Filers)
|
2020-07-08 06:06:48 +00:00
|
|
|
|
2020-04-12 06:37:10 +00:00
|
|
|
fs.filer.LoadBuckets()
|
2020-02-25 06:28:45 +00:00
|
|
|
|
2020-11-15 22:06:03 +00:00
|
|
|
fs.filer.LoadFilerConf()
|
|
|
|
|
2021-07-29 05:43:12 +00:00
|
|
|
fs.filer.LoadRemoteStorageConfAndMapping()
|
|
|
|
|
2020-04-28 06:10:23 +00:00
|
|
|
grace.OnInterrupt(func() {
|
2020-03-15 03:30:26 +00:00
|
|
|
fs.filer.Shutdown()
|
|
|
|
})
|
|
|
|
|
2019-06-23 22:29:49 +00:00
|
|
|
return fs, nil
|
|
|
|
}
|
|
|
|
|
2020-09-30 16:15:55 +00:00
|
|
|
func (fs *FilerServer) checkWithMaster() {
|
2020-04-03 07:47:33 +00:00
|
|
|
|
2019-06-23 22:29:49 +00:00
|
|
|
isConnected := false
|
|
|
|
for !isConnected {
|
2020-09-17 13:43:54 +00:00
|
|
|
for _, master := range fs.option.Masters {
|
2020-09-30 16:15:55 +00:00
|
|
|
readErr := operation.WithMasterServerClient(master, fs.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", master, err)
|
|
|
|
}
|
|
|
|
fs.metricsAddress, fs.metricsIntervalSec = resp.MetricsAddress, int(resp.MetricsIntervalSeconds)
|
|
|
|
if fs.option.DefaultReplication == "" {
|
|
|
|
fs.option.DefaultReplication = resp.DefaultReplication
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
2020-04-03 07:47:48 +00:00
|
|
|
if readErr == nil {
|
|
|
|
isConnected = true
|
|
|
|
} else {
|
|
|
|
time.Sleep(7 * time.Second)
|
|
|
|
}
|
2019-06-23 22:29:49 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-19 07:03:00 +00:00
|
|
|
|
2014-03-30 18:28:04 +00:00
|
|
|
}
|