mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
disable FIN-packing optimization, increasing transfer rate by 5%
This commit is contained in:
parent
934fc5b6a0
commit
d837cd96b2
2 changed files with 9 additions and 40 deletions
|
@ -1,8 +1,6 @@
|
||||||
package quic
|
package quic
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"runtime"
|
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/flowcontrol"
|
"github.com/lucas-clemente/quic-go/flowcontrol"
|
||||||
"github.com/lucas-clemente/quic-go/frames"
|
"github.com/lucas-clemente/quic-go/frames"
|
||||||
"github.com/lucas-clemente/quic-go/protocol"
|
"github.com/lucas-clemente/quic-go/protocol"
|
||||||
|
@ -102,13 +100,7 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res []
|
||||||
|
|
||||||
data := s.getDataForWriting(maxLen)
|
data := s.getDataForWriting(maxLen)
|
||||||
|
|
||||||
// Here, stream.Write() may return in parallel. Afterwards, the user may
|
// This is unlikely, but check it nonetheless, the scheduler might have jumped in. Seems to happen in ~20% of cases in the tests.
|
||||||
// call stream.Close(). We want to pack the FIN into the same frame,
|
|
||||||
// so we speculatively allow the other goroutines to run.
|
|
||||||
// In tests, this increased the percentage of FINs packed into the same
|
|
||||||
// frame from ~20% to ~97%.
|
|
||||||
runtime.Gosched()
|
|
||||||
|
|
||||||
shouldSendFin := s.shouldSendFin()
|
shouldSendFin := s.shouldSendFin()
|
||||||
if data == nil && !shouldSendFin {
|
if data == nil && !shouldSendFin {
|
||||||
return true, nil
|
return true, nil
|
||||||
|
|
|
@ -2,7 +2,6 @@ package quic
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/frames"
|
"github.com/lucas-clemente/quic-go/frames"
|
||||||
"github.com/lucas-clemente/quic-go/protocol"
|
"github.com/lucas-clemente/quic-go/protocol"
|
||||||
|
@ -262,36 +261,14 @@ var _ = Describe("Stream Framer", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("bundles FINs with data", func() {
|
It("bundles FINs with data", func() {
|
||||||
// Since this is non-deterministic (see the comment in maybePopNormalFrames),
|
stream1.dataForWriting = []byte("foobar")
|
||||||
// we give it a few tries and assert that FINs were packed at least
|
stream1.closed = 1
|
||||||
// some times.
|
|
||||||
stream1.onData = func() {}
|
|
||||||
stream1.doneWritingOrErrCond.L = &stream1.mutex
|
|
||||||
const n = 1000
|
|
||||||
nFins := 0
|
|
||||||
for i := 0; i < n; {
|
|
||||||
go func() {
|
|
||||||
defer GinkgoRecover()
|
|
||||||
_, err := stream1.Write([]byte("foobar"))
|
|
||||||
Expect(err).NotTo(HaveOccurred())
|
|
||||||
stream1.Close()
|
|
||||||
}()
|
|
||||||
time.Sleep(time.Microsecond)
|
|
||||||
fs := framer.PopStreamFrames(1000)
|
fs := framer.PopStreamFrames(1000)
|
||||||
if len(fs) != 1 {
|
Expect(fs).To(HaveLen(1))
|
||||||
continue
|
|
||||||
}
|
|
||||||
Expect(fs[0].StreamID).To(Equal(stream1.streamID))
|
Expect(fs[0].StreamID).To(Equal(stream1.streamID))
|
||||||
if fs[0].FinBit {
|
Expect(fs[0].Data).To(Equal([]byte("foobar")))
|
||||||
nFins++
|
Expect(fs[0].FinBit).To(BeTrue())
|
||||||
}
|
})
|
||||||
stream1.closed = 0
|
|
||||||
stream1.finSent = false
|
|
||||||
stream1.dataForWriting = nil
|
|
||||||
i++
|
|
||||||
}
|
|
||||||
Expect(nFins).To(BeNumerically(">", n/2))
|
|
||||||
}, 5)
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue