Skip to content
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

bin: config: Provide windows.maxstdio option for increasing I/O limit on Windows #9707

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
config: Add windows/. prefix into maxstdio parameter
Signed-off-by: Hiroshi Hatake <hiroshi@chronosphere.io>
  • Loading branch information
cosmo0920 committed Dec 30, 2024
commit 7c0b6149eac4f970f49922a82bd492a9df8d1574
2 changes: 1 addition & 1 deletion include/fluent-bit/flb_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ enum conf_type {
#define FLB_CONF_STR_HOT_RELOAD_ENSURE_THREAD_SAFETY "Hot_Reload.Ensure_Thread_Safety"

/* Set up maxstdio (Windows) */
#define FLB_CONF_STR_MAX_STDIO "Max_Stdio"
#define FLB_CONF_STR_WINDOWS_MAX_STDIO "windows.maxstdio"

/* DNS */
#define FLB_CONF_DNS_MODE "dns.mode"
Expand Down
2 changes: 1 addition & 1 deletion src/flb_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ struct flb_service_config service_configs[] = {
#endif

#ifdef FLB_SYSTEM_WINDOWS
{FLB_CONF_STR_MAX_STDIO,
{FLB_CONF_STR_WINDOWS_MAX_STDIO,
FLB_CONF_TYPE_INT,
offsetof(struct flb_config, maxstdio)},
#endif
Expand Down
Loading