Sync between multiple indexes

What’s the best way to sync between the dev and prod index? Our regular RDS database sync happens once a week or two. And we are looking for the same in Pinecone VectorDB too.

Is there an easier, cost-effective way to sync dev with the prod index in Pinecone i.e., basically, the dev index should become a snapshot of the prod index

Hello @arnab,

Currently, the only way to sync two serverless indexes is manually.

Here are the steps:

  1. Get all index IDs from the dev index.
  2. Repeat for the prod index.
  3. Fetch the vectors, using these IDs, from the indexes.
  4. Compare the fetched results and create an array of vectors added/updated in the prod index.
  5. Upsert these vectors into the dev index.

Cheers,
James