seaweedfs/weed-fs/src/cmd/weed/volume.go

287 lines
7.8 KiB
Go
Raw Normal View History

package main
import (
"bytes"
2012-08-24 05:46:54 +00:00
"log"
"math/rand"
"mime"
"net/http"
"os"
"pkg/operation"
2012-08-24 05:46:54 +00:00
"pkg/storage"
"strconv"
"strings"
"time"
)
func init() {
2012-08-24 05:46:54 +00:00
cmdVolume.Run = runVolume // break init cycle
IsDebug = cmdVolume.Flag.Bool("debug", false, "enable debug mode")
}
var cmdVolume = &Command{
2012-09-26 08:55:56 +00:00
UsageLine: "volume -port=8080 -dir=/tmp -max=5 -ip=server_name -mserver=localhost:9333",
2012-08-24 05:46:54 +00:00
Short: "start a volume server",
Long: `start a volume server to provide storage spaces
`,
}
var (
vport = cmdVolume.Flag.Int("port", 8080, "http listen port")
2012-09-23 21:51:25 +00:00
volumeFolder = cmdVolume.Flag.String("dir", "/tmp", "directory to store data files")
2012-09-26 09:29:16 +00:00
ip = cmdVolume.Flag.String("ip", "localhost", "ip or server name")
2012-09-26 08:55:56 +00:00
publicUrl = cmdVolume.Flag.String("publicUrl", "", "Publicly accessible <ip|server_name>:<port>")
2012-09-23 21:51:25 +00:00
masterNode = cmdVolume.Flag.String("mserver", "localhost:9333", "master server location")
vpulse = cmdVolume.Flag.Int("pulseSeconds", 5, "number of seconds between heartbeats")
2012-09-19 23:56:35 +00:00
maxVolumeCount = cmdVolume.Flag.Int("max", 5, "maximum number of volumes")
2012-08-24 05:46:54 +00:00
store *storage.Store
)
func statusHandler(w http.ResponseWriter, r *http.Request) {
2012-08-24 05:46:54 +00:00
writeJson(w, r, store.Status())
}
2012-09-11 00:08:52 +00:00
func assignVolumeHandler(w http.ResponseWriter, r *http.Request) {
err := store.AddVolume(r.FormValue("volume"), r.FormValue("replicationType"))
if err == nil {
writeJson(w, r, map[string]string{"error": ""})
} else {
writeJson(w, r, map[string]string{"error": err.Error()})
}
2012-09-27 19:17:27 +00:00
debug("volume =", r.FormValue("volume"), ", replicationType =", r.FormValue("replicationType"), ", error =", err)
2012-09-11 00:08:52 +00:00
}
func storeHandler(w http.ResponseWriter, r *http.Request) {
2012-08-24 05:46:54 +00:00
switch r.Method {
case "GET":
GetHandler(w, r)
case "DELETE":
DeleteHandler(w, r)
case "POST":
PostHandler(w, r)
}
}
func GetHandler(w http.ResponseWriter, r *http.Request) {
2012-08-24 05:46:54 +00:00
n := new(storage.Needle)
vid, fid, ext := parseURLPath(r.URL.Path)
2012-09-25 23:05:31 +00:00
volumeId, err := storage.NewVolumeId(vid)
if err != nil {
2012-09-27 19:17:27 +00:00
debug("parsing error:", err, r.URL.Path)
2012-09-25 23:05:31 +00:00
return
}
2012-08-24 05:46:54 +00:00
n.ParsePath(fid)
2012-09-27 19:17:27 +00:00
debug("volume", volumeId, "reading", n)
if !store.HasVolume(volumeId) {
2012-09-25 23:05:31 +00:00
lookupResult, err := operation.Lookup(*masterNode, volumeId)
2012-09-27 19:17:27 +00:00
debug("volume", volumeId, "found on", lookupResult, "error", err)
if err == nil {
http.Redirect(w, r, "http://"+lookupResult.Locations[0].PublicUrl+r.URL.Path, http.StatusMovedPermanently)
} else {
2012-09-27 19:17:27 +00:00
debug("lookup error:", err, r.URL.Path)
w.WriteHeader(http.StatusNotFound)
}
return
}
2012-08-24 05:46:54 +00:00
cookie := n.Cookie
count, e := store.Read(volumeId, n)
2012-09-27 19:17:27 +00:00
debug("read bytes", count, "error", e)
if e != nil || count <= 0 {
2012-09-27 19:17:27 +00:00
debug("read error:", e, r.URL.Path)
w.WriteHeader(http.StatusNotFound)
return
2012-08-24 05:46:54 +00:00
}
if n.Cookie != cookie {
log.Println("request with unmaching cookie from ", r.RemoteAddr, "agent", r.UserAgent())
w.WriteHeader(http.StatusNotFound)
2012-08-24 05:46:54 +00:00
return
}
if ext != "" {
mtype := mime.TypeByExtension(ext)
w.Header().Set("Content-Type", mtype)
if storage.IsCompressable(ext, mtype) {
if strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
w.Header().Set("Content-Encoding", "gzip")
} else {
n.Data = storage.UnGzipData(n.Data)
}
}
}
w.Write(n.Data)
}
func PostHandler(w http.ResponseWriter, r *http.Request) {
2012-09-21 08:30:31 +00:00
r.ParseForm()
2012-08-24 05:46:54 +00:00
vid, _, _ := parseURLPath(r.URL.Path)
2012-09-04 03:40:38 +00:00
volumeId, e := storage.NewVolumeId(vid)
2012-08-24 05:46:54 +00:00
if e != nil {
writeJson(w, r, e)
} else {
needle, filename, ne := storage.NewNeedle(r)
2012-08-24 05:46:54 +00:00
if ne != nil {
writeJson(w, r, ne)
} else {
ret := store.Write(volumeId, needle)
2012-09-26 21:28:46 +00:00
errorStatus := ""
2012-09-21 08:30:31 +00:00
if ret > 0 || !store.HasVolume(volumeId) { //send to other replica locations
2012-09-21 00:58:29 +00:00
if r.FormValue("type") != "standard" {
if !distributedOperation(volumeId, func(location operation.Location) bool {
2012-09-26 20:38:45 +00:00
_, err := operation.Upload("http://"+location.Url+r.URL.Path+"?type=standard", filename, bytes.NewReader(needle.Data))
return err == nil
}) {
ret = 0
2012-09-26 21:28:46 +00:00
errorStatus = "Failed to write to replicas for volume " + volumeId.String()
2012-09-26 20:38:45 +00:00
}
2012-09-21 00:58:29 +00:00
}
2012-09-26 20:38:45 +00:00
} else {
2012-09-26 21:28:46 +00:00
errorStatus = "Failed to write to local disk"
2012-09-21 00:58:29 +00:00
}
2012-09-26 21:28:46 +00:00
m := make(map[string]interface{})
if errorStatus == "" {
w.WriteHeader(http.StatusCreated)
} else {
2012-09-27 03:30:05 +00:00
store.Delete(volumeId, needle)
distributedOperation(volumeId, func(location operation.Location) bool {
return nil == operation.Delete("http://"+location.Url+r.URL.Path+"?type=standard")
})
w.WriteHeader(http.StatusInternalServerError)
m["error"] = errorStatus
}
2012-08-24 05:46:54 +00:00
m["size"] = ret
writeJson(w, r, m)
}
}
}
func DeleteHandler(w http.ResponseWriter, r *http.Request) {
2012-08-24 05:46:54 +00:00
n := new(storage.Needle)
vid, fid, _ := parseURLPath(r.URL.Path)
2012-09-04 03:40:38 +00:00
volumeId, _ := storage.NewVolumeId(vid)
2012-08-24 05:46:54 +00:00
n.ParsePath(fid)
2012-09-27 19:17:27 +00:00
debug("deleting", n)
2012-08-24 05:46:54 +00:00
cookie := n.Cookie
count, ok := store.Read(volumeId, n)
if ok != nil {
m := make(map[string]uint32)
m["size"] = 0
writeJson(w, r, m)
return
}
if n.Cookie != cookie {
log.Println("delete with unmaching cookie from ", r.RemoteAddr, "agent", r.UserAgent())
return
}
n.Size = 0
2012-09-26 10:27:10 +00:00
ret := store.Delete(volumeId, n)
if ret > 0 || !store.HasVolume(volumeId) { //send to other replica locations
if r.FormValue("type") != "standard" {
if !distributedOperation(volumeId, func(location operation.Location) bool {
2012-09-26 20:38:45 +00:00
return nil == operation.Delete("http://"+location.Url+r.URL.Path+"?type=standard")
}) {
ret = 0
}
2012-09-26 10:27:10 +00:00
}
}
if ret != 0 {
w.WriteHeader(http.StatusAccepted)
2012-09-26 20:38:45 +00:00
} else {
w.WriteHeader(http.StatusInternalServerError)
2012-09-26 10:27:10 +00:00
}
2012-08-24 05:46:54 +00:00
m := make(map[string]uint32)
m["size"] = uint32(count)
writeJson(w, r, m)
}
2012-09-27 19:17:27 +00:00
func parseURLPath(path string) (vid, fid, ext string) {
2012-08-24 05:46:54 +00:00
sepIndex := strings.LastIndex(path, "/")
commaIndex := strings.LastIndex(path[sepIndex:], ",")
if commaIndex <= 0 {
if "favicon.ico" != path[sepIndex+1:] {
log.Println("unknown file id", path[sepIndex+1:])
}
return
}
dotIndex := strings.LastIndex(path[sepIndex:], ".")
vid = path[sepIndex+1 : commaIndex]
fid = path[commaIndex+1:]
ext = ""
if dotIndex > 0 {
fid = path[commaIndex+1 : dotIndex]
ext = path[dotIndex:]
}
return
}
2012-09-27 19:17:27 +00:00
func distributedOperation(volumeId storage.VolumeId, op func(location operation.Location) bool) bool {
2012-09-26 10:27:10 +00:00
if lookupResult, lookupErr := operation.Lookup(*masterNode, volumeId); lookupErr == nil {
2012-09-26 20:38:45 +00:00
length := 0
selfUrl := (*ip + ":" + strconv.Itoa(*vport))
results := make(chan bool)
for _, location := range lookupResult.Locations {
if location.Url != selfUrl {
length++
2012-09-27 19:17:27 +00:00
go func(location operation.Location, results chan bool) {
results <- op(location)
}(location, results)
2012-09-26 10:27:10 +00:00
}
}
2012-09-26 20:38:45 +00:00
ret := true
for i := 0; i < length; i++ {
ret = ret && <-results
}
return ret
2012-09-26 10:27:10 +00:00
} else {
log.Println("Failed to lookup for", volumeId, lookupErr.Error())
}
2012-09-26 20:38:45 +00:00
return false
2012-09-26 10:27:10 +00:00
}
func runVolume(cmd *Command, args []string) bool {
fileInfo, err := os.Stat(*volumeFolder)
if err != nil {
log.Fatalf("No Existing Folder:%s", *volumeFolder)
}
if !fileInfo.IsDir() {
log.Fatalf("Volume Folder should not be a file:%s", *volumeFolder)
}
perm := fileInfo.Mode().Perm()
log.Println("Volume Folder permission:", perm)
2012-09-26 10:27:10 +00:00
2012-09-26 09:29:16 +00:00
if *publicUrl == "" {
2012-09-26 10:27:10 +00:00
*publicUrl = *ip + ":" + strconv.Itoa(*vport)
2012-09-26 09:29:16 +00:00
}
2012-09-26 08:55:56 +00:00
store = storage.NewStore(*vport, *ip, *publicUrl, *volumeFolder, *maxVolumeCount)
2012-08-24 05:46:54 +00:00
defer store.Close()
http.HandleFunc("/", storeHandler)
http.HandleFunc("/status", statusHandler)
2012-09-11 00:08:52 +00:00
http.HandleFunc("/admin/assign_volume", assignVolumeHandler)
2012-08-24 05:46:54 +00:00
go func() {
for {
2012-09-08 23:25:44 +00:00
store.Join(*masterNode)
2012-09-04 03:40:38 +00:00
time.Sleep(time.Duration(float32(*vpulse*1e3)*(1+rand.Float32())) * time.Millisecond)
2012-08-24 05:46:54 +00:00
}
}()
2012-09-08 23:25:44 +00:00
log.Println("store joined at", *masterNode)
2012-08-24 05:46:54 +00:00
2012-09-28 16:13:17 +00:00
log.Println("Start Weed volume server", VERSION, "at http://"+*ip+":"+strconv.Itoa(*vport))
srv := &http.Server{
Addr:":"+strconv.Itoa(*vport),
Handler: http.DefaultServeMux,
ReadTimeout: 5*time.Second,
2012-09-28 16:13:17 +00:00
}
e := srv.ListenAndServe()
2012-08-24 05:46:54 +00:00
if e != nil {
2012-09-26 06:28:16 +00:00
log.Fatalf("Fail to start:%s", e.Error())
2012-08-24 05:46:54 +00:00
}
return true
}