Skip to content

precog/quasar-plugin-avalanche

Repository files navigation

Quasar Avalanche Plugins Discord

Datasource Configuration

JSON configuration required for constructing an Avalanche datasource.

{
  "connection": <connection-configuration>
}

Connection Configuration

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 properties
    • user/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)