Show HN: Building WebSocket in Apache Iggy with Io_uring and Completion Based IO
1–7 of 7 posts
Re: Show HN: Building WebSocket in Apache Iggy with Io_uring and Completion Based IO
#2Feels like the simplicity wins are made by only solving one half of the problem space (only writes), and it introduces new problems of its own (like how do we truncate the append-only log once readers are done with it?)
Re: Show HN: Building WebSocket in Apache Iggy with Io_uring and Completion Based IO
#3One thing I saw mentioned in the 0.5.0 release notes (which happened shortly after migrating to compio): trying to switch to a Sans-IO model design (but maybe just for clients?). It feels like there's similar ownership concerns that might arise, as seen here with the poll-vs-completion challenges faced here. A lot of good learnings to be had, as we go forth to faster better io, eager to keep tuning in & hearing more. Thanks for the write up! https://iggy.apache.org/blogs/2025/08/10/release-0.5.0/#what... https://www.firezone.dev/blog/sans-io
Re: Show HN: Building WebSocket in Apache Iggy with Io_uring and Completion Based IO
#4Having worked on a number of message brokers, but not really fucked with append-only log streams, what's the actually selling point here? Feels like the simplicity wins are made by only solving one half of the problem space (only writes), and it introduces new problems of its own (like how do we truncate the append-only log once readers are done with it?)
Re: Show HN: Building WebSocket in Apache Iggy with Io_uring and Completion Based IO
#5Fun write-up. Good stuff, very nice contribution to to compio of compio-ws. Looks like the Iggy switched to thread-per-core compio back in July. https://github.com/apache/iggy/pull/1960 One thing I saw mentioned in the 0.5.0 release notes (which happened shortly after migrating to compio): trying to switch to a Sans-IO model design (but maybe just for clients?). It feels like there's similar ownership concerns that m…
Sans-IO is for clients only, and we'd like to introduce it one day to SDK to support the different runtimes as well as the blocking, sync client.
Re: Show HN: Building WebSocket in Apache Iggy with Io_uring and Completion Based IO
#6Re: Show HN: Building WebSocket in Apache Iggy with Io_uring and Completion Based IO
#7Krishna is a high quality engineer, pretty happy to see the good work he is doing on Iggy. Pretty excited with the future of the project as well.