| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-04-13 | releasing 0.69v0.69 | Chris Lu | 1 | -1/+1 | |
| 2015-04-13 | Add compression test | chrislusf | 1 | -0/+45 | |
| 2015-04-13 | Adding filer option disableDirListing | chrislusf | 4 | -3/+13 | |
| 2015-04-13 | Update README.md | chrislusf | 1 | -0/+15 | |
| 2015-04-10 | Merge pull request #114 from yanyiwu/master | chrislusf | 1 | -1/+5 | |
| log image Decode error for some kind of pictures | |||||
| 2015-04-10 | log image Decode error for some kind of pictures | yanyiwu | 1 | -1/+5 | |
| 2015-04-08 | Fix empty public url | chrislusf | 2 | -3/+6 | |
| 2015-04-06 | change count to uint64 to fix #109 | chrislusf | 8 | -10/+42 | |
| fix https://github.com/chrislusf/weed-fs/issues/109 | |||||
| 2015-03-29 | Adjust logging level. | chrislusf | 1 | -1/+1 | |
| 2015-03-29 | Update README.md | chrislusf | 1 | -0/+1 | |
| 2015-03-29 | remove verbose logging. | chrislusf | 1 | -1/+0 | |
| 2015-03-29 | Add boltdb for volume needle map | chrislusf | 13 | -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-27 | removing unused files | chrislusf | 2 | -407/+0 | |
| 2015-03-27 | add leveldb support for needle map | chrislusf | 13 | -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-27 | Add tool to see idx file contents | chrislusf | 1 | -0/+38 | |
| 2015-03-24 | fix compilation error | chrislusf | 1 | -5/+2 | |
| 2015-03-24 | [ui] add ui to status page | chrislusf | 2 | -0/+6 | |
| 2015-03-24 | [ui] format peers | chrislusf | 2 | -3/+3 | |
| 2015-03-22 | tweaking ui | chrislusf | 9 | -13/+93 | |
| 2015-03-19 | Add better error message. | chrislusf | 1 | -1/+1 | |
| 2015-03-19 | Add Initial Seaweed File System UI | chrislusf | 7 | -1/+232 | |
| 2015-03-17 | add more comments | chrislusf | 1 | -0/+3 | |
| 2015-03-17 | one-off fix for issues/93 | chrislusf | 2 | -0/+139 | |
| https://github.com/chrislusf/weed-fs/issues/93 | |||||
| 2015-03-13 | fix public handler setup | chrislusf | 1 | -3/+3 | |
| 2015-03-11 | marking weedfs.conf as deprecating. | chrislusf | 1 | -1/+1 | |
| The conf settings currently is duplicating with command line options. | |||||
| 2015-03-10 | follow golint suggestions | chrislusf | 26 | -101/+570 | |
| 2015-03-09 | adding seaweedfs logo | chrislusf | 1 | -0/+1 | |
| 2015-03-09 | Add logo | chrislusf | 1 | -0/+0 | |
| 2015-03-09 | Add read only public port on volume server | chrislusf | 12 | -74/+71 | |
| Add read only public port on volume server | |||||
| 2015-03-09 | adding special handling to recover data if possible | chrislusf | 1 | -4/+26 | |
| For bug #87 and #93, add special handling to recover data if possible. | |||||
| 2015-03-09 | Avoid wrong way to delete on replication failure | chrislusf | 3 | -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-09 | adjust log printing | chrislusf | 3 | -11/+10 | |
| 2015-03-08 | Merge pull request #95 from stuartpb/patch-4 | chrislusf | 1 | -18/+18 | |
| Consolidate toward name SeaweedFS | |||||
| 2015-03-06 | Consolidate toward name SeaweedFS | Stuart P. Bentley | 1 | -18/+18 | |
| This updates README.md to consistently use the name "SeaweedFS", per #94. | |||||
| 2015-03-05 | Merge pull request #97 from stuartpb/patch-6 | chrislusf | 1 | -7/+15 | |
| Update Google Code wiki links to point to GitHub wiki | |||||
| 2015-03-05 | Update Google Code wiki links to point to GitHub wiki | Stuart P. Bentley | 1 | -7/+15 | |
| 2015-03-04 | Merge pull request #96 from stuartpb/patch-5 | chrislusf | 18 | -2397/+8 | |
| Use GitHub Wiki for docs | |||||
| 2015-03-04 | Use GitHub Wiki for docs | Stuart P. Bentley | 18 | -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-26 | Merge branch 'master' of github.com:chrislusf/weed-fs | Chris Lu | 4 | -6/+11 | |
| 2015-02-26 | a 0.69 beta release | Chris Lu | 1 | -1/+1 | |
| 2015-02-25 | display admin url on /dir/status | chrislusf | 1 | -0/+1 | |
| 2015-02-25 | adjust debug message | chrislusf | 1 | -1/+1 | |
| 2015-02-25 | set default volume admin port | chrislusf | 1 | -4/+7 | |
| 2015-02-25 | avoid auto unzip tar.gz files | chrislusf | 1 | -1/+2 | |
| fix https://github.com/chrislusf/weed-fs/issues/90 | |||||
| 2015-02-25 | Merge branch 'master' of github.com:chrislusf/weed-fs | Chris Lu | 1 | -1/+2 | |
| 2015-02-25 | Separate read and write volume handlers. | Chris Lu | 4 | -312/+369 | |
| 2015-02-20 | Show returned content when can not parse son | chrislusf | 1 | -1/+2 | |
| 2015-02-12 | Redirect to publicUrl | chrislusf | 1 | -1/+1 | |
| Redirect to publicUrl | |||||
| 2015-02-12 | Fix compilation error | chrislusf | 1 | -1/+1 | |
| 2015-02-12 | ensure non empty volume publicUrl | chrislusf | 1 | -0/+3 | |
