Flow control needs improvements.
This commit is contained in:
parent
20925ded97
commit
ac7aa4decc
|
@ -640,6 +640,10 @@ public abstract class HTTP2Session implements ISession, Parser.Listener
|
|||
{
|
||||
synchronized (queue)
|
||||
{
|
||||
// The session window size may vary concurrently upon receipt of
|
||||
// WINDOW_UPDATE or SETTINGS so we read it here and not in the loop.
|
||||
// The stream window size is read in the loop, but it's always
|
||||
// capped by the session window size.
|
||||
int sessionWindow = getWindowSize();
|
||||
int nonStalledIndex = 0;
|
||||
int size = queue.size();
|
||||
|
@ -663,8 +667,7 @@ public abstract class HTTP2Session implements ISession, Parser.Listener
|
|||
continue;
|
||||
}
|
||||
|
||||
if (stream != null)
|
||||
{
|
||||
// The stream may have a smaller window than the session.
|
||||
Integer streamWindow = streams.get(stream);
|
||||
if (streamWindow == null)
|
||||
{
|
||||
|
@ -677,11 +680,11 @@ public abstract class HTTP2Session implements ISession, Parser.Listener
|
|||
{
|
||||
flowControl.onStreamStalled(stream);
|
||||
++nonStalledIndex;
|
||||
// There may be *non* flow controlled frames to send.
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// We will be possibly writing this frame.
|
||||
queue.remove(nonStalledIndex);
|
||||
|
@ -888,12 +891,16 @@ public abstract class HTTP2Session implements ISession, Parser.Listener
|
|||
public void generate(ByteBufferPool.Lease lease)
|
||||
{
|
||||
DataFrame dataFrame = (DataFrame)frame;
|
||||
int windowSize = stream.getWindowSize();
|
||||
int frameLength = dataFrame.remaining();
|
||||
this.length = Math.min(frameLength, windowSize);
|
||||
generator.data(lease, dataFrame, length);
|
||||
int flowControlLength = dataFrame.remaining() + dataFrame.padding();
|
||||
|
||||
int streamWindowSize = stream.getWindowSize();
|
||||
int sessionWindowSize = getWindowSize();
|
||||
int windowSize = Math.min(streamWindowSize, sessionWindowSize);
|
||||
|
||||
length = Math.min(flowControlLength, windowSize);
|
||||
if (LOG.isDebugEnabled())
|
||||
LOG.debug("Generated {}, maxLength={}", dataFrame, length);
|
||||
generator.data(lease, dataFrame, length);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue