aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_std.go
AgeCommit message (Collapse)AuthorFilesLines
2022-01-17workingchrislu1-0/+5
2022-01-11Update mount_std.gochrislu1-0/+1
2021-12-28mount: remove limits on number of parallel requestschrislu1-3/+3
2021-12-28fuse: change to direct io modechrislu1-1/+1
before and after: chrislu$ time dd if=/dev/random of=/Users/chrislu/tmp/mm/testfile bs=131072 count=8192 8192+0 records in 8192+0 records out 1073741824 bytes transferred in 4.534068 secs (236816430 bytes/sec) dd if=/dev/random of=/Users/chrislu/tmp/mm/testfile bs=131072 count=8192 0.01s user 3.86s system 84% cpu 4.561 total chrislu$ time dd if=/dev/random of=/Users/chrislu/tmp/mm/testfile bs=131072 count=8192 8192+0 records in 8192+0 records out 1073741824 bytes transferred in 3.824072 secs (280784948 bytes/sec) dd if=/dev/random of=/Users/chrislu/tmp/mm/testfile bs=131072 count=8192 0.01s user 3.22s system 83% cpu 3.857 total
2021-12-26use streaming mode for long poll grpc callschrislu1-1/+1
streaming mode would create separate grpc connections for each call. this is to ensure the long poll connections are properly closed.
2021-09-12change server address from string to a typeChris Lu1-13/+7
2021-09-01go fmtChris Lu1-0/+1
2021-06-06mount: adjust starting orderChris Lu1-0/+1
avoid possible nil wfs.Server
2021-06-02Return artificial . and .. directoriesPatrick Schmidt1-2/+27
2021-05-21FUSE mount: support multiple filersChris Lu1-10/+10
fix https://github.com/chrislusf/seaweedfs/issues/2015 fix https://github.com/chrislusf/seaweedfs/issues/1531
2021-04-18cleaner way to set readonlyChris Lu1-1/+3
2021-04-16remove unused variableChris Lu1-1/+0
2021-04-07remove mac specific mount optionsChris Lu1-2/+0
2021-04-04mount: add readOnly optionChris Lu1-0/+1
fix https://github.com/chrislusf/seaweedfs/issues/1961
2021-03-14go fmtChris Lu1-1/+1
2021-03-11mount: add a bit retry when connecting to filer during startupChris Lu1-7/+14
2021-03-02support IPv6Chris Lu1-1/+1
2021-02-16this can compile now!!!Chris Lu1-2/+2
2021-02-13disk type can be generic tagsChris Lu1-5/+1
2021-02-09Merge branch 'master' into support_ssd_volumeChris Lu1-27/+32
2021-01-28go fmtChris Lu1-10/+10
2021-01-28mount: change option name to volumeServerAccess, with publicUrl and ↵Chris Lu1-13/+13
filerProxy modes
2021-01-27match upstreamDaniel Santos1-1/+3
2021-01-26Fix log message with correct modeDaniel Santos1-1/+1
2021-01-26Fix var assignmentDaniel Santos1-1/+1
2021-01-26Enforce umask correctlyDaniel Santos1-4/+2
2021-01-26mount: properly invalidate kernel node cache entryChris Lu1-1/+3
fix https://github.com/chrislusf/seaweedfs/issues/1752
2021-01-25mount: avoid the need to specify different cache directory for different mountChris Lu1-0/+1
fix https://github.com/seaweedfs/seaweedfs-csi-driver/issues/11
2021-01-24mount: outsideContainerClusterMode proxy through filerChris Lu1-0/+1
Running mount outside of the cluster would not need to expose all the volume servers to outside of the cluster. The chunk read and write will go through the filer.
2021-01-24Revert "mount: when outside cluster network, use filer as proxy to access ↵Chris Lu1-1/+0
volume servers" This reverts commit 096e088d7bb2a5dce7573b24c2d3006d1cb6f9ec.
2021-01-24mount: when outside cluster network, use filer as proxy to access volume serversChris Lu1-0/+1
2021-01-20mount: limit background requests and congestion thresholdChris Lu1-0/+2
2020-12-29mount: load security keysChris Lu1-2/+1
fix https://github.com/chrislusf/seaweedfs/issues/1714
2020-12-16go fmtChris Lu1-1/+1
2020-12-13rename from volumeType to diskTypeChris Lu1-2/+2
2020-12-13adding volume typeChris Lu1-0/+8
2020-11-01move to util.RetryWaitTimeChris Lu1-3/+3
2020-10-30mount: optional limit for the number of concurrent writersChris Lu1-0/+1
2020-10-10mount: configurable read wait timeChris Lu1-0/+5
2020-10-03FUSE: use the mount directory permissionsChris Lu1-0/+27
2020-09-24mount: fix k8s pvc and os mount directory permission buglimd1-28/+0
2020-09-24mount: fix k8s pvc mount directory permissionlimd1-4/+2
2020-09-23mount: auto created dir set corrct umask fix buglimd1-2/+5
2020-09-23mount: auto created dir set corrct umaskChris Lu1-1/+1
2020-09-03mount: map uid/gid between local and filerChris Lu1-0/+9
2020-07-28FUSE mount: remove DirListCacheLimitChris Lu1-1/+0
outdated parameter
2020-07-16mount: resolve home directoryChris Lu1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/1391
2020-07-16stop if the directory can not be foundChris Lu1-2/+6
related to https://github.com/chrislusf/seaweedfs/issues/1391
2020-06-28removed async optionChris Lu1-1/+0
2020-06-28reverting and workingChris Lu1-0/+1