aboutsummaryrefslogtreecommitdiff
path: root/go
AgeCommit message (Collapse)AuthorFilesLines
2015-04-13Add compression testchrislusf1-0/+45
2015-04-13Adding filer option disableDirListingchrislusf4-3/+13
2015-04-10log image Decode error for some kind of picturesyanyiwu1-1/+5
2015-04-08Fix empty public urlchrislusf2-3/+6
2015-04-06change count to uint64 to fix #109chrislusf8-10/+42
fix https://github.com/chrislusf/weed-fs/issues/109
2015-03-29Adjust logging level.chrislusf1-1/+1
2015-03-29remove verbose logging.chrislusf1-1/+0
2015-03-29Add boltdb for volume needle mapchrislusf13-88/+309
boltdb is fairly slow to write, about 6 minutes for recreating index for 1553934 files. Boltdb loads 1,553,934 x 16 = 24,862,944bytes from disk, and generate the boltdb as large as 134,217,728 bytes in 6 minutes. To compare, for leveldb, it recreates index in leveldb as large as 27,188,148 bytes in 8 seconds. For in memory version, it loads the index in To test the memory consumption, the leveldb or boltdb index are created. And the server is restarted. Using the benchmark tool to read lots of files. There are 7 volumes in benchmark collection, each with about 1553K files. For leveldb, the memory starts at 142,884KB, and stays at 179,340KB. For boltdb, the memory starts at 73,756KB, and stays at 144,564KB. For in-memory, the memory starts at 368,152KB, and stays at 448,032KB.
2015-03-27removing unused fileschrislusf2-407/+0
2015-03-27add leveldb support for needle mapchrislusf13-253/+347
This supposedly should reduce memory consumption. However, for tests with millions of, this shows consuming more memories. Need to see whether this will work out. If not, later boltdb will be tested.
2015-03-24fix compilation errorchrislusf1-5/+2
2015-03-24[ui] add ui to status pagechrislusf2-0/+6
2015-03-24[ui] format peerschrislusf2-3/+3
2015-03-22tweaking uichrislusf9-13/+93
2015-03-19Add better error message.chrislusf1-1/+1
2015-03-19Add Initial Seaweed File System UIchrislusf7-1/+232
2015-03-13fix public handler setupchrislusf1-3/+3
2015-03-11marking weedfs.conf as deprecating.chrislusf1-1/+1
The conf settings currently is duplicating with command line options.
2015-03-10follow golint suggestionschrislusf26-101/+570
2015-03-09Add read only public port on volume serverchrislusf12-74/+71
Add read only public port on volume server
2015-03-09adding special handling to recover data if possiblechrislusf1-4/+26
For bug #87 and #93, add special handling to recover data if possible.
2015-03-09Avoid wrong way to delete on replication failurechrislusf3-11/+7
Avoid wrong way to delete on replication failure. This deletion has bug to write. The better fix is not to use the deletion on failure at all.
2015-03-09adjust log printingchrislusf3-11/+10
2015-02-26Merge branch 'master' of github.com:chrislusf/weed-fsChris Lu4-6/+11
2015-02-26a 0.69 beta releaseChris Lu1-1/+1
2015-02-25display admin url on /dir/statuschrislusf1-0/+1
2015-02-25adjust debug messagechrislusf1-1/+1
2015-02-25set default volume admin portchrislusf1-4/+7
2015-02-25avoid auto unzip tar.gz fileschrislusf1-1/+2
fix https://github.com/chrislusf/weed-fs/issues/90
2015-02-25Merge branch 'master' of github.com:chrislusf/weed-fsChris Lu1-1/+2
2015-02-25Separate read and write volume handlers.Chris Lu4-312/+369
2015-02-20Show returned content when can not parse sonchrislusf1-1/+2
2015-02-12Redirect to publicUrlchrislusf1-1/+1
Redirect to publicUrl
2015-02-12Fix compilation errorchrislusf1-1/+1
2015-02-12ensure non empty volume publicUrlchrislusf1-0/+3
2015-02-12Randomize http redirect.chrislusf1-5/+2
Randomize http redirect. Also remove unnecessary empty string checking.
2015-02-12Move the redirect url perfer to volume server's PublicUrlyourchanges1-1/+5
2015-02-12Move the redirect url perfer to volume server's PublicUrl (reverted from ↵yourchanges1-3/+0
commit 701bb9af19d9773896eb360c921a4c7fb6a2a2ea)
2015-02-12Move the redirect url perfer to volume server's PublicUrlyourchanges1-0/+3
2015-02-12Move the redirect url to volume server's PublicUrl (reverted from commit ↵yourchanges1-1/+1
2df72001b2692407c8beb8a9441ea08672245c7a)
2015-02-12Move the redirect url to volume server's PublicUrlyourchanges1-1/+1
2015-02-11Add publicUrl for master serverchrislusf3-10/+7
2015-02-07merge conflictsChris Lu21-135/+269
2015-02-05Fix compilation error due to upstream API change.chrislusf1-4/+5
Fix compilation error due to upstream API change.
2015-02-05Avoid checking folder if not using filer. fix #80chrislusf1-3/+3
Fix https://github.com/chrislusf/weed-fs/issues/80
2015-02-04use sync.RWMutex when masterNode changesyanyiwu2-7/+22
2015-02-02Avoid creating filer folder if not starting it.chrislusf1-3/+5
2015-02-02change CLI option from publicIp to publicUrlchrislusf4-33/+16
Now the publicUrl is free style text.
2015-02-02Using Url instead of PublicUrl for volume serverchrislusf8-13/+13
Originally there are only url(ip + port), and publicUrl. Because ip was used to listen for http service, it has less flexibility and volume server has to be accessed via publicUrl. Recently we added ip.bind, for binding http service. With this change, url can be used to connect to volume servers. And publicUrl becomes a free style piece of url information, it does not even need to be unique.
2015-01-31Update volume server's master node when masters change.chrislusf1-0/+1