Skip to content

[Bug] delete_all index is not working. #311

Open
@ARajgor

Description

@ARajgor

Is this a new bug in the Pinecone Python client?

  • I believe this is a new bug in the Pinecone Python Client
  • I have searched the existing issues, and I could not find an existing issue for this bug

Current Behavior

I want to delete all the vector embeddings from the default namespace. I tried to follow the official documentation. I ran the code and it returned the empty string { } as expected but the vectors didn't got deleted from the pod. When I tried to run again index.describe_index_state() it shows all the indexes that are present.

Expected Behavior

It should remove all the vectors from the pods also. The request's response is an empty string but vectors aren't deleted.

Steps To Reproduce

Here is my code,

from pinecone import Pinecone

pc = Pinecone(api_key=os.getenv("PINECONE_API_KEY"))

index = pc.Index(<index-name>)

print(index.describe_index_stats())

print(index.delete(delete_all=True))

Relevant log output

No response

Environment

- OS: Windows 11
- Python: 3.11.4
- pinecone: 3.0.2

Additional Context

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingstatus:backlogThis issue has been added to our backlog

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions