You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							35 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							35 lines
						
					
					
						
							1.4 KiB
						
					
					
				
								package weed_server
							 | 
						|
								
							 | 
						|
								import (
							 | 
						|
									"net/http"
							 | 
						|
								
							 | 
						|
									"github.com/chrislusf/seaweedfs/go/glog"
							 | 
						|
								)
							 | 
						|
								
							 | 
						|
								func (vs *VolumeServer) vacuumVolumeCheckHandler(w http.ResponseWriter, r *http.Request) {
							 | 
						|
									err, ret := vs.store.CheckCompactVolume(r.FormValue("volume"), r.FormValue("garbageThreshold"))
							 | 
						|
									if err == nil {
							 | 
						|
										writeJsonQuiet(w, r, http.StatusOK, map[string]interface{}{"error": "", "result": ret})
							 | 
						|
									} else {
							 | 
						|
										writeJsonQuiet(w, r, http.StatusInternalServerError, map[string]interface{}{"error": err.Error(), "result": false})
							 | 
						|
									}
							 | 
						|
									glog.V(2).Infoln("checked compacting volume =", r.FormValue("volume"), "garbageThreshold =", r.FormValue("garbageThreshold"), "vacuum =", ret)
							 | 
						|
								}
							 | 
						|
								func (vs *VolumeServer) vacuumVolumeCompactHandler(w http.ResponseWriter, r *http.Request) {
							 | 
						|
									err := vs.store.CompactVolume(r.FormValue("volume"))
							 | 
						|
									if err == nil {
							 | 
						|
										writeJsonQuiet(w, r, http.StatusOK, map[string]string{"error": ""})
							 | 
						|
									} else {
							 | 
						|
										writeJsonError(w, r, http.StatusInternalServerError, err)
							 | 
						|
									}
							 | 
						|
									glog.V(2).Infoln("compacted volume =", r.FormValue("volume"), ", error =", err)
							 | 
						|
								}
							 | 
						|
								func (vs *VolumeServer) vacuumVolumeCommitHandler(w http.ResponseWriter, r *http.Request) {
							 | 
						|
									err := vs.store.CommitCompactVolume(r.FormValue("volume"))
							 | 
						|
									if err == nil {
							 | 
						|
										writeJsonQuiet(w, r, http.StatusOK, map[string]string{"error": ""})
							 | 
						|
									} else {
							 | 
						|
										writeJsonError(w, r, http.StatusInternalServerError, err)
							 | 
						|
									}
							 | 
						|
									glog.V(2).Infoln("commit compact volume =", r.FormValue("volume"), ", error =", err)
							 | 
						|
								}
							 |