Pinecone DeleteVectors

Pinecone DeleteVectors

Certified

Delete vectors from a Pinecone index

Deletes vectors from a Pinecone index namespace. Either specify a list of ids to delete specific vectors, or set deleteAll to true to clear the entire namespace. Exactly one of these two must be set.

yaml
type: io.kestra.plugin.pinecone.DeleteVectors

Delete specific vectors by ID.

yaml
id: pinecone_delete_vectors
namespace: company.team

tasks:
  - id: delete
    type: io.kestra.plugin.pinecone.DeleteVectors
    apiKey: "{{ secret('PINECONE_API_KEY') }}"
    indexName: my-embeddings
    namespace: my-namespace
    ids:
      - vec1
      - vec2

Delete all vectors in a namespace.

yaml
id: pinecone_delete_all
namespace: company.team

tasks:
  - id: delete_all
    type: io.kestra.plugin.pinecone.DeleteVectors
    apiKey: "{{ secret('PINECONE_API_KEY') }}"
    indexName: my-embeddings
    namespace: my-namespace
    deleteAll: true
Properties

Pinecone API key

Index name

Name of the Pinecone index to operate on.

Delete all vectors in the namespace

Mutually exclusive with ids. Set to true to clear the entire namespace.

Control-plane host override

Optional URL override for the Pinecone control-plane API. Defaults to https://api.pinecone.io when unset. Set this to point to a local emulator (e.g. http://localhost: 5080).

SubTypestring

List of vector IDs to delete

Mutually exclusive with deleteAll.

Namespace to delete from

Reference (ref) of the pluginDefaults to apply to this task.

Defaulttrue

Enable TLS for gRPC data-plane connections

Set to false when connecting to a local emulator that does not support TLS. Defaults to true (production Pinecone always requires TLS).