Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 23 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ All significant changes to this project will be documented in this file.

## Unreleased

## v0.2.1 (2025-04-24)

### New Features

* Support setting disk io throttle:

```toml
[storage.disk_throttle]
write_iops = 1000
read_iops = 1000
write_throughput = 16_777_216 # 16 MiB per second
read_throughput = 16_777_216 # 16 MiB per second

[storage.disk_throttle.iops_counter]
mode = "per_io" # or "per_io_size"
# size = 1024 # size in bytes if mode = "per_io_size"
```

## v0.2.0 (2025-04-24)

### Breaking Changes
Expand All @@ -14,23 +32,23 @@ All significant changes to this project will be documented in this file.

### Bug Fixes

* Fixed the issue that percas cannot limit memory usage as expected.
* Fix the issue that percas cannot limit memory usage as expected.

## v0.1.3 (2025-04-23)

### Bug Fixes

* Fixed the issue that percas node may use different advertised address than the one in the config file after restart.
* Fix the issue that percas node may use different advertised address than the one in the config file after restart.

## v0.1.2 (2025-04-22)

### Improvements

* Added rate limiter to reject unprocessable requests.
* Improved default configuration for foyer.
* Add rate limiter to reject unprocessable requests.
* Improve default configuration for foyer.

## v0.1.1 (2025-04-21)

### New Features

* Added support for propagate environment variables to server config.
* Support propagate environment variables to server config.
Loading
Loading