aboutsummaryrefslogtreecommitdiff
path: root/weed/storage/volume_backup.go
AgeCommit message (Collapse)AuthorFilesLines
2025-06-16add version to volume protochrislu1-0/+2
2024-11-21display actual offset valuechrislu1-1/+1
2024-09-02fix volume.move io.EOF (#5960)wyang1-3/+10
2023-07-06minorchrislu1-2/+2
2022-07-29move to https://github.com/seaweedfs/seaweedfschrislu1-7/+7
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-10-11volume: find a non-empty offset when binary searching by timestampChris Lu1-4/+55
2021-10-11volume: find a non-empty offset when binary searching by timestampChris Lu1-0/+10
fix https://github.com/chrislusf/seaweedfs/issues/2364
2021-10-09adds more error messageChris Lu1-1/+2
2021-09-12change server address from string to a typeChris Lu1-1/+2
2021-02-07fix typo offset.ToAcutalOffset to offset.ToActualOffsetbingoohuang1-4/+4
2020-11-27read from volume index file directly instead of open a separate fileChris Lu1-21/+11
fix https://github.com/chrislusf/seaweedfs/issues/1640 read from volume index file directly instead of open a separate file, to ensure reading latest index entries.
2020-11-27volume: add "-dir.idx" option for separate index storageChris Lu1-6/+6
fix https://github.com/chrislusf/seaweedfs/issues/1265
2020-09-12do not idx file formatChris Lu1-1/+1
revert c9ab8d05fa9b425352ce978b5c5b5b0d71d787ad
2020-09-10fixes for reading deleted fidChris Lu1-1/+1
2020-08-18refactoringChris Lu1-1/+1
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-3/+1
2019-12-23shell: add ec.decode commandChris Lu1-5/+7
2019-12-06volume: dataFileAccessLock change to RW LockChris Lu1-2/+2
2019-10-29changed from os.file to backend.DataStorageBackendChris Lu1-8/+9
2019-10-22refactor ScanVolumeFileFrom()Chris Lu1-1/+1
2019-08-15avoid dead lock from dataFileAccessLockChris Lu1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/1043
2019-08-14volume: protect against nil needle mapChris Lu1-1/+4
fix @mastak reported nil problem in https://github.com/chrislusf/seaweedfs/issues/1037
2019-05-21volume: load ec shards during heartbeats to masterChris Lu1-2/+3
2019-04-19volume: atomic copying file, adds version and stopOffsetChris Lu1-1/+1
2019-04-19fix needle map entry sizeChris Lu1-13/+13
2019-04-18refactoringChris Lu1-4/+6
2019-04-18add VolumeStreamFollow, but not used yetChris Lu1-3/+3
2019-04-17refactoringChris Lu1-0/+253