Blog Post

Introduction to Azure DocumentDB

,

This is a basic introductory post about Microsoft’s new product: Azure DocumentDB, and how it compares to SQL Server.

What is DocumentDB?

DocumentDB is a new “Big Data” database engine created by Microsoft and managed as a service within their Azure Cloud framework (currently available in their Azure Preview Portal).

It is a NoSQL document-oriented database, which saves “Key-Value” pairs of records. It is comparable in principle to other NoSQL document-oriented databases such as MongoDB.

What’s a “document-oriented” database?

A document-oriented database is a type of NoSQL database which is used for saving, retrieving and managing “semi-structured” data. “Semi-structured” means that each record (i.e. “document”) can have its own internal structure of fields, sub-fields and sub-records. This is in contrast to a relational database where every table is strongly defined by a specific list of columns and types.

The “Keys” in DocumentDB are auto-generated string identifiers which you can use to quickly find specific records (documents).

The “Values” in this system are strictly JSON documents. These are your “documents”.

You can also save “attachments” per each document, which can be files of any type (including binary).

DocumentDB also provides a rich query API and deep JavaScript integration (you can write functions, stored procedures and triggers using JavaScript).

You can even use simplified SELECT queries to get your data! (very similar to what we already know from SQL Server, though more limited)

The Hierarchy of DocumentDB Objects

There’s a certain “hierarchy” of objects in DocumentDB, which can be described similarly to the hierarchy we already know from SQL Server, so here’s a “comparison” chart:

DocumentDBSQL Server
AccountInstance
DatabaseDatabase
Functions, Procedures, and Triggers written in JavaScriptFunctions, Procedures, and Triggers written in T-SQL
CollectionTable
Index (Hash / Range)Index (B+ Tree / Columnstore)
DocumentRow
KeyPrimary Key column
ValueValue column
Attachment(No equivalent)

 

The hierarchy is also described graphically by Microsoft in the following illustration:

 

DocumentDBHierarchy

 

JSON Indexing

Besides providing quick access using the “keys”, DocumentDB also allows fast and easy querying of documents by utilizing “JSON” indexes that it creates automatically for each and every possible JSON query path.

You can change this behavior and turn off automatic indexing, however that would mean that queries won’t be able to find your data at all, until you index them (though this doesn’t mean that your data is gone).

You can manually create specific indexes however you want and you can even set specific documents/paths to be “excluded” from indexing (this “hides” the documents unless you query them specifically by key). This behavior perhaps can be likened to the familiar “Filtered Index” in SQL Server.

There are also different types of indexes: Hash indexes and Range indexes.

And you can even set the update behavior of the indexes: Synchronous or Asynchronous (aka “Lazy”).

As you can figure out, there’s plenty of room for customizability here, but you can also leave everything as the default and everything will be automatically indexed.

Transactions and Consistency

DocumentDB is a transaction-based database. All queries are executed as an ACID compliant transaction. Collections form the transaction domains for the documents contained within them.

In addition, DocumentDB has a tunable consistency model with four modes:

  • Strong
  • Session
  • Bounded Staleness
  • Eventual

Each mode defines the database consistency level by way of determining how fast writes are committed in all database replicas, and when they’re available for reading. Choosing a consistency mode will affect the availability, redundancy, and performance of your data. The levels range from the strongest but slowest (Strong) to weakest but fastest (Eventual). The default consistency is, as expected, somewhere in the middle (Session).

More on this topic in a future post.

JavaScript Integration

As mentioned earlier, DocumentDB provides deep JavaScript integration.

User defined functions, stored procedures, and triggers can be written and integrated into the DocumentDB database. All of which written in JavaScript language.

Programming for DocumentDB

DocumentDB provides a RESTful interface over HTTP.

Their .NET library, which can be downloaded right into your project as a NuGet package, is an easy-to-use wrapper around the HTTP API. It requires an Authorization Key and an Endpoint URL – both of which are provided in the Azure web interface when you log into your account.

The DocumentDB .NET API also supports asynchronous querying using a LINQ provider.

Redundancy – Taking the Cloud to the Next Level

Being an Azure Cloud service, DocumentDB sits on top of a cluster of nodes (replicas), and this effectively allows the service to be both redundant as well as very fast in terms of performance, thanks to its usage of load balancing.

However, the setup of this cluster and all the nasty parts usually associated with it are almost completely invisible to you! There’s absolutely no need to install or manage complex distributed servers. Everything is done for you as part of the cloud service. All you do is click on a button!

In addition, you get levels of customizability by, for example, being able to manage the throughput at the collection level based on their specified “performance level”. This can be adjusted dynamically through the Azure portal or one of the SDKs.

SQL Server or DocumentDB?

So which database should you choose, SQL Server or DocumentDB? Obviously, it all depends on the type of data you need to save, and how you plan on querying it.

Being a document-oriented database, choosing DocumentDB is most optimal when you have no clear structure to your data (i.e. you can’t exactly predict the columns and data types you’re going to use, and/or the structure is expected to change often).

Implementing such a scenario in a relational database such as SQL Server can be a serious drag, not to mention the performance problems that can easily arise from such an implementation.

The most common (and obvious) implementation of a “document-oriented” database within SQL Server would be a table with an ID column, and an XML column (the XML obviously being the “document”). Or maybe the XML will actually be a long textual field like NVARCHAR(MAX). In either case, you get one “structured” column (the ID, or identifier), and one “unstructured” column (XML / NVARCHAR / VARBINARY). If you feel that this is the direction you’re being forced to go towards, then it’s definitely the time to consider a document-oriented database (DocumentDB), especially if part of your requirements include querying records based on data within the documents.

In other cases, where you know in advance the exact structure of the data (columns and data types), and this structure is expected to be mostly unchanging, then a relational database (SQL Server) is probably most suited for you.

Another important point to consider is data referential integrity, which obviously cannot be established between two documents, but can be established between two relational tables (hence the word “relational”) using foreign keys and primary keys.

If referential integrity is very important in your database model, then DocumentDB is probably not your best choice (although in some cases you might be able to combine it with your relational database).

Combining DocumentDB with SQL Server

Bottom line is… You can’t. Well, not in an integrated, built-in sort of way.

You can only access DocumentDB using its .NET API, using RESTful HTTP, or using the web-based Azure interface.

This means that you either need to implement the integration within your own program by combining connections to both SQL Server and DocumentDB… Or you’ll need to implement CLR assemblies that will integrate SQL Server directly with DocumentDB (which will probably be rather obtuse, but not impossible).

UPDATE: Microsoft has recently announced the release of SQL Server 2016 which is expected to implement further cloud integration, as well as built-in support for JSON. This will hopefully bring SQL Server and DocumentDB closer together for better integration “right off the shelf”.

Getting Starting with DocumentDB

The Microsoft Azure team has prepared a brilliant and very thorough tutorial right here: http://azure.microsoft.com/en-gb/documentation/articles/documentdb-get-started/

It has everything you need to get you up and running with DocumentDB, including setting up your Azure account, database, and creating your first .NET application.

Their documentation website also includes specific tutorials for various programming languages such as:

  • NET
  • js
  • Java
  • Python

Their documentation even includes advanced topics such as how to model your data, how to partition your data, managing consistency, security, scalability, and programmability objects (procedures, functions and triggers). By golly, there’s even a step-by-step tutorial for how to integrate DocumentDB with Hadoop! (HDInsight, to be precise)

Microsoft has really done an exceptional job with their documentation this time for this new product.

Kudos, Microsoft!

Follow Up

The DocumentDB team has also provided a very nice basic tutorial here: DocumentDB Tutorial.

And even fully-fledged .NET sample projects here: DocumentDB .NET Code Samples.

There’s definitely lots of promise showing in this new piece of technology from Microsoft.

With time, I will be writing more blog posts about my experience with DocumentDB and tutorials.

In my next posts, I’ll be providing the following:

  • A simple tutorial to establish your first DocumentDB account on top of Microsoft Azure.
  • A few simple video tutorials to get your first DocumentDB program up and running (in .NET).
  • Comparisons between DocumentDB and SQL Server based on Availability, Scalability and Performance.
  • And more.

But you already have enough work cut out for you, so go on and have some fun with this new toy!

Get started with Azure DocumentDB!

The post Introduction to Azure DocumentDB appeared first on Madeira Data Solutions.

Rate

You rated this post out of 5. Change rating

Share

Share

Rate

You rated this post out of 5. Change rating