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"
|
2019-06-23 15:29:49 -07:00
|
|
|
"time"
|
2018-08-13 01:22:32 -07:00
|
|
|
|
2019-06-23 15:29:49 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"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-03-19 10:10:43 -04:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2018-05-13 23:56:16 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
2018-05-27 00:01:15 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/cassandra"
|
2019-08-01 10:16:45 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/etcd"
|
2018-05-26 03:49:46 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb"
|
2019-06-30 00:44:57 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb2"
|
2018-05-26 05:32:15 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/memdb"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/mysql"
|
2018-05-26 22:02:49 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/postgres"
|
2018-05-27 11:14:29 -07:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/redis"
|
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"
|
2018-08-19 15:17:55 -07:00
|
|
|
"github.com/spf13/viper"
|
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
|
|
|
|
RedirectOnRead bool
|
|
|
|
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
|
2019-06-15 12:21:44 -07:00
|
|
|
Port int
|
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
|
|
|
|
filer *filer2.Filer
|
|
|
|
grpcDialOption grpc.DialOption
|
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,
|
|
|
|
grpcDialOption: security.LoadClientTLS(viper.Sub("grpc"), "filer"),
|
2014-03-30 11:28:04 -07:00
|
|
|
}
|
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!")
|
|
|
|
}
|
|
|
|
|
2019-02-18 12:11:52 -08:00
|
|
|
fs.filer = filer2.NewFiler(option.Masters, fs.grpcDialOption)
|
2018-06-01 00:39:39 -07:00
|
|
|
|
|
|
|
go fs.filer.KeepConnectedToMaster()
|
2018-05-26 03:49:46 -07:00
|
|
|
|
2018-08-19 15:17:55 -07:00
|
|
|
v := viper.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)
|
|
|
|
}
|
|
|
|
}
|
2019-06-05 01:30:24 -07:00
|
|
|
util.LoadConfiguration("notification", false)
|
2018-05-13 23:56:16 -07:00
|
|
|
|
2018-08-19 15:17:55 -07:00
|
|
|
fs.filer.LoadConfiguration(v)
|
|
|
|
|
2018-09-16 01:18:30 -07:00
|
|
|
notification.LoadConfiguration(v.Sub("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
|
|
|
|
2019-06-23 15:29:49 -07: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-23 15:30:16 -07:00
|
|
|
} else {
|
2019-06-23 15:29:49 -07:00
|
|
|
time.Sleep(7 * time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if metricsAddress == "" && metricsIntervalSec <= 0 {
|
|
|
|
return
|
|
|
|
}
|
2019-06-17 14:51:47 -07:00
|
|
|
go stats.LoopPushingMetric("filer", stats.SourceName(option.Port), stats.FilerGather,
|
|
|
|
func() (addr string, intervalSeconds int) {
|
2019-06-23 15:29:49 -07:00
|
|
|
return metricsAddress, metricsIntervalSec
|
2019-06-17 14:51:47 -07:00
|
|
|
})
|
2019-06-23 15:29:49 -07:00
|
|
|
}
|
2019-06-13 02:01:51 -07:00
|
|
|
|
2019-06-23 15:29:49 -07: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-30 11:28:04 -07:00
|
|
|
}
|