sirwio
sirwio
What is your ulimit setting for file descriptors? `ulimit -n` I have seen similar issues when the ulimit -n setting has been 1024 which e.g. is the default on Ubuntu...
This issue may be related to the one described here: https://github.com/fluent/fluent-bit/issues/8503
This is likely due to poor handling of upper boundary conditions of the tasks_map array defined in flb_config.h Increasing the size from 2048 -> 4096 increases the the limit of...
> sirwio I don't think https://github.com/fluent/fluent-bit/issues/8503 is the same issue. In my case, chunks keep accumulating. The log message is different too. I see the same as @carlosrmendes > "re-schedule...
Our initial tests using pull request #8601 is resolving the issues we have observed in #8503. More tests and corner cases need to be executed. Do notice a drop in...
Latest version of pull request #8601 resolves all issues we have observed earlier (since 1.6). High loads via tcp input plugin sent to opensearch plugin is working without issues.
While the pull request #64 addresses the issue on modern linux operating system it still fails on older linuxes e.g. Suse 11 SP4 ``` suse:/chunkio # ./cio -e 5 -p...
The problem may not be found with newer gcc compilers since they may compile with -fPIC by default. The issue was found when compiling with gcc version 4.4.7
This broke in the fixing of issue #7729 @leonardo-albertovich Can you take a look and comment if I have misunderstood something.