aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-04-13releasing 0.69v0.69Chris Lu1-1/+1
2015-04-13Add compression testchrislusf1-0/+45
2015-04-13Adding filer option disableDirListingchrislusf4-3/+13
2015-04-13Update README.mdchrislusf1-0/+15
2015-04-10Merge pull request #114 from yanyiwu/masterchrislusf1-1/+5
log image Decode error for some kind of pictures
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-29Update README.mdchrislusf1-0/+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-27Add tool to see idx file contentschrislusf1-0/+38
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-17add more commentschrislusf1-0/+3
2015-03-17one-off fix for issues/93chrislusf2-0/+139
https://github.com/chrislusf/weed-fs/issues/93
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-09adding seaweedfs logochrislusf1-0/+1
2015-03-09Add logochrislusf1-0/+0
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-03-08Merge pull request #95 from stuartpb/patch-4chrislusf1-18/+18
Consolidate toward name SeaweedFS
2015-03-06Consolidate toward name SeaweedFSStuart P. Bentley1-18/+18
This updates README.md to consistently use the name "SeaweedFS", per #94.
2015-03-05Merge pull request #97 from stuartpb/patch-6chrislusf1-7/+15
Update Google Code wiki links to point to GitHub wiki
2015-03-05Update Google Code wiki links to point to GitHub wikiStuart P. Bentley1-7/+15
2015-03-04Merge pull request #96 from stuartpb/patch-5chrislusf18-2397/+8
Use GitHub Wiki for docs
2015-03-04Use GitHub Wiki for docsStuart P. Bentley18-2397/+8
I've converted all the docs pages to pages on https://github.com/chrislusf/weed-fs/wiki/: - docs/index.rst => https://github.com/chrislusf/weed-fs/wiki - docs/gettingstarted.rst => https://github.com/chrislusf/weed-fs/wiki/Getting-Started - docs/clients.rst => https://github.com/chrislusf/weed-fs/wiki/Client-Libraries - docs/api.rst => https://github.com/chrislusf/weed-fs/wiki/API - docs/replication.rst => https://github.com/chrislusf/weed-fs/wiki/Replication - docs/ttl.rst => https://github.com/chrislusf/weed-fs/wiki/Store-file-with-a-Time-To-Live - docs/failover.rst => https://github.com/chrislusf/weed-fs/wiki/Failover-Master-Server - docs/directories.rst => https://github.com/chrislusf/weed-fs/wiki/Directories-and-Files - docs/distributed_filer.rst => https://github.com/chrislusf/weed-fs/wiki/Distributed-Filer - docs/usecases.rst => https://github.com/chrislusf/weed-fs/wiki/Use-Cases - docs/optimization.rst => https://github.com/chrislusf/weed-fs/wiki/Optimization - docs/benchmarks.rst => https://github.com/chrislusf/weed-fs/wiki/Benchmarks - docs/changelist.rst => https://github.com/chrislusf/weed-fs/wiki/Change-List
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