iamsanjay commented on PR #3616:
URL: https://github.com/apache/solr/pull/3616#issuecomment-3270259145
```
gradlew test --tests DistributedDebugComponentTest.testTolerantSearch
-Dtests.seed=342AEE8784A833C -Dtests.locale=ff-Latn-GM -Dtests.timezone=Turkey
-Dtests.asserts=true -Dtests.file.encoding=UTF-8
```
```
2685 INFO (qtp1234249848-41-null-70) [n: c: s: r: x:collection1 t:null-70]
o.a.s.c.S.Request webapp=/solr path=/select
params={q=*:*&shards=127.0.0.1:4/solr/collection1,127.0.0.1:54990/solr/collection2,127.0.0.1:54990/solr/collection1&distrib=true&debug=true&shards.tolerant=false&fl=id,text&wt=javabin}
rid=null-70 status=500 QTime=1
2685 INFO (qtp1234249848-67) [n: c: s: r: x: t:null-70]
o.a.s.s.ServletUtils Could not consume full client request
=> org.eclipse.jetty.io.EofException
at
org.eclipse.jetty.http2.server.internal.HttpStreamOverHTTP2.onFailure(HttpStreamOverHTTP2.java:594)
org.eclipse.jetty.io.EofException: null
at
org.eclipse.jetty.http2.server.internal.HttpStreamOverHTTP2.onFailure(HttpStreamOverHTTP2.java:594)
~[jetty-http2-server-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.server.internal.HTTP2ServerConnection.onStreamFailure(HTTP2ServerConnection.java:225)
~[jetty-http2-server-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.server.HTTP2ServerConnectionFactory$HTTPServerSessionListener.onFailure(HTTP2ServerConnectionFactory.java:180)
~[jetty-http2-server-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.server.HTTP2ServerConnectionFactory$HTTPServerSessionListener.onReset(HTTP2ServerConnectionFactory.java:167)
~[jetty-http2-server-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.HTTP2Stream.notifyReset(HTTP2Stream.java:895)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at org.eclipse.jetty.http2.HTTP2Stream.onReset(HTTP2Stream.java:601)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at org.eclipse.jetty.http2.HTTP2Stream.process(HTTP2Stream.java:373)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at org.eclipse.jetty.http2.HTTP2Session.onReset(HTTP2Session.java:413)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.HTTP2Connection.onReset(HTTP2Connection.java:258)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.parser.BodyParser.notifyReset(BodyParser.java:139)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.parser.ResetBodyParser.onReset(ResetBodyParser.java:94)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.parser.ResetBodyParser.parse(ResetBodyParser.java:61)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at org.eclipse.jetty.http2.parser.Parser.parseBody(Parser.java:235)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at org.eclipse.jetty.http2.parser.Parser.parse(Parser.java:162)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.parser.ServerParser.parse(ServerParser.java:121)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.HTTP2Connection$HTTP2Producer.produce(HTTP2Connection.java:348)
~[jetty-http2-common-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.util.thread.strategy.AdaptiveExecutionStrategy.produceTask(AdaptiveExecutionStrategy.java:514)
~[jetty-util-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.util.thread.strategy.AdaptiveExecutionStrategy.tryProduce(AdaptiveExecutionStrategy.java:258)
~[jetty-util-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.util.thread.strategy.AdaptiveExecutionStrategy.produce(AdaptiveExecutionStrategy.java:195)
~[jetty-util-12.0.25.jar:12.0.25]
at
org.eclipse.jetty.http2.HTTP2Connection.produce(HTTP2Connection.java:210)
~[jetty-http2-common-12.0.25.jar:12.0.25]
```
Failing at!
```
static void consumeInputFully(HttpServletRequest req, HttpServletResponse
response) {
try {
Utils.readFully(req.getInputStream());
} catch (IOException e) {
if (req.getHeader(HttpHeader.EXPECT.asString()) != null &&
response.isCommitted()) {
log.debug("No input stream to consume from client");
} else {
log.info("Could not consume full client request", e);
}
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]