Skip to content

Commit

Permalink
Release v1.10.0 (#1060)
Browse files Browse the repository at this point in the history
Signed-off-by: Monthon Klongklaew <[email protected]>
  • Loading branch information
monthonk authored Oct 15, 2024
1 parent 5954f53 commit 2b01616
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions mountpoint-s3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

## v1.10.0 (October 15, 2024)

### New features

* Mountpoint now automatically adjusts its prefetcher read window size based on available system memory. This reduces the risk of Mountpoint potentially consuming all available system memory in cases where a large number of file handles are read from concurrently. ([#1013](https://github.com/awslabs/mountpoint-s3/pull/1013))
Expand All @@ -10,6 +12,10 @@
Previously, multiple Mountpoint processes would write to the same log file causing log entries to be interleaved.
([#1041](https://github.com/awslabs/mountpoint-s3/pull/1041))

### Other changes

* When updating the local disk cache, Mountpoint now writes to disk asynchronously, without blocking the read path. The change favours cold cache reads but may result in additional initial cache misses in highly concurrent workloads. ([#1029](https://github.com/awslabs/mountpoint-s3/pull/1029))

## v1.9.1 (September 19, 2024)

### Other changes
Expand Down
2 changes: 1 addition & 1 deletion mountpoint-s3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mountpoint-s3"
version = "1.9.1"
version = "1.10.0"
edition = "2021"
license = "Apache-2.0"
publish = false
Expand Down

1 comment on commit 2b01616

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 2b01616 Previous: 5954f53 Ratio
time_to_first_byte_read 88.58092520000001 milliseconds 42.5131899 milliseconds 2.08

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.