Hello:
I am running a process that builds an index by reading a relational database table containing over 26,000 rows.
The indexing process appears to have run successfully however after looking through the log file - which btw contains over 100KB of messages written by this process - I see a few java.net.ConnectException exceptions written to the file. They look like:
2018-06-28 13:25:40 DEBUG InternalHttpAsyncClient:333 - [exchange: 36] connection request failed
2018-06-28 13:25:40 DEBUG RestClient:92 - request [POST http://localhost:9201/_bulk?timeout=1m] failed
java.net.ConnectException: Connection refused: no further information
at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
at org.apache.http.impl.nio.reactor.DefaultConnectingIOReactor.processEvent(DefaultConnectingIOReactor.java:171)
at org.apache.http.impl.nio.reactor.DefaultConnectingIOReactor.processEvents(DefaultConnectingIOReactor.java:145)
at org.apache.http.impl.nio.reactor.AbstractMultiworkerIOReactor.execute(AbstractMultiworkerIOReactor.java:348)
at org.apache.http.impl.nio.conn.PoolingNHttpClientConnectionManager.execute(PoolingNHttpClientConnectionManager.java:192)
at org.apache.http.impl.nio.client.CloseableHttpAsyncClientBase$1.run(CloseableHttpAsyncClientBase.java:64)
at java.lang.Thread.run(Thread.java:748)
As I said it appears that all of the rows from the table have been indexed. Do I need to be concerned about this?
Thank you
Gary