Unexpected EOF on client connection
In Vertica log file, I am seeing following messages periodically-
Thanks,
Rupendra
2014-06-24 10:22:48.133 Init Session:0x7f54e0048930-c00000004e5114 <LOG> @v_dw_prod_1_node0003: 08006/2907: Could not send data to client: No such file or directory 2014-06-24 10:22:48.133 Init Session:0x7f54e0048930-c00000004e5114 <LOG> @v_dw_prod_1_node0003: 08006/5167: Unexpected EOF on client connectionHas anyone ever encountered similar situation?
Thanks,
Rupendra
0
Comments
To set the connection parameter ResultBufferSize to 0
------------------------------------------------------------------------
in odbc see the DSN Parameters page
in jdbc see the JDBC Connection Properties page
in ado.net see the ADO.Net cConnection Properties page
You can set this param value like below if using a java application:
Connection dbconn = mydataManager.getConnection( "jdbc:vertica://ipaddress:5433/dbname", "dbadmin", "password"); ((VerticaConnection)dbconn).setProperty("ResultBufferSize", "0" );
For GUI client apps you might have to find the client app's connection editing dialog and figure out how to pass it as a property/parameter, e.g. adding "?ResultBufferSize=0" to the JDBC url in the connection dialog something like "jdbc:vertica://hostname:5433/dbname?ResultBufferSize=0"