Reputation: 1081
I'm developing a technical document for a client where we are using CosmosDB and on this document the client has asked me to input the estimated monthly cost of running CosmosDB.
Now, when I head over to https://azure.microsoft.com/en-gb/pricing/calculator/ the minimum option I see to define the minimum number of RUs is 4*100 RU/s which is 4000 RUs. I think this is excessive but I don't see an option to "downgrade" this value. Is this really the minimum RU/s allowed?
Also, on the CosmosDB capacity planner (https://www.documentdb.com/capacityplanner) every time I upload my sample document I get an error stating that "Something went wrong. Please check your sample documents and try again."
The sample document I'm trying to upload is this: https://pastebin.com/dUypV2bj
Why am I getting errors? The page doesn't say what's wrong and no JSON validators have found any errors. Can anyone help me please?
Upvotes: 0
Views: 323
Reputation: 1375
4*100 = 400 RUs, which is the minimum for a fixed (10gb) size collection.
With regards to the JSON, the calculator appears to be failing on the html tags in the exp.Description properties. Remove those tags and the calculator will accept it.
Upvotes: 3