Questions tagged [azure-cosmosdb]
Azure Cosmos DB is a globally distributed database service designed to enable users to elastically and independently scale throughput and storage across any number of geographical regions with a comprehensive SLA. You can develop document, key/value, or graph databases with Cosmos DB using a series of popular APIs and programming models.
4 questions
4
votes
1
answer
244
views
Enumerating my method to handle any time out issue
I have below code which is going to copy records from one container in cosmos db to another container in cosmos db. I am just worried on not following the best practices and below code might time out ...
3
votes
1
answer
194
views
Speeding up HTTPS API Call helper method
I am having severe problems with performance on a WEB API helper method, the performance is simply dreadful, 1-2 connections / second, I am trying to make 40k API calls and 5 hours later it is still ...
2
votes
0
answers
655
views
Stream JSON from Azure Cosmos DB to browser in Web API
I have an HTTP endpoint for returning data directly from Azure Cosmos DB. The endpoint is basically a database access point (this seems like a common case). Since I'm returning the data unmodified, ...
0
votes
1
answer
3k
views
Azure Storage Table using Repository Pattern
I converted my .net MVC, Entity Framework and SQL server website into .Net with Storage Table as the cheapest database option in Azure.
I followed a repository pattern same as Entity Framework, ...