-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for filesystem storage on Windows #1694
Comments
For those who interested in this feature: I started to tinker with |
any updates on this, pls? |
This task is being tracked by #2738. Hopefully we can make it |
Update: The support PR is submitted to #2810 (and fluent/chunkio/pull/59). |
Any plan for a release that will include this change? |
@qingling128 All the related patches are already in master. I expect it to be included in the next v1.7.0 release (due February). |
I see. I guess because it's a new feature, it will not be backported to |
@qingling128 Right. Since fluent/chunkio/pull/59 contains 1000+ LoC changes, FWIW, this is the milestone page for the next v1.7 release: |
Thanks for the info. That's very helpful! |
Task Summary
Implement file-chunk storage support using Win32 API.
The goal is to make the following configuration "just work" on Windows platforms.
[SERVICE] flush 1 log_Level info storage.path C:\FluentBit\Storage\ storage.sync normal storage.checksum off storage.backlog.mem_limit 5M
Memo
chunkio/cio_file.h
using Win32 API.The biggest blockage is the lack of
mmap()
on Windows.We need to find some way to share file data among multiple processes.
The text was updated successfully, but these errors were encountered: