2014-03-31 02:28:04 +08:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2016-06-07 11:38:40 +08:00
|
|
|
"math/rand"
|
2014-03-31 02:28:04 +08:00
|
|
|
"net/http"
|
2014-03-31 11:57:25 +08:00
|
|
|
"strconv"
|
2016-06-07 11:38:40 +08:00
|
|
|
"sync"
|
|
|
|
"time"
|
2014-10-27 02:34:55 +08:00
|
|
|
|
2016-06-03 09:09:14 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
2016-06-07 11:38:40 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-05-14 14:56:16 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
2018-05-27 15:01:15 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/cassandra"
|
2018-05-26 18:49:46 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb"
|
2018-05-26 20:32:15 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/memdb"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/mysql"
|
2018-05-27 13:02:49 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/postgres"
|
2014-03-31 02:28:04 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type FilerServer struct {
|
2014-12-09 12:27:26 +08:00
|
|
|
port string
|
|
|
|
master string
|
2016-06-07 11:38:40 +08:00
|
|
|
mnLock sync.RWMutex
|
2014-12-09 12:27:26 +08:00
|
|
|
collection string
|
|
|
|
defaultReplication string
|
|
|
|
redirectOnRead bool
|
2015-04-14 14:38:46 +08:00
|
|
|
disableDirListing bool
|
2015-02-08 07:35:28 +08:00
|
|
|
secret security.Secret
|
2018-05-14 14:56:16 +08:00
|
|
|
filer *filer2.Filer
|
2016-08-31 11:32:30 +08:00
|
|
|
maxMB int
|
2016-06-07 11:38:40 +08:00
|
|
|
masterNodes *storage.MasterNodes
|
2014-03-31 02:28:04 +08:00
|
|
|
}
|
|
|
|
|
2018-05-26 18:49:46 +08:00
|
|
|
func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, ip string, port int, master string, collection string,
|
2015-04-14 14:38:46 +08:00
|
|
|
replication string, redirectOnRead bool, disableDirListing bool,
|
2016-08-06 06:01:30 +08:00
|
|
|
maxMB int,
|
2015-02-08 07:35:28 +08:00
|
|
|
secret string,
|
2014-12-09 12:27:26 +08:00
|
|
|
) (fs *FilerServer, err error) {
|
2014-03-31 02:28:04 +08:00
|
|
|
fs = &FilerServer{
|
2014-12-09 12:27:26 +08:00
|
|
|
master: master,
|
|
|
|
collection: collection,
|
|
|
|
defaultReplication: replication,
|
|
|
|
redirectOnRead: redirectOnRead,
|
2015-04-14 14:38:46 +08:00
|
|
|
disableDirListing: disableDirListing,
|
2016-08-31 11:32:30 +08:00
|
|
|
maxMB: maxMB,
|
2016-05-26 23:37:27 +08:00
|
|
|
port: ip + ":" + strconv.Itoa(port),
|
2014-03-31 02:28:04 +08:00
|
|
|
}
|
2018-05-14 14:56:16 +08:00
|
|
|
fs.filer = filer2.NewFiler(master)
|
2018-05-26 18:49:46 +08:00
|
|
|
|
|
|
|
fs.filer.LoadConfiguration()
|
2018-05-14 14:56:16 +08:00
|
|
|
|
2018-02-28 06:18:00 +08:00
|
|
|
defaultMux.HandleFunc("/admin/register", fs.registerHandler)
|
2017-05-28 09:11:18 +08:00
|
|
|
defaultMux.HandleFunc("/", fs.filerHandler)
|
2017-05-28 11:14:22 +08:00
|
|
|
if defaultMux != readonlyMux {
|
|
|
|
readonlyMux.HandleFunc("/", fs.readonlyFilerHandler)
|
|
|
|
}
|
2014-03-31 02:28:04 +08:00
|
|
|
|
2016-06-07 11:38:40 +08:00
|
|
|
go func() {
|
|
|
|
connected := true
|
|
|
|
|
|
|
|
fs.masterNodes = storage.NewMasterNodes(fs.master)
|
|
|
|
glog.V(0).Infof("Filer server bootstraps with master %s", fs.getMasterNode())
|
|
|
|
|
|
|
|
for {
|
|
|
|
glog.V(4).Infof("Filer server sending to master %s", fs.getMasterNode())
|
|
|
|
master, err := fs.detectHealthyMaster(fs.getMasterNode())
|
|
|
|
if err == nil {
|
|
|
|
if !connected {
|
|
|
|
connected = true
|
|
|
|
if fs.getMasterNode() != master {
|
|
|
|
fs.setMasterNode(master)
|
|
|
|
}
|
|
|
|
glog.V(0).Infoln("Filer Server Connected with master at", master)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
glog.V(1).Infof("Filer Server Failed to talk with master %s: %v", fs.getMasterNode(), err)
|
|
|
|
if connected {
|
|
|
|
connected = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if connected {
|
|
|
|
time.Sleep(time.Duration(float32(10*1e3)*(1+rand.Float32())) * time.Millisecond)
|
|
|
|
} else {
|
|
|
|
time.Sleep(time.Duration(float32(10*1e3)*0.25) * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2014-03-31 02:28:04 +08:00
|
|
|
return fs, nil
|
|
|
|
}
|
2015-02-08 07:35:28 +08:00
|
|
|
|
|
|
|
func (fs *FilerServer) jwt(fileId string) security.EncodedJwt {
|
|
|
|
return security.GenJwt(fs.secret, fileId)
|
|
|
|
}
|
2016-06-07 11:38:40 +08:00
|
|
|
|
|
|
|
func (fs *FilerServer) getMasterNode() string {
|
|
|
|
fs.mnLock.RLock()
|
|
|
|
defer fs.mnLock.RUnlock()
|
|
|
|
return fs.master
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *FilerServer) setMasterNode(masterNode string) {
|
|
|
|
fs.mnLock.Lock()
|
|
|
|
defer fs.mnLock.Unlock()
|
|
|
|
fs.master = masterNode
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *FilerServer) detectHealthyMaster(masterNode string) (master string, e error) {
|
2016-06-07 14:50:27 +08:00
|
|
|
if e = checkMaster(masterNode); e != nil {
|
2016-06-07 11:38:40 +08:00
|
|
|
fs.masterNodes.Reset()
|
|
|
|
for i := 0; i <= 3; i++ {
|
|
|
|
master, e = fs.masterNodes.FindMaster()
|
|
|
|
if e != nil {
|
|
|
|
continue
|
|
|
|
} else {
|
2016-06-30 19:54:05 +08:00
|
|
|
if e = checkMaster(master); e == nil {
|
2016-06-07 11:38:40 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
master = masterNode
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-06-07 14:50:27 +08:00
|
|
|
|
|
|
|
func checkMaster(masterNode string) error {
|
2018-05-07 15:37:33 +08:00
|
|
|
statUrl := "http://" + masterNode + "/stats/health"
|
2016-06-07 14:50:27 +08:00
|
|
|
glog.V(4).Infof("Connecting to %s ...", statUrl)
|
|
|
|
_, e := util.Get(statUrl)
|
|
|
|
return e
|
|
|
|
}
|