Slide 1

Slide 1 text

Netty Montreal Java User Group Sean Sullivan May 21, 2024

Slide 2

Slide 2 text

Agenda πŸ“ About me πŸ“ Netty project πŸ“ Netty in action

Slide 3

Slide 3 text

About me Portland Oregon Java since 1996 open source contributor

Slide 4

Slide 4 text

Netty contributor

Slide 5

Slide 5 text

βœ… async-http-client βœ… reactor-netty βœ… Netflix Zuul βœ… Apache Pinot

Slide 6

Slide 6 text

Netty is open source

Slide 7

Slide 7 text

Netty at Netflix Netty Zuul AWS Cassandra Netty

Slide 8

Slide 8 text

Zuul is built on Netty

Slide 9

Slide 9 text

Zuul: Server.java

Slide 10

Slide 10 text

Zuul server channel initializer

Slide 11

Slide 11 text

Zuul channel handlers

Slide 12

Slide 12 text

Zuul: close on idle handler

Slide 13

Slide 13 text

Zuul: close on idle handler

Slide 14

Slide 14 text

Zuul push messaging

Slide 15

Slide 15 text

Zuul push messaging

Slide 16

Slide 16 text

Zuul: sendPushMessage

Slide 17

Slide 17 text

Let’s talk about Cassandra

Slide 18

Slide 18 text

Cassandra is built on Netty

Slide 19

Slide 19 text

Cassandra: SocketFactory.java

Slide 20

Slide 20 text

β€œNetty is an asynchronous event-driven network application framework”

Slide 21

Slide 21 text

πŸ“ Apache ActiveMQ Artemis πŸ“ Apache Bookkeeper πŸ“ Apache Camel πŸ“ Apache Cassandra πŸ“ Apache CXF πŸ“ Apache Druid

Slide 22

Slide 22 text

πŸ“ Apache Flink πŸ“ Apache NiFi πŸ“ Apache Pinot πŸ“ Apache Pulsar πŸ“ Apache Spark πŸ“ Apache Zookeeper

Slide 23

Slide 23 text

πŸ“ Armeria πŸ“ Micronaut πŸ“ Netflix Zuul πŸ“ OpenSearch

Slide 24

Slide 24 text

And many others… πŸ“ Apple Servicetalk πŸ“ Azure SDK for Java πŸ“ AWS SDK for Java (v2) πŸ“ async-http-client πŸ“ grpc-java πŸ“ Expedia Styx πŸ“ Play Framework πŸ“ reactor-netty πŸ“ vert.x πŸ“ gatling

Slide 25

Slide 25 text

why is Netty popular?

Slide 26

Slide 26 text

blocking I/O non blocking I/O

Slide 27

Slide 27 text

JDK 1.0 socket API

Slide 28

Slide 28 text

JDK NIO

Slide 29

Slide 29 text

No content

Slide 30

Slide 30 text

Netty core concepts βœ… io.netty.channel.Channel A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind

Slide 31

Slide 31 text

Netty core concepts βœ… io.netty.channel.ChannelPipeline A list of ChannelHandlers which handles or intercepts inbound events and outbound operations of a Channel

Slide 32

Slide 32 text

Netty core concepts βœ… io.netty.channel.ChannelHandler Handles an I/O event or intercepts an I/O operation, and forwards it to its next handler in its ChannelPipeline

Slide 33

Slide 33 text

Netty core concepts βœ… io.netty.buffer.ByteBuf A random and sequential accessible sequence of zero or more bytes

Slide 34

Slide 34 text

High performance buffer pool Netty 4 introduces a high-performance buffer pool which is a variant of jemalloc https://netty.io/wiki/new-and-noteworthy-in-4.0.html

Slide 35

Slide 35 text

High performance buffer pool βœ… Reduced GC pressure incurred by frequent allocation and deallocation of the buffers βœ… Reduced memory bandwidth consumption incurred when creating a new buffer which inevitably has to be filled with zeroes βœ… Timely deallocation of direct buffers https://netty.io/wiki/new-and-noteworthy-in-4.0.html

Slide 36

Slide 36 text

Netty uses native code

Slide 37

Slide 37 text

Platform specific libraries

Slide 38

Slide 38 text

Example: linux-aarch_64

Slide 39

Slide 39 text

Netty transports Core 🟒 JDK NIO Native transports 🟒 epoll 🟒 io_uring 🟒 kqueue

Slide 40

Slide 40 text

Netty optional libraries Native transports πŸ“ epoll transport πŸ“ io_uring transport πŸ“ kqueue transport Other πŸ“ tcnative boringssl πŸ“ brotli4j πŸ“ zstd-jni

Slide 41

Slide 41 text

Netty io_uring

Slide 42

Slide 42 text

io_uring support in Netflix Zuul βœ… https://github.com/Netflix/zuul/pull/1146

Slide 43

Slide 43 text

Socket options

Slide 44

Slide 44 text

DefaultSocketChannelConfig.java TCP_NODELAY

Slide 45

Slide 45 text

TCP_NODELAY https://brooker.co.za/blog/2024/05/09/nagle.html

Slide 46

Slide 46 text

TCP_NODELAY https://brooker.co.za/blog/2024/05/09/nagle.html The first thing I check when debugging latency issues in distributed systems is whether TCP_NODELAY is enabled

Slide 47

Slide 47 text

TCP_NODELAY https://brooker.co.za/blog/2024/05/09/nagle.html if you’re building a latency-sensitive distributed system running on modern datacenter-class hardware, enable TCP_NODELAY (disable Nagle’s algorithm) without worries

Slide 48

Slide 48 text

Netflix Zuul socket options https://github.com/Netflix/zuul/pull/1638

Slide 49

Slide 49 text

Netflix Zuul socket options https://github.com/Netflix/zuul/pull/1638

Slide 50

Slide 50 text

HTTP content compression

Slide 51

Slide 51 text

Netty compression support βœ… gzip βœ… snappy βœ… brotli βœ… zstd

Slide 52

Slide 52 text

HttpContentCompressor

Slide 53

Slide 53 text

zuul-integration-test

Slide 54

Slide 54 text

Netty pitfalls

Slide 55

Slide 55 text

Cookie class io.netty.handler.codec.http.Cookie io.netty.handler.codec.http.cookie.Cookie

Slide 56

Slide 56 text

HttpContentCompressor new HttpContentCompressor() new HttpContentCompressor((CompressorOptions[]) null)

Slide 57

Slide 57 text

Aborted (core dumped) Netty 4.1.98 + Epoll transport + Linux Netty and Java 21

Slide 58

Slide 58 text

https://netty.io/news/index.html Netty and Java 21

Slide 59

Slide 59 text

Netty resource leaks

Slide 60

Slide 60 text

https://netty.io/wiki/reference-counted-objects.html

Slide 61

Slide 61 text

https://netty.io/wiki/reference-counted-objects.html Since Netty version 4, the life cycle of certain objects are managed by their reference counts, so that Netty can return them (or their shared resources) to an object pool (or an object allocator) as soon as it is not used anymore.

Slide 62

Slide 62 text

β€œThe disadvantage of reference counting is that it is easy to leak the reference-counted objects” source: Netty wiki

Slide 63

Slide 63 text

Resource leaks are difficult to debug

Slide 64

Slide 64 text

Netflix Zuul 2.x September 2017

Slide 65

Slide 65 text

Netty resource leak detector Leak Detector levels: - DISABLED - SIMPLE - ADVANCED - PARANOID

Slide 66

Slide 66 text

Best practices to avoid leaks β€œRun your unit tests and integration tests at PARANOID leak detection level” https://netty.io/wiki/reference-counted-objects.html

Slide 67

Slide 67 text

run Zuul integration test with PARANOID leak detection?

Slide 68

Slide 68 text

Netflix Zuul leak detection

Slide 69

Slide 69 text

Netflix Zuul leak detection assertZeroLeaks()

Slide 70

Slide 70 text

Netflix Zuul leak detection IntegrationTest.java

Slide 71

Slide 71 text

Netflix Zuul leak detection

Slide 72

Slide 72 text

implement a JUnit 5 Extension?

Slide 73

Slide 73 text

https://github.com/nettyplus/netty-leak-detector-junit-extension

Slide 74

Slide 74 text

No content

Slide 75

Slide 75 text

JUnit 5 example pom.xml

Slide 76

Slide 76 text

JUnit 5 example

Slide 77

Slide 77 text

NettyLeakDetectorExtension

Slide 78

Slide 78 text

βœ… https://github.com/AsyncHttpClient/async-http-client/pull/1932

Slide 79

Slide 79 text

https://github.com/reactor/reactor-netty/pull/3064

Slide 80

Slide 80 text

Let’s talk about Apache Pinot

Slide 81

Slide 81 text

Pinot uses Netty

Slide 82

Slide 82 text

Pinot: QueryServer.java

Slide 83

Slide 83 text

Pinot leak detection βœ… https://github.com/apache/pinot/pull/12483

Slide 84

Slide 84 text

https://github.com/apache/pinot/pull/12577 Native transports

Slide 85

Slide 85 text

Let’s talk about security

Slide 86

Slide 86 text

CVE-2023-44487 β€œHTTP 2 Rapid Reset” October 2023

Slide 87

Slide 87 text

October 2023

Slide 88

Slide 88 text

HTTP/2 Rapid Reset β€œEnsure relevant web server and operating system patches are deployed across all Internet-facing Web Servers”

Slide 89

Slide 89 text

Netty and HTTP/2 Rapid Reset October 10, 2023

Slide 90

Slide 90 text

Spring Boot and Netty

Slide 91

Slide 91 text

Spring Boot web servers πŸ”· JettyWebServer πŸ”· NettyWebServer πŸ”· UndertowWebServer πŸ”· TomcatWebServer

Slide 92

Slide 92 text

Spring Boot with Netty

Slide 93

Slide 93 text

Spring Boot example https://github.com/sullis/spring-boot-netty-playground

Slide 94

Slide 94 text

what’s next for Netty?

Slide 95

Slide 95 text

Netty πŸ”΅ Netty 4.2 πŸ”΅ Netty 5.0

Slide 96

Slide 96 text

Netty 4.2 branch

Slide 97

Slide 97 text

Netty 4.2 and io_uring

Slide 98

Slide 98 text

Final thoughts βœ… Netty is everywhere βœ… Netty is extensible βœ… Netty is awesome

Slide 99

Slide 99 text

Questions?

Slide 100

Slide 100 text

The End

Slide 101

Slide 101 text

Bonus content

Slide 102

Slide 102 text

Learning Netty

Slide 103

Slide 103 text

πŸ“˜ published December 2015 πŸ€“ covers Netty 4.x

Slide 104

Slide 104 text

StΓ©phane Landelle @ Devoxx Belgium 2023

Slide 105

Slide 105 text

Dinesh Joshi @ Devoxx Ukraine 2018

Slide 106

Slide 106 text

Norman Maurer @ Devoxx Belgium 2016