Member Junction
    Preparing search index...

    Interface VectorDatabaseConnectionConfig

    interface VectorDatabaseConnectionConfig {
        connectTimeoutMs?: number;
        hostUrl?: string;
        proxyUrl?: string;
        requestTimeoutMs?: number;
    }
    Index

    Properties

    connectTimeoutMs?: number

    Connection timeout in milliseconds — how long to wait for a TCP connection to be established.

    hostUrl?: string

    Custom API host/endpoint URL. Overrides the default derived from environment variables (e.g. PINECONE_HOST). Useful for private endpoints, proxies, or region overrides.

    proxyUrl?: string

    HTTP/SOCKS proxy URL (e.g. "http://proxy.corp:8080"). Only applies to providers that support proxy configuration.

    requestTimeoutMs?: number

    Request timeout in milliseconds for individual API calls. Default varies by provider (typically 30 000 ms).