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
Background: When WAL (Write-Ahead Logging) is gracefully shut down, a significant number of write requests are directly interrupted.
com.automq.stream.s3.wal.impl.block.BlockWALService#shutdownGracefully
Optimization: Should we consider notifying the unfinished requests in real-time during the shutdown process? Especially when we view requests as listeners in the Observer pattern, it becomes even more crucial to send these notifications. One of the benefits of this approach is that it allows us to perceive the complete process of requests through logs or metrics.
The text was updated successfully, but these errors were encountered:
Background: When WAL (Write-Ahead Logging) is gracefully shut down, a significant number of write requests are directly interrupted.
com.automq.stream.s3.wal.impl.block.BlockWALService#shutdownGracefully
Optimization: Should we consider notifying the unfinished requests in real-time during the shutdown process? Especially when we view requests as listeners in the Observer pattern, it becomes even more crucial to send these notifications. One of the benefits of this approach is that it allows us to perceive the complete process of requests through logs or metrics.
The text was updated successfully, but these errors were encountered: