Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] "info" exception produced by the spdy connector

Michele,

looks like a bug to me.   You are receiving a data frame and somehow the ArrayQueue of content is full.

We should be sending back pressure to stop the sender sending data long before the queue fills up.

So can you open a bugzilla and give us more information.  It would be really good to know what kind up upload you are doing (file? form?) and how large.  A tcpdump capture would be really nice.











On 24 July 2014 22:26, Michele Rossi <michele.rossi@xxxxxxxxx> wrote:
hi all,

I am getting the exception below on my Jetty server.
Should I be worried about it?
Do you think it's a bug within the code or some sort of problem with the configuration?

I am using a standard jetty distribution with alpnboot-8.0.0.v20140317 and Java 1.8.0_11 on a 64bits Linux machine.

thanks,
Michele


13:18:01.239|qtp418304857-182|INFO |o.e.j.s.a.Stream| Exception while notifying listener org.eclipse.jetty.spdy.server.http.HTTPSPDYServerConnectionFactory$HTTPServerFrameListener@3b358819
java.lang.IllegalStateException: Full
        at org.eclipse.jetty.util.ArrayQueue.add(ArrayQueue.java:98) ~[jetty-util-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.server.QueuedHttpInput.content(QueuedHttpInput.java:57) ~[jetty-server-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.server.HttpChannel.content(HttpChannel.java:661) ~[jetty-server-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.server.http.HttpChannelOverSPDY.requestContent(HttpChannelOverSPDY.java:150) ~[spdy-http-server-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.server.http.HTTPSPDYServerConnectionFactory$HTTPServerFrameListener.onData(HTTPSPDYServerConnectionFactory.java:155) ~[spdy-http-server-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.StandardStream.notifyOnData(StandardStream.java:349) [spdy-core-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.StandardStream.process(StandardStream.java:280) [spdy-core-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.StandardSession.processData(StandardSession.java:465) [spdy-core-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.StandardSession.onDataFrame(StandardSession.java:438) [spdy-core-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.parser.Parser.notifyDataFrame(Parser.java:98) [spdy-core-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.parser.Parser$2.onDataFrame(Parser.java:62) [spdy-core-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.parser.DataFrameParser.onDataFrame(DataFrameParser.java:129) [spdy-core-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.parser.DataFrameParser.parse(DataFrameParser.java:106) [spdy-core-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.parser.Parser.parse(Parser.java:166) [spdy-core-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.client.SPDYConnection.read(SPDYConnection.java:103) [spdy-client-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.spdy.client.SPDYConnection.onFillable(SPDYConnection.java:78) [spdy-client-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.io.AbstractConnection$2.run(AbstractConnection.java:534) [jetty-io-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:607) [jetty-util-9.2.1.v20140609.jar:9.2.1.v20140609]
        at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:536) [jetty-util-9.2.1.v20140609.jar:9.2.1.v20140609]
        at java.lang.Thread.run(Thread.java:745) [na:1.8.0_11]
1


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


Back to the top