Member Junction
    Preparing search index...

    Interface VectorDatabaseThroughputConfig

    interface VectorDatabaseThroughputConfig {
        maxConcurrentRequests?: number;
        maxRequestsPerSecond?: number;
        maxUpsertBatchSize?: number;
    }
    Index

    Properties

    maxConcurrentRequests?: number

    Maximum number of concurrent API requests to the provider. Helps avoid rate-limit errors on shared-tier plans.

    maxRequestsPerSecond?: number

    Hard ceiling on requests per second. The client will throttle to stay under this limit. 0 = unlimited.

    maxUpsertBatchSize?: number

    Maximum number of vectors in a single upsert batch. Pinecone recommends ≤100; other providers may differ.