aboutsummaryrefslogtreecommitdiff
path: root/go/weed/weed_server
AgeCommit message (Collapse)AuthorFilesLines
2016-06-02directory structure change to work with glideChris Lu21-2489/+0
glide has its own requirements. My previous workaround caused me some code checkin errors. Need to fix this.
2016-05-30rwlock concurrent read mapChris Lu1-1/+1
2016-05-26add missing parameters.Chris Lu1-2/+2
strange git errors happen twice since adding glide.
2016-05-24clean up old config only when peers are changed.Chris Lu1-14/+46
fix https://github.com/chrislusf/seaweedfs/issues/307
2016-05-23master: redirect handler accept collection parameteryangrun1-2/+3
2016-05-13properly release memoryChris Lu2-3/+2
fix https://github.com/chrislusf/seaweedfs/issues/301
2016-05-12Fix Content-Disposition header; add dl=(0|1) URI param to use inline ↵Alexander Kovalenko1-1/+7
(default) or attachment
2016-04-28fix refactoring errorChris Lu1-3/+3
2016-04-15add []byte caching and poolingchrislusf1-2/+2
fixes https://github.com/chrislusf/seaweedfs/issues/211
2016-04-15fmtchrislusf1-2/+2
2016-04-14Added /favicon.ico handlerVitaly Baev3-0/+17
2016-04-14pooling []bytechrislusf3-2/+10
reduce the number of requests to make([]byte)
2016-03-08adjust reading ip addresschrislusf1-1/+1
adjust reading ip address
2016-03-08add redis passwordchrislusf1-2/+2
fix https://github.com/chrislusf/seaweedfs/issues/263
2016-02-27Fix chunk manifest replicate upload errortnextday1-1/+11
Escape the redirect url in volume read handler
2016-01-17Update filer_server_handlers.goXiaodong Huo1-77/+40
filer service PUT method update file while POST method create file
2016-01-13dereplicate filer post request & support filer get request with raw fileId霍晓栋1-15/+91
2016-01-04collection name could be specified in urlXiaodong Huo1-1/+5
uploading file with filer service could specify the collection name in get/post field, if no collection specified, the default collection setting against the filer service will be used
2015-12-25fix bug : master cann't redirect urlquery stringMohanson1-1/+7
There is a bug that master can not redirect urlquery to slave volumn. so i fix it, and it run good now.
2015-12-14format changeschrislusf2-15/+8
2015-12-15updatetnextday1-1/+1
2015-12-15verbose logtnextday1-1/+1
2015-12-15Move write response content into a functiontnextday1-151/+66
2015-12-03updatetnextday1-0/+1
2015-12-03updatetnextday1-5/+5
2015-12-03more check in `http_util.Delete`tnextday1-8/+39
add status code in `DeleteResult` struct operation.DeleteFiles maybe unsafe, so `ChunkManifest.DeleteChunks` manually delete each chunks
2015-12-02delete file return needle sizetnextday1-4/+6
2015-12-02returen chunks file size when delete a chunkmanifesttnextday1-0/+1
2015-12-02Delete all chunks when delete a ChunkManifesttnextday2-9/+13
LoadChunkManifest can uncompress buffer move compress.go from storage to operation because of import cycle MakeFile add cross complete command
2015-12-02updatetnextday1-5/+5
2015-12-02`FilePart.Upload` use base name instead of full pathtnextday1-6/+10
fix chunked file download error
2015-12-02complete submit chunked filetnextday1-1/+1
2015-12-01rename FlagChunkedFile to FlagChunkManifesttnextday1-1/+1
2015-12-01update ChunkedFile to seekable reader, so we can use io.* to read datatnextday2-1/+151
2015-11-29add chunk file helper to support large filetnextday1-1/+1
2015-11-22fixchrislusf1-1/+1
2015-11-22fixchrislusf1-0/+8
set HTTP_X_FORWARDED_FOR when proxying https://github.com/chrislusf/seaweedfs/issues/214
2015-10-17enable collection deletionchrislusf1-4/+0
2015-08-21avoid using empty fileId to deletechrislusf1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/183
2015-08-03add option to redirect moved or non-local volumeschrislusf2-1/+9
fix https://github.com/chrislusf/seaweedfs/issues/168
2015-07-11add loggingchrislusf1-1/+1
2015-06-24Use request host info for master url if possiblechrislusf1-2/+8
Fix https://github.com/chrislusf/seaweedfs/issues/148
2015-06-22allowing proxy to leader for volume id lookup then redirect to volume serverchrislusf1-1/+1
Fix https://github.com/chrislusf/seaweedfs/issues/154
2015-05-26Add "weed backup" command.chrislusf4-3/+92
This is a pre-cursor for asynchronous replication.
2015-05-23Adjust log messagechrislusf1-1/+1
2015-05-17Adjust admin url patternchrislusf1-3/+3
2015-05-16if mt != "application/octet-stream"yanyiwu1-1/+1
became if !strings.HasPrefix(mt, "application/octet-stream") In our situation, mt can be 'application/octet-stream;charset=ISO-8859-1', so I think HasPrefix will be more accurate.
2015-05-14More debug information for connecting to masterchrislusf1-0/+2
2015-05-03break away from code.google.comchrislusf3-3/+3
2015-04-20[ui] BUG FIXED: Concurrent Connections incorrect.yanyiwu1-1/+1