Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Microsoft Azure Cosmos DB vs Microsoft Azure SQL Database [closed]

I am developing a small app (via xamarin.forms), and it will be required to access information held in an online server at any moment from the user's device. I have managed to create an azure sql database, however I have not found any way to edit it from the app. I did some research on connecting to azure via REST method, and all the guides corresponded to azure cosmos DB. Apparently they are not the same thing. I am using visual studio, and not azure mobile apps.

My question is: What is the difference between azure sql and azure cosmos databases?

Which is more suitable for a small scale app with limited finances?

like image 289
MullerA Avatar asked Sep 16 '17 14:09

MullerA


People also ask

What is the difference between Cosmos DB and Azure SQL?

Azure SQL is based on SQL Server engine, you can easily migrate applications and continue to use the tools, languages, and resources that you're familiar with. Azure Cosmos DB is used for web, mobile, gaming, and IoT application that needs to handle massive amounts of data, reads, and writes at a global scale.

Is Azure Cosmos DB deprecated?

The support for cosmos DB accounts using Azure storage explorer will be deprecated in future versions that is why you can see deprecated is showing besides cosmos DB accounts option.

Is Azure Cosmos DB NoSQL?

Applications need to respond in real time to large changes in usage at peak hours, store ever increasing volumes of data, and make this data available to users in milliseconds. Azure Cosmos DB is a fully managed NoSQL database for modern app development.

Is Azure Cosmos DB open source?

You can use the Cosmos DB Data Migration Tool. It is an open source to import data from SQL Server and other sources like CSV files, MongoDB, Azure Table Storage and other sources.


1 Answers

Azure Cosmos DB is a non-SQL database that provides access to information (JSON) quickly, with high availability, scalable and with global replication.

Microsoft Azure SQL Database as a Service offering with high compatibility to Microsoft SQL Server. That is, a Relational DBMS.

In your case it would be more convenient to use Cosmos DB because you can access the data (via JSON) without having to create a web service. And it have limitless scale. Your Azure Cosmos DB collections grow as your app grows. You can start with small data size and throughput of hundreds of requests per second.

Instead with Azure Database SQL you would have to create an ASP.Net Web API project to be able to access the data. (This could affect development time).

However, if you are not familiar with Cosmos DB it can affect development time as well.

You can find some examples here:

  • Consuming an Azure Cosmos DB Document Database

  • Build mobile applications with Xamarin and Azure Cosmos DB

  • Going Global with Xamarin and Azure Cosmos DB

like image 70
Wilson Vargas Avatar answered Nov 15 '22 04:11

Wilson Vargas