Member Junction
    Preparing search index...

    Interface VectorIndexProvisioningConfig

    interface VectorIndexProvisioningConfig {
        cloud?: string;
        deploymentType?: string;
        podType?: string;
        region?: string;
        replicas?: number;
        shards?: number;
    }
    Index

    Properties

    cloud?: string

    Cloud provider for serverless indexes (e.g. "aws", "gcp", "azure")

    deploymentType?: string

    Deployment type. Pinecone supports "serverless" and "pod". Other providers may use different terminology.

    podType?: string

    Pod type (e.g. "p1.x1", "s1.x2"). Only relevant for pod-based deployments.

    region?: string

    Cloud region (e.g. "us-east-1", "us-west-2")

    replicas?: number

    Number of replicas for high-availability. Pod-based only.

    shards?: number

    Number of shards for horizontal scaling. Pod-based only.