@qualithm/arrow-flight-sql-js - v0.4.3
    Preparing search index...

    Type Alias PoolOptions

    Connection pool configuration

    type PoolOptions = {
        acquireTimeoutMs?: number;
        healthCheck?: boolean;
        healthCheckIntervalMs?: number;
        idleTimeoutMs?: number;
        maxConnections?: number;
        minConnections?: number;
    }
    Index

    Properties

    acquireTimeoutMs?: number

    Time in ms to wait for a connection from the pool

    healthCheck?: boolean

    Enable connection health checking

    healthCheckIntervalMs?: number

    Interval in ms between health checks

    idleTimeoutMs?: number

    Time in ms before an idle connection is closed

    maxConnections?: number

    Maximum number of connections allowed

    minConnections?: number

    Minimum number of connections to maintain