
Pinecone DeleteVectors
CertifiedDelete vectors from a Pinecone index
Pinecone DeleteVectors
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.
type: io.kestra.plugin.pinecone.DeleteVectorsExamples
Delete specific vectors by ID.
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.
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
apiKey *Requiredstring
Pinecone API key
indexName *Requiredstring
Index name
Name of the Pinecone index to operate on.
deleteAll booleanstring
Delete all vectors in the namespace
Mutually exclusive with ids. Set to true to clear the entire namespace.
host string
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).
ids array
List of vector IDs to delete
Mutually exclusive with deleteAll.
namespace string
Namespace to delete from
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
tlsEnabled booleanstring
trueEnable 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).