aboutsummaryrefslogtreecommitdiff
path: root/weed/command
AgeCommit message (Collapse)AuthorFilesLines
2020-02-14skip EOF messageChris Lu2-7/+7
now tcp Concurrency Level: 16 Time taken for tests: 22.963 seconds Complete requests: 1048576 Failed requests: 0 Total transferred: 1106755384 bytes Requests per second: 45663.49 [#/sec] Transfer rate: 47067.47 [Kbytes/sec] vs normal Concurrency Level: 16 Time taken for tests: 22.286 seconds Complete requests: 1048576 Failed requests: 0 Total transferred: 1106754345 bytes Requests per second: 47050.30 [#/sec] Transfer rate: 48496.88 [Kbytes/sec]
2020-02-14add tcp readChris Lu3-3/+77
Performance not so good. Could need some optimization. Concurrency Level: 16 Time taken for tests: 33.575 seconds Complete requests: 1048576 Failed requests: 0 Total transferred: 1106753375 bytes Requests per second: 31230.86 [#/sec] Transfer rate: 32191.03 [Kbytes/sec] vs normal http Concurrency Level: 16 Time taken for tests: 24.829 seconds Complete requests: 1048576 Failed requests: 0 Total transferred: 1106761259 bytes Requests per second: 42231.10 [#/sec] Transfer rate: 43529.78 [Kbytes/sec]
2020-02-14properly close http responseChris Lu1-0/+1
2020-02-14volume: add grpc file read operationChris Lu1-8/+49
This is added more for performance benchmarking.
2020-02-03master: add configurable volume growth toml settingChris Lu1-0/+9
2020-01-29adjust exampleChris Lu1-1/+1
2020-01-29support env variables to overwrite toml fileChris Lu13-43/+38
2020-01-26use the same context object in order to retryChris Lu1-1/+1
2020-01-25grpc send error via response instead of grpc errorChris Lu1-2/+2
2020-01-12correct commentsChris Lu1-2/+2
fix https://github.com/chrislusf/seaweedfs/issues/1181
2020-01-07fix compilation errorChris Lu1-1/+1
2020-01-06weed fix: add back .idx file generationChris Lu1-8/+7
2020-01-03volume: add option to limit file sizeChris Lu2-3/+9
2019-12-31filer: optional recursive deletionChris Lu1-4/+13
fix https://github.com/chrislusf/seaweedfs/issues/1176
2019-12-24compaction changed to .idx based deletionChris Lu2-2/+5
2019-12-24change btree map to in memory level dbChris Lu2-14/+10
2019-12-23shell: add ec.decode commandChris Lu3-10/+13
2019-12-21default redis reads optionsChris Lu1-2/+4
details in https://github.com/chrislusf/seaweedfs/pull/1165
2019-12-21default to false in scaffold.goChris Lu1-2/+2
2019-12-20Add readOnly and routeByLatency options to scaffold.goDakota Sullivan1-0/+2
2019-12-15upload skipping mimetype if not neededChris Lu1-1/+1
2019-12-13mount: rename to dirListCacheLimit to configure cache for long format ↵Chris Lu2-5/+5
directory list
2019-12-13filer: configurable directory list cache sizeChris Lu2-3/+3
2019-12-13filer: DeleteFolderChildren for deleting large foldersChris Lu1-9/+0
2019-12-10return meaningful error logChris Lu1-7/+9
2019-11-29pass backend config from master to volume serversChris Lu1-1/+0
2019-11-29Merge pull request #1145 from stlpmo-jn/volume_graceful_stopChris Lu1-32/+114
let volume server graceful stop
2019-11-29resolve the Duration.Milliseconds() is not exist in golang v11 & v12stlpmo1-4/+8
2019-11-28tweakingChris Lu1-1/+1
2019-11-28fix testChris Lu1-0/+2
2019-11-28master load backend storage config from master.tomlChris Lu3-7/+53
2019-11-28fix scaffold errorChris Lu1-2/+2
2019-11-27Merge pull request #1142 from iliul/wip-fuse-mountChris Lu4-6/+165
fuse: check mount point available before do runmount
2019-11-28fuse: adjust linux specific logicLei Liu2-2/+133
Signed-off-by: Lei Liu <lei01.liu@horizon.ai>
2019-11-27filer: support memsqlChris Lu1-0/+1
fix https://github.com/chrislusf/seaweedfs/issues/1141
2019-11-27go fmtLei Liu1-0/+2
Signed-off-by: Lei Liu <liul.stone@gmail.com>
2019-11-27fuse: check mount point available before do runmountLei Liu4-6/+32
1. Use more readable mount point information 2. Fix some typos eg: $ df -Th Filesystem Type Size Used Avail Use% Mounted on localhost:8888:/ fuse.seaweedfs 206G 512 206G 1% /mnt/weedfs $ mount | grep weedfs localhost:8888:/ on /mnt/weedfs type fuse.seaweedfs (rw,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other) Signed-off-by: Lei Liu <lei01.liu@horizon.ai>
2019-11-27typoChris Lu1-2/+2
2019-11-18WIPChris Lu1-0/+8
2019-11-17test passedstlpmo1-32/+110
2019-11-14refactoring scaffolding for master.tomlChris Lu1-3/+4
2019-11-12fix master maintenance logicLei Liu2-23/+3
Signed-off-by: Lei Liu <lei01.liu@horizon.ai>
2019-11-11Merge branch 'master' into refactoring_dat_backendChris Lu1-0/+7
2019-11-11ut passstlpmo2-3/+2
2019-11-11move from cmd-line to scaffoldstlpmo2-6/+8
2019-11-05delete the var etcdClient and commentsstlpmo1-0/+6
refactor the code add sequencer cmd-line delete nerver used codes
2019-10-29Merge branch 'master' into refactoring_dat_backendChris Lu3-3/+0
2019-10-29misc updatedLei Liu3-3/+0
Signed-off-by: Lei Liu <lei01.liu@horizon.ai>
2019-10-29changed from os.file to backend.DataStorageBackendChris Lu1-1/+1
2019-10-27FUSE: add os specific mount optionsChris Lu5-1/+37
related to https://github.com/chrislusf/seaweedfs/issues/1094