Data longevity vs pricing

After I read most of the documentation, I am about to start using the API and came across this Note on a pinecone site:
https://docs.pinecone.io/docs/manage-indexes
_When you create an index, it runs as a service until you delete it. Users are
billed for running indexes, so we recommend you delete any indexes you’re not
using. This will minimize your costs.

That means that the DB I build with all the data/vectors from the documents that I previously segmented, embedded, etc. is getting destroyed. At the same time, I read on the pinecone site that it takes time to ingest the vectors (depending on the pod characteristics, data size, etc.) and that time could be in minutes and probably hours (depending on the document data size). I presume that in the scenario of 1000 documents of 100 pages each, it may take a while in order that user would be able eventually to query the DB.
So, obviously, I am asking myself - how it is all supposed to work? I either pay for a running service/index to run continuously and indefinitely (because how would I know when a company employee would need to query the DB) or let user wait for a while recreating DB and also pay for generating embeddings in order to bring the index service into a working state…

So one of the solutions someone told me would be - use collections:

using var pinecone = new PineconeClient(key, env);

await pinecone.CreateCollection(“index-name-backup”, source: “index-name”);
await pinecone.DeleteIndex(“index-name”);

But then:
Creating an index from a collection generally takes about 10 minutes. Creating a p2 index from a collection can take several hours when the number of vectors is on the order of 1M.

That means this task of creating and starting Index from Collection should be triggered at the beginning of the business day. Building a web service like that becomes a non-viable option though, unless you are opening yourself for a paid option… but then, the charges for 1,000 users using p1 would be $7,000/mo. to start from…

Can anyone tell me where I am wrong here? Or is it correct that using Pinecone service in the enterprise would incur significant price tag?

Have you considered using one index with multiple namespaces, instead of a unique index for each user? See: Understanding multitenancy

I’d advise caution when dealing with Pinecone. Their pricing structure can be perplexing. I was billed twice my usual $70 monthly fee for a test index I barely used on just 3 documents. Their only response was to point me to the fine print and dismiss my concerns.

I don’t see how Multitenancy changes anything that I said. I wasn’t event talking about multiple customers but just one, with one pool of documents that the company accumulated for the last 30 years…
Do I make any mistake in calculating or quoting your website?