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

set min thread stack size to 1 MB #17317

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/daemon/main.c
Expand Up @@ -2023,6 +2023,9 @@ int main(int argc, char **argv) {

// setup threads configs
default_stacksize = netdata_threads_init();
// musl default thread stack size is 128k, let's set it to a higher value to avoid random crashes
if (default_stacksize < 1 * 1024 * 1024)
default_stacksize = 1 * 1024 * 1024;

#ifdef NETDATA_INTERNAL_CHECKS
config_set_boolean(CONFIG_SECTION_PLUGINS, "netdata monitoring", true);
Expand Down