########################################
# Misc Socket Configuration
########################################
#
# The time in milliseconds for socket timeouts.
# Timeouts during the initialization, handshake, or
# a server ping may be treated as an error.
#
# This is the lower bound for all other timeouts
# the JDBC login timeout.
#
# Typically this should be left at the default of 1000
# (1 second). Setting this value too low may cause read
# errors.
#
org.teiid.sockets.soTimeout=1000
#
# Set the max time to live (in milliseconds) for non-execution
# synchronous calls.
#
org.teiid.sockets.synchronousttl=240000
#
# Set the socket receive buffer size (in bytes)
# 0 indicates that the default socket setting will be used.
#
org.teiid.sockets.receiveBufferSize=0
#
# Set the socket send buffer size (in bytes)
# 0 indicates that the default socket setting will be used.
#
org.teiid.sockets.sendBufferSize=0
#
# Set to true to enable Nagle's algorithm to conserve bandwidth
# by minimizing the number of segments that are sent.
#
org.teiid.sockets.conserveBandwidth=false
#
# Maximum number of bytes per server message.
# May need to be increased when using custom types and/or large batch sizes.
#
org.teiid.sockets.maxObjectSize=33554432
Additional Socket Client Settings
A teiid-client-settings.properties
file can be used to configure Data Virtualization low level and SSL connection properties.
Currently only a single properties file is expected per driver/classloader combination.
A sample teiid-client-settings.properties
file can be found inside the teiid-<version>-client.jar
file at the root called teiid-client-settings.orig.properties
.
To customize the settings, extract this file, make a copy, change the property values accordingly, and place this file in the client application’s classpath before the teiid-<version>-client.jar" file
.
Typically clients will not need to adjust the non-SSL properties.
The following properties are available:
Note
|
All properties listed in "teiid-client-settings.properties" can also be set as System or env properties. |