| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-06-24 | Use request host info for master url if possible | chrislusf | 1 | -2/+8 | |
| Fix https://github.com/chrislusf/seaweedfs/issues/148 | |||||
| 2015-06-22 | allowing proxy to leader for volume id lookup then redirect to volume server | chrislusf | 1 | -1/+1 | |
| Fix https://github.com/chrislusf/seaweedfs/issues/154 | |||||
| 2015-06-02 | Easier variable names | chrislusf | 1 | -31/+32 | |
| 2015-06-02 | Fix compilation error!!! | chrislusf | 1 | -10/+11 | |
| 2015-06-01 | each command use its own options to avoid parameter collision | chrislusf | 3 | -45/+63 | |
| fix https://github.com/chrislusf/seaweedfs/issues/152 | |||||
| 2015-05-30 | Fix compilation error. | chrislusf | 1 | -2/+4 | |
| Fix for https://github.com/chrislusf/seaweedfs/issues/150 | |||||
| 2015-05-26 | Fix a possible index out of range error. Remove unnecessary caching. | chrislusf | 1 | -26/+12 | |
| 2015-05-26 | Add "weed backup" command. | chrislusf | 7 | -4/+183 | |
| This is a pre-cursor for asynchronous replication. | |||||
| 2015-05-25 | Adjust dir parameter default value. | chrislusf | 4 | -8/+8 | |
| 2015-05-25 | Remove old file | chrislusf | 1 | -477/+0 | |
| 2015-05-23 | Adjust log message | chrislusf | 1 | -1/+1 | |
| 2015-05-20 | Added -newer argument, which takes a date/time in RFC3339 format and | Denis Yeldandi | 1 | -2/+27 | |
| exports only files newer than this time | |||||
| 2015-05-17 | Adjust admin url pattern | chrislusf | 1 | -3/+3 | |
| 2015-05-16 | if mt != "application/octet-stream" | yanyiwu | 1 | -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-14 | More debug information for connecting to master | chrislusf | 1 | -0/+2 | |
| 2015-05-03 | break away from code.google.com | chrislusf | 3 | -3/+3 | |
| 2015-04-20 | [ui] BUG FIXED: Concurrent Connections incorrect. | yanyiwu | 1 | -1/+1 | |
| 2015-04-20 | More readable peers usage: | yanyiwu | 1 | -1/+1 | |
| other master nodes in comma separated ip:port list, example: 127.0.0.1:9333,127.0.0.1:9334 Add example to prompt ip:port list is split by ',' | |||||
| 2015-04-19 | FIXED: When RaftServer cannot find a leader, Return a more readable error. | yanyiwu | 1 | -1/+6 | |
| Before: curl -F "file=1234" "http://127.0.0.1:9333/submit" {"error":"Post http:///dir/assign: http: no Host in request URL"} After: curl -F "file=1234" "http://127.0.0.1:9333/submit" {"error":"Raft Server not initialized!"} | |||||
| 2015-04-18 | [ui] seaweedfs logo and icon | yanyiwu | 2 | -2/+10 | |
| 2015-04-16 | Fix a couple more weedfs -> SeaweedFS instances | Stuart P. Bentley | 2 | -3/+3 | |
| Apparently I forgot to save these files before submitting #121 | |||||
| 2015-04-16 | More consistency with SeaweedFS name | Stuart P. Bentley | 8 | -16/+16 | |
| Among the changes, this replaces a couple instances of "Seaweed File System" with "SeaweedFS", for the same reason that nobody says "Mongo Data Base". | |||||
| 2015-04-16 | Merge pull request #119 from stuartpb/fix-namesapce | chrislusf | 1 | -2/+2 | |
| Fix flat_namespace_filer.go implementing "FlatNamesapceFiler" | |||||
| 2015-04-16 | Fix flat_namespace_filer.go implementing "FlatNamesapceFiler" | Stuart P. Bentley | 1 | -2/+2 | |
| 2015-04-16 | Change all chrislusf/weed-fs links to point to chrislu/seaweedfs | Stuart P. Bentley | 33 | -569/+569 | |
| 2015-04-16 | Nomalize url before redirecting. | chrislusf | 2 | -2/+3 | |
| 2015-04-16 | Adjust publicUrl to volume server only. | chrislusf | 1 | -4/+0 | |
| Remove publicUrl from master server. | |||||
| 2015-04-16 | Adjust publicUrl to volume server only. | chrislusf | 1 | -4/+4 | |
| 2015-04-14 | skip directory listing when paginating files. | chrislusf | 1 | -1/+8 | |
| 2015-04-13 | Adding filer option disableDirListing | chrislusf | 4 | -3/+13 | |
| 2015-04-08 | Fix empty public url | chrislusf | 2 | -3/+6 | |
| 2015-04-06 | change count to uint64 to fix #109 | chrislusf | 1 | -2/+2 | |
| fix https://github.com/chrislusf/weed-fs/issues/109 | |||||
| 2015-03-29 | Adjust logging level. | chrislusf | 1 | -1/+1 | |
| 2015-03-29 | Add boltdb for volume needle map | chrislusf | 7 | -42/+63 | |
| 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 | add leveldb support for needle map | chrislusf | 6 | -19/+15 | |
| 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-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 | 6 | -8/+73 | |
| 2015-03-19 | Add Initial Seaweed File System UI | chrislusf | 7 | -1/+232 | |
| 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 | 9 | -22/+497 | |
| 2015-03-09 | Add read only public port on volume server | chrislusf | 4 | -48/+57 | |
| Add read only public port on volume server | |||||
| 2015-03-09 | Avoid wrong way to delete on replication failure | chrislusf | 1 | -1/+0 | |
| 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 | 2 | -9/+8 | |
| 2015-02-25 | set default volume admin port | chrislusf | 1 | -4/+7 | |
| 2015-02-25 | Separate read and write volume handlers. | Chris Lu | 4 | -312/+369 | |
| 2015-02-12 | Redirect to publicUrl | chrislusf | 1 | -1/+1 | |
| Redirect to publicUrl | |||||
| 2015-02-12 | Fix compilation error | chrislusf | 1 | -1/+1 | |
