JSON configuration required for constructing an Avalanche datasource.
{
"connection": <connection-configuration>
}
connection
: A connection configuration object
JSON configurating describing how to connect to an Avalanche cluster.
{
"jdbcUrl": String
[, "maxConcurrency": Number]
[, "maxLifetimeSecs": Number]
}
jdbcUrl
: an Avalanche JDBC URL, optionally including any of the following driver propertiesuser
/UID
password
/PWD
role
/ROLE
group
/GRP
dbms_user
/DBUSR
dbms_password
/DBPWD
compression
/COMPRESS
vnode_usage
/VNODE
encryption
/ENCRYPT
char_encode
/ENCODE
maxConcurrency
(optional): the maximum number of simultaneous connections to the database (default: 8)maxLifetimeSecs
(optional): the maximum lifetime, in seconds, of idle connections. If your database or infrastructure imposes any limit on idle connections, make sure to set this value to at most a few seconds less than the limit (default: 210 seconds)