Skip to content

Commit

Permalink
Release 0.40.0
Browse files Browse the repository at this point in the history
* Refactor internal buffer list operations to improve read&write speed and
  code maintainability
* Retry unexpected EOFs during reads (S3 may drop the connection on
  temporary data unavailability)
* Do not use multipart copying for metadata-only updates
* Limit multipart copying parallelism to --max-parallel-parts instead of fixed 128
* Load metadata before changing it, otherwise it may be lost in non-yandex clouds
  • Loading branch information
vitalif committed Dec 22, 2023
1 parent fc391e8 commit 1f1f038
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
geesefs (0.40.0) unstable; urgency=medium

* Refactor internal buffer list operations to improve read&write speed and
code maintainability
* Retry unexpected EOFs during reads (S3 may drop the connection on
temporary data unavailability)
* Do not use multipart copying for metadata-only updates
* Limit multipart copying parallelism to --max-parallel-parts instead of fixed 128
* Load metadata before changing it, otherwise it may be lost in non-yandex clouds

-- Vitaliy Filippov <[email protected]> Fri, 22 Dec 2023 11:56:04 +0300

geesefs (0.39.1) unstable; urgency=medium

* Fix a memory leak in inodesByTime (evicted inodes were not removed from the map)
Expand Down
2 changes: 1 addition & 1 deletion internal/cfg/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
"github.com/urfave/cli"
)

const GEESEFS_VERSION = "0.39.1"
const GEESEFS_VERSION = "0.40.0"

var flagCategories map[string]string

Expand Down

0 comments on commit 1f1f038

Please sign in to comment.