valyala / fasthttp

Fast HTTP package for Go. Tuned for high performance. Zero memory allocations in hot paths. Up to 10x faster than net/http
MIT License
21.81k stars 1.76k forks source link

copyZeroAlloc allocates when interface uses genericWriteTo #1889

Open lunixbochs opened 2 hours ago

lunixbochs commented 2 hours ago

it looks like go's io.CopyBuffer always uses the WriterTo interface if it's available, much like copyZeroAlloc

however, File and TCPConn unfortunately have a fallback in their WriterTo that calls io.Copy if sendfile isn't possible, which allocates

https://github.com/golang/go/blob/15c558016088d6aaf103b4f0fd2b716a4573e5a2/src/net/net.go#L789 https://github.com/golang/go/blob/15c558016088d6aaf103b4f0fd2b716a4573e5a2/src/os/file.go#L274

lunixbochs commented 2 hours ago

this is with an os.File reaching writeBodyFixedSize

lunixbochs commented 1 hour ago

it doesn't look like the golang zero copy backend works with bufio.Writer at all, despite the comment here https://github.com/valyala/fasthttp/blob/40bdc4abc74e2760e4c3b3153b2d4c2357eb7f4e/http.go#L2205-L2211

the os.File writeTo implementation will see that the destination is not a network socket and immediately fall back to io.Copy: https://github.com/golang/go/blob/15c558016088d6aaf103b4f0fd2b716a4573e5a2/src/os/zero_copy_linux.go#L19

func (f *File) writeTo(w io.Writer) (written int64, handled bool, err error) {
    pfd, network := getPollFDAndNetwork(w)
    // TODO(panjf2000): same as File.spliceToFile.
    if pfd == nil || !pfd.IsStream || !isUnixOrTCP(string(network)) {
        return
    }

https://github.com/golang/go/blob/15c558016088d6aaf103b4f0fd2b716a4573e5a2/src/os/zero_copy_linux.go#L163

func getPollFDAndNetwork(i any) (*poll.FD, poll.String) {
    sc, ok := i.(syscall.Conn)
    if !ok {
        return nil, ""
    }