Upgrade to latest netty-tcnative to fix memory leak#13375
Merged
Conversation
Motivation: The last tcnative release contains a fix for a small memory leak. Modifications: Upgrade to latest version Result: No more small leak
normanmaurer
added a commit
that referenced
this pull request
May 7, 2023
Motivation: The last tcnative release contains a fix for a small memory leak. Modifications: Upgrade to latest version Result: No more small leak
lhotari
added a commit
to lhotari/pulsar
that referenced
this pull request
May 29, 2023
- Upgrade Netty to 4.1.93.Final and io_uring transport to 0.0.21.Final - includes netty-tcnative 2.0.61.Final Highlights: - Upgrade to latest netty-tcnative to fix memory leak in 4.1.93.Final netty/netty#13375 - native SSL implementation fixes in 4.1.91.Final https://twitter.com/normanmaurer/status/1642884593522032640 - performance improvements in 4.1.90.Final and 4.1.92.Final https://twitter.com/normanmaurer/status/1635671472566837248 https://twitter.com/normanmaurer/status/1650816576885538816 Release notes: https://netty.io/news/2023/03/14/4-1-90-Final.html https://netty.io/news/2023/04/03/4-1-91-Final.html https://netty.io/news/2023/04/25/4-1-92-Final.html https://netty.io/news/2023/05/25/4-1-93-Final.html
4 tasks
lhotari
added a commit
to lhotari/bookkeeper
that referenced
this pull request
May 29, 2023
- Upgrade Netty to 4.1.93.Final and io_uring transport to 0.0.21.Final - includes netty-tcnative 2.0.61.Final Highlights: - Upgrade to latest netty-tcnative to fix memory leak in 4.1.93.Final netty/netty#13375 - native SSL implementation fixes in 4.1.91.Final https://twitter.com/normanmaurer/status/1642884593522032640 - performance improvements in 4.1.90.Final and 4.1.92.Final https://twitter.com/normanmaurer/status/1635671472566837248 https://twitter.com/normanmaurer/status/1650816576885538816 Release notes: https://netty.io/news/2023/03/14/4-1-90-Final.html https://netty.io/news/2023/04/03/4-1-91-Final.html https://netty.io/news/2023/04/25/4-1-92-Final.html https://netty.io/news/2023/05/25/4-1-93-Final.html
eolivelli
pushed a commit
to apache/bookkeeper
that referenced
this pull request
May 31, 2023
- Upgrade Netty to 4.1.93.Final and io_uring transport to 0.0.21.Final - includes netty-tcnative 2.0.61.Final Highlights: - Upgrade to latest netty-tcnative to fix memory leak in 4.1.93.Final netty/netty#13375 - native SSL implementation fixes in 4.1.91.Final https://twitter.com/normanmaurer/status/1642884593522032640 - performance improvements in 4.1.90.Final and 4.1.92.Final https://twitter.com/normanmaurer/status/1635671472566837248 https://twitter.com/normanmaurer/status/1650816576885538816 Release notes: https://netty.io/news/2023/03/14/4-1-90-Final.html https://netty.io/news/2023/04/03/4-1-91-Final.html https://netty.io/news/2023/04/25/4-1-92-Final.html https://netty.io/news/2023/05/25/4-1-93-Final.html
zymap
pushed a commit
to apache/bookkeeper
that referenced
this pull request
Jun 19, 2023
- Upgrade Netty to 4.1.93.Final and io_uring transport to 0.0.21.Final - includes netty-tcnative 2.0.61.Final Highlights: - Upgrade to latest netty-tcnative to fix memory leak in 4.1.93.Final netty/netty#13375 - native SSL implementation fixes in 4.1.91.Final https://twitter.com/normanmaurer/status/1642884593522032640 - performance improvements in 4.1.90.Final and 4.1.92.Final https://twitter.com/normanmaurer/status/1635671472566837248 https://twitter.com/normanmaurer/status/1650816576885538816 Release notes: https://netty.io/news/2023/03/14/4-1-90-Final.html https://netty.io/news/2023/04/03/4-1-91-Final.html https://netty.io/news/2023/04/25/4-1-92-Final.html https://netty.io/news/2023/05/25/4-1-93-Final.html (cherry picked from commit f8d81f7)
dongjoon-hyun
pushed a commit
to apache/spark
that referenced
this pull request
Jun 28, 2023
### What changes were proposed in this pull request? This pr aims to upgrade netty from 4.1.92 to 4.1.93. ### Why are the changes needed? 1.v4.1.92 VS v4.1.93 netty/netty@netty-4.1.92.Final...netty-4.1.93.Final 2.The new version brings some bug fix, eg: - Reset byte buffer in loop for AbstractDiskHttpData.setContent ([#13320](netty/netty#13320)) - OpenSSL MAX_CERTIFICATE_LIST_BYTES option supported ([#13365](netty/netty#13365)) - Adapt to DirectByteBuffer constructor in Java 21 ([#13366](netty/netty#13366)) - HTTP/2 encoder: allow HEADER_TABLE_SIZE greater than Integer.MAX_VALUE ([#13368](netty/netty#13368)) - Upgrade to latest netty-tcnative to fix memory leak ([#13375](netty/netty#13375)) - H2/H2C server stream channels deactivated while write still in progress ([#13388](netty/netty#13388)) - Channel#bytesBefore(un)writable off by 1 ([#13389](netty/netty#13389)) - HTTP/2 should forward shutdown user events to active streams ([#13394](netty/netty#13394)) - Respect the number of bytes read per datagram when using recvmmsg ([#13399](netty/netty#13399)) 3.The release notes as follows: - https://netty.io/news/2023/05/25/4-1-93-Final.html 4.Why not upgrade to `4-1-94-Final` version? Because the return value of the 'threadCache()' (from `PoolThreadCache` to `PoolArenasCache`) method of the netty Inner class used in the 'arrow memory netty' version '12.0.1' has changed and belongs to break change, let's wait for the upgrade of the 'arrow memory netty' before upgrading to the '4-1-94-Final' version. The reference is as follows: https://github.com/apache/arrow/blob/6af660f48472b8b45a5e01b7136b9b040b185eb1/java/memory/memory-netty/src/main/java/io/netty/buffer/PooledByteBufAllocatorL.java#L164 https://github.com/netty/netty/blob/da1a448d5bc4f36cc1744db93fcaf64e198db2bd/buffer/src/main/java/io/netty/buffer/PooledByteBufAllocator.java#L732-L736 ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Pass GA. Closes #41681 from panbingkun/upgrade_netty. Authored-by: panbingkun <pbk1982@gmail.com> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
Ghatage
pushed a commit
to sijie/bookkeeper
that referenced
this pull request
Jul 12, 2024
- Upgrade Netty to 4.1.93.Final and io_uring transport to 0.0.21.Final - includes netty-tcnative 2.0.61.Final Highlights: - Upgrade to latest netty-tcnative to fix memory leak in 4.1.93.Final netty/netty#13375 - native SSL implementation fixes in 4.1.91.Final https://twitter.com/normanmaurer/status/1642884593522032640 - performance improvements in 4.1.90.Final and 4.1.92.Final https://twitter.com/normanmaurer/status/1635671472566837248 https://twitter.com/normanmaurer/status/1650816576885538816 Release notes: https://netty.io/news/2023/03/14/4-1-90-Final.html https://netty.io/news/2023/04/03/4-1-91-Final.html https://netty.io/news/2023/04/25/4-1-92-Final.html https://netty.io/news/2023/05/25/4-1-93-Final.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation:
The last tcnative release contains a fix for a small memory leak.
Modifications:
Upgrade to latest version
Result:
No more small leak