-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Memory leaks when running fluentd in TLS mode #2086
Comments
|
Thanks! I will wait for the change to make its way to a future release. |
repeatedly
added a commit
that referenced
this issue
Jul 27, 2018
server-helper: Fix connection leak by close timing issue. fix #2086
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
---- fluentd config -----
$ nc -vz localhost 24225
I can see server connections piling up under _server_connections. I verify that using the following command
$ curl -s "localhost:24220/api/plugins.json?debug=1"|jq .|grep -A 5 "_server_connections"
We use tcp health checks on our AWS NLB load balancers which sends tcp connections similar to what I did above manually which I think is resulting in a lot of dangling tcp connections. That in turn is leaking memory.
The text was updated successfully, but these errors were encountered: