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
|
|
|
|
2019-12-31 19:52:54 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
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-15 19:21:44 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
2019-06-05 08:30:24 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2019-12-31 19:52:54 +00:00
|
|
|
|
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"
|
2018-05-26 10:49:46 +00:00
|
|
|
_ "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"
|
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 {
|
|
|
|
Masters []string
|
|
|
|
Collection string
|
|
|
|
DefaultReplication string
|
|
|
|
DisableDirListing bool
|
|
|
|
MaxMB int
|
|
|
|
DirListingLimit int
|
2018-07-09 09:22:48 +00:00
|
|
|
DataCenter string
|
2018-12-06 07:24:25 +00:00
|
|
|
DefaultLevelDbDir string
|
2019-03-21 23:00:46 +00:00
|
|
|
DisableHttp bool
|
2020-03-02 06:13:47 +00:00
|
|
|
Port uint32
|
2019-12-31 19:52:54 +00:00
|
|
|
recursiveDelete bool
|
2020-03-06 08:49:47 +00:00
|
|
|
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
|
2020-04-05 07:51:16 +00:00
|
|
|
listenersLock sync.Mutex
|
|
|
|
listenersCond *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{
|
2019-02-18 20:11:52 +00:00
|
|
|
option: option,
|
2020-01-29 17:09:55 +00:00
|
|
|
grpcDialOption: security.LoadClientTLS(util.GetViper(), "grpc.filer"),
|
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!")
|
|
|
|
}
|
|
|
|
|
2020-04-05 07:51:16 +00:00
|
|
|
fs.filer = filer2.NewFiler(option.Masters, fs.grpcDialOption, option.Port+10000, fs.notifyMetaListeners)
|
2020-03-06 08:49:47 +00:00
|
|
|
fs.filer.Cipher = option.Cipher
|
2018-06-01 07:39:39 +00:00
|
|
|
|
2020-04-03 07:40:54 +00:00
|
|
|
maybeStartMetrics(fs, option)
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
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-02-25 06:28:45 +00:00
|
|
|
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")
|
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 {
|
|
|
|
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-02-25 06:28:45 +00:00
|
|
|
|
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) {
|
2020-04-03 07:47:33 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2019-06-17 21:51:47 +00:00
|
|
|
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-17 21:51:47 +00:00
|
|
|
})
|
2019-06-23 22:29:49 +00:00
|
|
|
}
|
2019-06-13 09:01:51 +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 {
|
2020-02-26 05:50:12 +00:00
|
|
|
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
|
|
|
}
|