I have cosmos-db collection with great size, I want to rename some properties of this collection, I have found that I can implement C# application, which loop on collection documents, and replace them document per document, but this solution will take very long time according to collection size. Is there any other solutions on Azure Portal (functions or stored procedures) or SDKs, which will give us the same function with less time?
Example:
Old document { Code, CName, CAddress }
I want to rename properties to be { CustomerCode, CustomerName, CustomerAddress }