aboutsummaryrefslogtreecommitdiff
path: root/weed/operation/sync_volume.go
AgeCommit message (Collapse)AuthorFilesLines
2022-07-29move to https://github.com/seaweedfs/seaweedfschrislu1-2/+2
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-1/+2
2020-02-25avoid reusing context objectChris Lu1-2/+2
fix https://github.com/chrislusf/seaweedfs/issues/1182
2020-01-26use the same context object in order to retryChris Lu1-2/+2
2019-03-25remove deprecated codeChris Lu1-41/+0
2019-03-23weed volume: add grpc operation to relicate a volume to localChris Lu1-2/+2
2019-02-20avoid grpc 5 seconds timeoutChris Lu1-7/+3
some operations may take longer than 5 seconds. only keep the timeout for raft operations
2019-02-18adding grpc mutual tlsChris Lu1-4/+5
2019-01-10Set timeout for master and volume non-streaming rpcchenwanli1-1/+5
2018-12-22streaming updates for large entries or large index fileChris Lu1-3/+18
fix https://github.com/chrislusf/seaweedfs/issues/801
2018-10-15migrate volume sync to gRpcChris Lu1-14/+21
2018-10-15migrate volume sync status to grpc API on volume serverChris Lu1-28/+11
2018-07-21go fmtChris Lu1-3/+3
2018-07-08refactoring: add type for needle id, offsetChris Lu1-5/+6
later the type size can possibly be adjusted
2016-06-02directory structure change to work with glideChris Lu1-0/+54
glide has its own requirements. My previous workaround caused me some code checkin errors. Need to fix this.