Hi, I did a full-import of an entity city and should have Indexed 1,510,000 documents as in the source. The UI has the status of "Indexing completed. Added/Updated: 1510000 documents. Deleted 0 documents. (Duration: 33s)"
After a while, the source got new documents and I am expecting a second additional 160,000 of changed documents. However, when I query the count, I've got only 10000. The log has error that I can't find answer from google, which is at the end of this email. I am guessing something disrupted the Indexing. What is it and how to correct it? query count of core p4a { "responseHeader":{ "status":0, "QTime":0, "params":{ "q":"*:*", "indent":"true", "q.op":"OR", "rows":"0", "_":"1701848047557"}}, "response":{"numFound":10000,"start":0,"numFoundExact":true,"docs":[] }} The config is the following <dataConfig> <dataSource type="JdbcDataSource" driver="org.postgresql.Driver" url="jdbc:postgresql://localhost/world" user="solrpull" password="WorkingPassword"/> <document> <entity name ="findDelta" query ="select id FROM city WHERE update_at > TO_TIMESTAMP('${dih.last_index_time}', 'YYYY-MM-DD, HH24:MI:SS') - INTERVAL '180 day' " rootEntity ="false" > </entity> <entity name ="city" pk ="id" query ="select id, name, update_at FROM city WHERE ( '${dataimporter.request.clean}' = 'true' OR update_at > TO_TIMESTAMP('${dih.last_index_time}', 'YYYY-MM-DD, HH24:MI:SS') - INTERVAL '180 day' )" > <field column="id" name="id"/> <field column="name" name="name"/> <field column="update_at" name="update_at"/> </entity> </document></dataConfig> The 2nd time Raw Status-Output is { "responseHeader": { "status": 0, "QTime": 0 }, "initArgs": [ "defaults", [ "config", "db-data-config.xml" ] ], "command": "status", "status": "idle", "importResponse": "", "statusMessages": { "Total Requests made to DataSource": "2", "Total Rows Fetched": "753718", "Total Documents Processed": "376859", "Total Documents Skipped": "0", "Full Dump Started": "2023-12-06 07:36:34", "": "Indexing completed. Added/Updated: 376859 documents. Deleted 0 documents.", "Committed": "2023-12-06 07:36:44", "Time taken": "0:0:10.57" } } The log has the error that I can't find from google. 2023-12-06 07:36:34.157 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.DataImporter Loading DIH Configuration: db-data-config.xml 2023-12-06 07:36:34.158 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.c.DIHConfiguration id is a required field in SolrSchema . But not found in DataConfig 2023-12-06 07:36:34.159 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.DataImporter Data Configuration loaded successfully 2023-12-06 07:36:34.159 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.DataImporter Starting Full Import 2023-12-06 07:36:34.163 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.SimplePropertiesWriter Read dataimport.properties 2023-12-06 07:36:34.167 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.JdbcDataSource Creating a connection for entity findDelta with URL: jdbc:postgresql://localhost/world 2023-12-06 07:36:34.200 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.JdbcDataSource Time taken for getConnection(): 33 2023-12-06 07:36:34.871 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.JdbcDataSource Creating a connection for entity city with URL: jdbc:postgresql://localhost/world 2023-12-06 07:36:34.898 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.JdbcDataSource Time taken for getConnection(): 27 2023-12-06 07:36:36.231 INFO (qtp548482954-66) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={core=p4a&debug=true&indent=on&commit=true&name=dataimport&clean=false&rows=9999999&wt=json&command=full-import&_=1701847947387&verbose=true} status=0 QTime=0 2023-12-06 07:36:36.234 INFO (qtp548482954-86) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:38.414 INFO (qtp548482954-86) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:39.927 INFO (qtp548482954-66) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:40.546 INFO (qtp548482954-86) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:41.123 INFO (qtp548482954-66) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:41.623 INFO (qtp548482954-86) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:41.778 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.DocBuilder Import completed successfully 2023-12-06 07:36:42.109 INFO (qtp548482954-66) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:42.538 INFO (qtp548482954-86) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:42.980 INFO (qtp548482954-66) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:43.368 INFO (qtp548482954-86) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:43.762 INFO (qtp548482954-66) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:44.133 INFO (qtp548482954-86) [ x:p4a] o.a.s.c.S.Request [p4a] webapp=/solr path=/dataimport params={indent=on&wt=json&command=status&_=1701847947387} status=0 QTime=0 2023-12-06 07:36:44.181 INFO (searcherExecutor-45-thread-1-processing-x:p4a) [ x:p4a] o.a.s.c.QuerySenderListener QuerySenderListener done. 2023-12-06 07:36:44.183 INFO (searcherExecutor-45-thread-1-processing-x:p4a) [ x:p4a] o.a.s.c.SolrCore [p4a] Registered new searcher autowarm time: 0 ms 2023-12-06 07:36:44.219 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.SimplePropertiesWriter Read dataimport.properties 2023-12-06 07:36:44.220 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.SimplePropertiesWriter Wrote last indexed time to dataimport.properties 2023-12-06 07:36:44.220 INFO (qtp548482954-31) [ x:p4a] o.a.s.h.d.DocBuilder Time taken = 0:0:10.57 2023-12-06 07:36:44.220 INFO (qtp548482954-31) [ x:p4a] o.a.s.u.p.LogUpdateProcessorFactory [p4a] webapp=/solr path=/dataimport params={core=p4a&debug=true&indent=on&commit=true&name=dataimport&clean=false&rows=9999999&wt=json&command=full-import&_=1701847947387&verbose=true}{add=[8904 (1784517172815462400), 670 (1784517172823851008), 6054 (1784517172823851009), 4999 (1784517172823851010), 3956 (1784517172823851011), 8054 (1784517172823851012), 510 (1784517172823851013), 357 (1784517172823851014), 9655 (1784517172823851015), 3990 (1784517172824899584), ... (376859 adds)],commit=} 0 10065 2023-12-06 07:36:44.234 ERROR (qtp548482954-31) [ x:p4a] o.a.s.s.HttpSolrCall java.lang.RuntimeException: org.eclipse.jetty.io.EofException => java.lang.RuntimeException: org.eclipse.jetty.io.EofException at org.apache.solr.common.MapWriter$EntryWriter.putNoEx(MapWriter.java:103) java.lang.RuntimeException: org.eclipse.jetty.io.EofException at org.apache.solr.common.MapWriter$EntryWriter.putNoEx(MapWriter.java:103) ~[?:?] at org.apache.solr.common.MapWriter$EntryWriter.lambda$getBiConsumer$0(MapWriter.java:161) ~[?:?] at org.apache.solr.common.SolrInputDocument.lambda$writeMap$0(SolrInputDocument.java:59) ~[?:?] at java.util.LinkedHashMap.forEach(Unknown Source) ~[?:?] at org.apache.solr.common.SolrInputDocument.writeMap(SolrInputDocument.java:61) ~[?:?] at org.apache.solr.common.util.JsonTextWriter.writeMap(JsonTextWriter.java:164) ~[?:?] at org.apache.solr.common.util.TextWriter.writeMap(TextWriter.java:216) ~[?:?] at org.apache.solr.common.util.TextWriter.writeVal(TextWriter.java:69) ~[?:?] at org.apache.solr.response.TextResponseWriter.writeVal(TextResponseWriter.java:153) ~[?:?] at org.apache.solr.common.util.JsonTextWriter.writeJsonIter(JsonTextWriter.java:194) ~[?:?] at org.apache.solr.common.util.JsonTextWriter.writeArray(JsonTextWriter.java:277) ~[?:?] at org.apache.solr.common.util.TextWriter.writeVal(TextWriter.java:78) ~[?:?] at org.apache.solr.response.TextResponseWriter.writeVal(TextResponseWriter.java:153) ~[?:?] at org.apache.solr.common.util.JsonTextWriter.writeNamedListAsMapWithDups(JsonTextWriter.java:387) ~[?:?] at org.apache.solr.common.util.JsonTextWriter.writeNamedList(JsonTextWriter.java:293) ~[?:?] at org.apache.solr.response.JSONWriter.writeResponse(JSONWriter.java:73) ~[?:?] at org.apache.solr.response.JSONResponseWriter.write(JSONResponseWriter.java:66) ~[?:?] at org.apache.solr.response.QueryResponseWriterUtil.writeQueryResponse(QueryResponseWriterUtil.java:65) ~[?:?] at org.apache.solr.servlet.HttpSolrCall.writeResponse(HttpSolrCall.java:887) ~[?:?] at org.apache.solr.servlet.HttpSolrCall.call(HttpSolrCall.java:580) ~[?:?] at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:427) ~[?:?] at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:357) ~[?:?] at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:201) ~[jetty-servlet-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1601) ~[jetty-servlet-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:548) ~[jetty-servlet-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:143) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:600) ~[jetty-security-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:235) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1624) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1434) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:501) ~[jetty-servlet-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1594) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1349) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:191) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.InetAccessHandler.handle(InetAccessHandler.java:177) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.rewrite.handler.RewriteHandler.handle(RewriteHandler.java:322) ~[jetty-rewrite-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:763) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.Server.handle(Server.java:516) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:400) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:645) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:392) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at java.lang.Thread.run(Unknown Source) [?:?] Caused by: org.eclipse.jetty.io.EofException at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:279) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:831) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:555) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:927) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:999) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor$GzipBufferCB.process(GzipHttpOutputInterceptor.java:416) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.gzip(GzipHttpOutputInterceptor.java:139) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:121) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:285) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:269) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpOutput.write(HttpOutput.java:1054) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.apache.solr.servlet.ServletOutputStreamWrapper.write(ServletOutputStreamWrapper.java:126) ~[?:?] at org.apache.solr.response.QueryResponseWriterUtil$1.write(QueryResponseWriterUtil.java:54) ~[?:?] at java.io.OutputStream.write(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.writeBytes(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.implWrite(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.implWrite(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.write(Unknown Source) ~[?:?] at java.io.OutputStreamWriter.write(Unknown Source) ~[?:?] at org.apache.solr.common.util.FastWriter.flush(FastWriter.java:140) ~[?:?] at org.apache.solr.common.util.FastWriter.write(FastWriter.java:125) ~[?:?] at java.io.Writer.write(Unknown Source) ~[?:?] at org.apache.solr.response.JSONWriter._writeStr(JSONWriter.java:219) ~[?:?] at org.apache.solr.common.util.JsonTextWriter.writeStr(JsonTextWriter.java:133) ~[?:?] at org.apache.solr.common.util.JsonTextWriter.writeDate(JsonTextWriter.java:232) ~[?:?] at org.apache.solr.common.util.TextWriter.writeDate(TextWriter.java:163) ~[?:?] at org.apache.solr.common.util.TextWriter.writeVal(TextWriter.java:61) ~[?:?] at org.apache.solr.response.TextResponseWriter.writeVal(TextResponseWriter.java:153) ~[?:?] at org.apache.solr.common.util.JsonTextWriter$2.put(JsonTextWriter.java:176) ~[?:?] at org.apache.solr.common.MapWriter$EntryWriter.putNoEx(MapWriter.java:101) ~[?:?] ... 55 more Caused by: java.io.IOException: An established connection was aborted by the software in your host machine at sun.nio.ch.SocketDispatcher.writev0(Native Method) ~[?:?] at sun.nio.ch.SocketDispatcher.writev(Unknown Source) ~[?:?] at sun.nio.ch.IOUtil.write(Unknown Source) ~[?:?] at sun.nio.ch.IOUtil.write(Unknown Source) ~[?:?] at sun.nio.ch.SocketChannelImpl.write(Unknown Source) ~[?:?] at java.nio.channels.SocketChannel.write(Unknown Source) ~[?:?] at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:273) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.WriteFlusher.flush(WriteFlusher.java:422) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.WriteFlusher.write(WriteFlusher.java:277) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.AbstractEndPoint.write(AbstractEndPoint.java:381) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpConnection$SendCallback.process(HttpConnection.java:831) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:555) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.sendResponse(HttpChannel.java:927) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:999) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor$GzipBufferCB.process(GzipHttpOutputInterceptor.java:416) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.IteratingCallback.processing(IteratingCallback.java:241) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.IteratingCallback.iterate(IteratingCallback.java:223) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.gzip(GzipHttpOutputInterceptor.java:139) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor.write(GzipHttpOutputInterceptor.java:121) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:285) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpOutput.channelWrite(HttpOutput.java:269) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpOutput.write(HttpOutput.java:1054) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.apache.solr.servlet.ServletOutputStreamWrapper.write(ServletOutputStreamWrapper.java:126) ~[?:?] at org.apache.solr.response.QueryResponseWriterUtil$1.write(QueryResponseWriterUtil.java:54) ~[?:?] at java.io.OutputStream.write(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.writeBytes(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.implWrite(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.implWrite(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.write(Unknown Source) ~[?:?] at java.io.OutputStreamWriter.write(Unknown Source) ~[?:?] at org.apache.solr.common.util.FastWriter.flush(FastWriter.java:140) ~[?:?] at org.apache.solr.common.util.FastWriter.write(FastWriter.java:125) ~[?:?] at java.io.Writer.write(Unknown Source) ~[?:?] at org.apache.solr.response.JSONWriter._writeStr(JSONWriter.java:219) ~[?:?] at org.apache.solr.common.util.JsonTextWriter.writeStr(JsonTextWriter.java:133) ~[?:?] at org.apache.solr.common.util.JsonTextWriter.writeDate(JsonTextWriter.java:232) ~[?:?] at org.apache.solr.common.util.TextWriter.writeDate(TextWriter.java:163) ~[?:?] at org.apache.solr.common.util.TextWriter.writeVal(TextWriter.java:61) ~[?:?] at org.apache.solr.response.TextResponseWriter.writeVal(TextResponseWriter.java:153) ~[?:?] at org.apache.solr.common.util.JsonTextWriter$2.put(JsonTextWriter.java:176) ~[?:?] at org.apache.solr.common.MapWriter$EntryWriter.putNoEx(MapWriter.java:101) ~[?:?] ... 55 more 2023-12-06 07:36:44.235 INFO (qtp548482954-31) [ x:p4a] o.a.s.s.HttpSolrCall Unable to write response, client closed connection or we are shutting down => org.eclipse.jetty.io.EofException: Closed at org.eclipse.jetty.server.HttpOutput.checkWritable(HttpOutput.java:771) org.eclipse.jetty.io.EofException: Closed at org.eclipse.jetty.server.HttpOutput.checkWritable(HttpOutput.java:771) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpOutput.write(HttpOutput.java:1007) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.apache.solr.servlet.ServletOutputStreamWrapper.write(ServletOutputStreamWrapper.java:126) ~[?:?] at org.apache.solr.response.QueryResponseWriterUtil$1.write(QueryResponseWriterUtil.java:54) ~[?:?] at java.io.OutputStream.write(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.writeBytes(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.implWrite(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.implWrite(Unknown Source) ~[?:?] at sun.nio.cs.StreamEncoder.write(Unknown Source) ~[?:?] at java.io.OutputStreamWriter.write(Unknown Source) ~[?:?] at org.apache.solr.common.util.FastWriter.flush(FastWriter.java:140) ~[?:?] at org.apache.solr.common.util.FastWriter.flushBuffer(FastWriter.java:154) ~[?:?] at org.apache.solr.response.TextResponseWriter.close(TextResponseWriter.java:83) ~[?:?] at org.apache.solr.response.JSONResponseWriter.write(JSONResponseWriter.java:68) ~[?:?] at org.apache.solr.response.QueryResponseWriterUtil.writeQueryResponse(QueryResponseWriterUtil.java:65) ~[?:?] at org.apache.solr.servlet.HttpSolrCall.writeResponse(HttpSolrCall.java:887) ~[?:?] at org.apache.solr.servlet.HttpSolrCall.sendError(HttpSolrCall.java:759) ~[?:?] at org.apache.solr.servlet.HttpSolrCall.call(HttpSolrCall.java:589) ~[?:?] at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:427) ~[?:?] at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:357) ~[?:?] at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:201) ~[jetty-servlet-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1601) ~[jetty-servlet-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:548) ~[jetty-servlet-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:143) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:600) ~[jetty-security-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:235) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1624) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1434) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:501) ~[jetty-servlet-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1594) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1349) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:191) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.InetAccessHandler.handle(InetAccessHandler.java:177) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:146) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.rewrite.handler.RewriteHandler.handle(RewriteHandler.java:322) ~[jetty-rewrite-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:763) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.Server.handle(Server.java:516) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:400) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:645) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:392) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277) ~[jetty-server-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) ~[jetty-io-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034) ~[jetty-util-9.4.44.v20210927.jar:9.4.44.v20210927] at java.lang.Thread.run(Unknown Source) [?:?]