Hi @Nmawyin,
If you have a vector dataset already in Pinecone, you can migrate it to a new index with the right settings using the Collections feature without having to re-embed or re-upload the data. A collection is like a snapshot/backup of the vectors in your index.
The high level overview of the procedure is:
- Disable “ingest” into your index (you can continue to allow reads/searches, but you want to pause inserting or updating any new data during this process).
- Create a Collection from your index
- Restore the Collection to a new index from the Actions buttons on the Collections page. (You’ll be able to select the similarity metric you want on the new index.)
- Switch your app to use the new index for queries
- Configure any ingest apps to point to the new Index, and you can unpause ingest now.
- Remove the original index
Hope this helps!
-Silas