You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using netty-tcnative with SslProvider.OPENSSL provider. I see a warning msg in GC log analyzer about finalizers which I am suspecting is mostly because of it.
[Warning] At one point 25872 objects were queued for finalization.
Using finalizers is not recommended as it can slow garbage collection and cause wasted space in the heap.
Consider reviewing your application for occurrences of the finalize() method.
I see Netty provides another option SslProvider.OPENSSL_REFCNT which does not have finalizers and instead implements ReferenceCounted.
I am wondering if it is a drop-in replacement of SslProvider.OPENSSL or if it needs more changes.
Is it production ready? I see it is marked as @UnstableApi. Any known side effects or issues?
Does it perform better than SslProvider.OPENSSL for low latency high throughput system?
I am using
netty-tcnative
withSslProvider.OPENSSL
provider. I see a warning msg in GC log analyzer aboutfinalizers
which I am suspecting is mostly because of it.I see Netty provides another option
SslProvider.OPENSSL_REFCNT
which does not have finalizers and instead implements ReferenceCounted.SslProvider.OPENSSL
or if it needs more changes.@UnstableApi
. Any known side effects or issues?SslProvider.OPENSSL
for low latency high throughput system?The text was updated successfully, but these errors were encountered: