As of quic-go v0.19.x, you might see warnings about the receive buffer size.
    Experiments have shown that QUIC transfers on high-bandhwidth connections can be limited by the size of the UDP receive buffer. This buffer holds packets that have been received by the kernel, but not yet read by the application (quic-go in this case). Once this buffer fills up, the kernel will drop any new incoming packet.
    Therefore, quic-go tries to increase the buffer size. The way to do this is an OS-specific, and we currently have an implementation for linux, windows and darwin. However, an application is only allowed to do increase the buffer size up to a maximum value set in the kernel. Unfortunately, on Linux this value is rather small, too small for high-bandwidth QUIC transfers.
    It is recommended to increase the maximum buffer size by running:
    sysctl -w net.core.rmem_max=2500000
    This command would increase the maximum receive buffer size to roughly 2.5 MB.

    https://github.com/lucas-clemente/quic-go/wiki/UDP-Receive-Buffer-Size