QuestDB JavaScript Client - v5.0.0
    Preparing search index...

    Interface QwpNodeClientConfigOptions

    Programmatic hooks layered over a unified ws/wss cluster string. Values in this object take precedence after the complete string has been validated.

    interface QwpNodeClientConfigOptions {
        egress?: Partial<
            Pick<
                QwpNodeEgressOptions,
                "target"
                | "zone"
                | "compression"
                | "compressionLevel"
                | "maxBatchRows",
            >,
        >;
        egressSession?: QwpEgressSessionOptions;
        ingressSession?: QwpIngressSessionOptions;
        pool?: QwpClientPoolOptions;
        sender?: QwpSenderOptions;
        storeAndForward?: QwpNodeStoreAndForwardOptions;
        webSocket?: Partial<Omit<QwpNodeWebSocketOptions, "url" | "failoverUrls">>;
    }
    Index

    Properties

    egress?: Partial<
        Pick<
            QwpNodeEgressOptions,
            "target"
            | "zone"
            | "compression"
            | "compressionLevel"
            | "maxBatchRows",
        >,
    >

    Egress-only routing and compression overrides.

    egressSession?: QwpEgressSessionOptions
    ingressSession?: QwpIngressSessionOptions

    Optional persistent ingress configuration; may supply/override sf_dir.

    webSocket?: Partial<Omit<QwpNodeWebSocketOptions, "url" | "failoverUrls">>

    Shared transport overrides applied to both ingress and egress.