|
|
|
|
|
by newpavlov
248 days ago
|
|
Thank you for a great overview! I wish HTTP3/QUIC was the "default option" and had much wider adoption. Unfortunately, software implementations of QUIC suffer from dealing with UDP directly. Every UDP packet involves one syscall, which is relatively expensive in modern times. And accounting for MTU further makes the situation ~64 times worse. In-kernel implementations and/or io-uring may improve this unfortunate situation, but today in practice it's hard to achieve the same throughput as with plain TCP. I also vaguely remember that QUIC makes load-balancing more challenging for ISPs, since they can not distinguish individual streams as with TCP. Finally, QUIC arrived a bit too late and it gets blocked in some jurisdictions (e.g. Russia) and corporate environments similarly to ESNI. |
|
EDIT: I found https://news.ycombinator.com/item?id=45387462 which is a way better discussion than what I wrote.