Circle V2 API Docs
    Preparing search index...

    The outcome of migrating (moving or copying) one namespace's vectors to another.

    type PineconeNamespaceMigrationResult = {
        failedVectors?: string[];
        migratedVectors: string[];
        namespaceError?: string;
        partialVectors?: string[];
        sourceNamespace: string;
        targetNamespace: string;
        totalVectors: number;
    }
    Index

    Properties

    failedVectors?: string[]
    migratedVectors: string[]
    namespaceError?: string

    Set when the namespace failed before any vectors could be migrated (e.g. listing setup).

    partialVectors?: string[]
    sourceNamespace: string
    targetNamespace: string
    totalVectors: number