Michiel De Backker
Michiel De Backker
I took a stab at query federation in [backkem/datafusion-federation](https://github.com/backkem/datafusion-federation). It's loosely based on the discussion in apache/arrow-datafusion#970. I have a first example that cuts the plan into sub-plans and pushes...
The [Local Peer-to-Peer API](https://github.com/WICG/local-peer-to-peer) is the successor to the Local Devices API. It uses the same technical approach but has a more fleshed out [draft spec](https://wicg.github.io/local-peer-to-peer/). I made an experimental...
Why do you need getRemoteCertificates? Can't PeerConnection handle both stream muxing and encryption: - stream muxing: Just open multiple Data Channels. - encryption: Everything is sent over DTLS. The certificates...
For my understanding; what drove the original one message per stream design? Is it to avoid relying solely on the variable-length integer and CBOR for message framing?
After thinking about it more, I guess the stream-per-packet is done to avoid head-of-line blocking type issues. It seems RoQ also uses [this approach](https://www.ietf.org/archive/id/draft-ietf-avtcore-rtp-over-quic-11.html#section-5.2). They have some [notes on MAX_STREAMS](https://www.ietf.org/archive/id/draft-ietf-avtcore-rtp-over-quic-11.html#section-5.2.3)...