You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rust/CHANGELOG.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file.
3
3
4
4
This project adheres to [Semantic Versioning](http://semver.org/).
5
5
6
+
## [v0.6.0] - September 19, 2025
7
+
### What's New
8
+
#### SiftStream Async Backup Manager
9
+
A new recovery strategy `RecoveryStrategy::RetryWithBackups` has been developed for SiftStream which is designed to be a more robust backup method than the existing `RetryWithDiskBackups` method.
10
+
- Uses rolling backup files (default to 500 MiB and an unlimited file count). By default these files are removed once a checkpoint passes, indicating that Sift has successfully recieved all incoming data, but can also be retained indefinitely with the `retain_backups` option
11
+
- Backup file ingestion if the checkpoint fails is performed asynchronously and will not block live ingestion
12
+
- The existing `RecoveryStrategy::RetryWithDiskBackups` is being marked deprecated due to the new recovery strategy being considered a more robust method
13
+
-`RecoveryStrategy::RetryWithInMemoryBackups` is also being deprecated due to the lack of a known use case
14
+
#### SiftStream Asset/Run Tags and Metadata
15
+
Users now have the ability to add both tags and metadata when specifying a run, or for an asset during initilization of SiftStream.
16
+
-`RunForm` now includes the `metadata` field. Metadata can be easily defined using the `sift_rs::metadata` macro.
17
+
-`SiftStreamBuilder` now includes `add_asset_metadata` and `add_asset_tags`
18
+
- See the [SiftStream example](https://github.com/sift-stack/sift/blob/main/rust/crates/sift_stream/examples/quick-start/main.rs) for how tags and metadata can be added.
0 commit comments