Click here to Skip to main content
15,860,972 members
Articles / Database Development / NoSQL

RavenDB - An Introduction

,
Rate me:
Please Sign up or sign in to vote.
4.87/5 (38 votes)
28 Apr 2010CPOL7 min read 259.7K   2.7K   112   29
An introduction to RavenDB - a new open source .NET document database using .NET 4.0 and VS 2010

Introduction

RavenDB is a new open source document database for .NET. If you have never worked with a document database before, the simplest way to think about it is to imagine serializing your objects and storing them on the hard drive where the app is. If you stored it using the key or whatever most common lookup method you might use, it would be quite easy to retrieve your entire object without having to map to and from columns and rows in a SQL database. Dealing with further ways of looking it up, concurrency, etc. would be more difficult to deal with, hence the creation of document databases. The documents stored don't necessarily need to be an object that is serialized (arbitrary documents can be stored independent of objects), but that is probably the most common way it can be used. Just keep in mind that it is a completely different way of dealing with data storage so you probably don't want to always approach it as you would a SQL database. A .NET client is included for communicating with the server but the underlying representation is HTTP/JSON - so any client that can communicate with the server via HTTP/JSON will work.

Simple Example

RavenDBIntro/simpleexample2.jpg

Here is a simple example of how to store two arbitrary POCO objects in RavenDB, query for them and print out some of the information to the screen. In this example, the RavenDB server is on the same machine as the client but that doesn't have to be the case (more on that next). Notice that I didn't have to create a table, I didn't have to map columns and classes to the tables and I didn't have to create any stored procedures. The Company class isn't even marked as Serializable - it just works.

Also keep in mind that the creation of a DocumentStore object should be treated as an expensive operation, similar to creating a session factory in NHibernate. Currently it isn't but there is future work planned that may change this.

The Server and the Client

RavenDBIntro/ravenserver.jpg

When starting up the server and running the above example, you will see output in the server similar to the above (log4net is used so console logging can be turned off or directed to a file if desired). There are quite a few interesting things going on here. First, note that instead of submitting two commands, it batched them and submitted them all at once with the SaveChanges() call. Second, after the batch operation, it started working on indexes that applied to the documents that were saved and was able to query and return those documents.

In addition to the client/server method shown above, you can also directly embed the server functionality inside your app if there is no need for a distributed architecture.

The Browser Based Admin Tool

RavenDBIntro/browser1.jpg

Once the Raven server is running, it can be accessed via browser to inspect its contents, indexes and to view the documentation.

RavenDBIntro/browser2.jpg

RavenDBIntro/browser3.jpg

You can even edit documents and index definitions using your browser.

Indexes and Performance

The more eagle-eyed among you may have noticed the method call to "WaitForNonStaleResults" for the query in the simple example above. When designing a system that uses indexes, there are a few approaches you can take:

  • Make the client wait while you update index whenever data is changed
  • Make the client wait while you read data from an index if it is not current (stale)
  • Don't make the client wait while updating or reading and just let the client know if data is stale

RavenDB takes the third alternative for performance reasons but if you want to make it wait, you can using the WaitForNonStaleResults method. Chances are, if that method wasn't included and any other action at all had happened between the insert and the read (since index update times tend to be in the low tens of milliseconds), it would still have worked. Typically, it is sufficient and cheaper to just get the stale data while the index is updated and to get the updated data on the next view or query.

Adding New Indexes using LINQ

Indexes can be created or edited using the Web UI or programmatically. Here I'll show how to add a new index using the WebUI and to use that index for a query.

First, create the index using LINQ syntax:

RavenDBIntro/indexCreate.jpg

Write a query that uses that index using Lucene syntax for the where statement:

RavenDBIntro/simpleclientwithwhere.jpg

The server will recognize the index exists and use it via Lucene to get the smaller result set instead of scanning all items.

Sharding

Raven DB also supports sharding, or partitioning the data across multiple servers. If for example, we knew we had many companies split across multiple regions and wanted certain regions on one server and other regions on another, we could achieve that. The design of the sharding is based on Hibernate Shards, so if you are familiar with that, you will notice some similarities.

Here is an example using sharding (included as a sample project in the RavenDB source code):

RavenDBIntro/shardSample.jpg

When using sharding, you have to come up with the rules to partition the data by. For this example, we will assume 2 shards with companies in region A going to shard 1 and region B going to shard 2. To achieve this, we will create a concrete instance that implements IShardStrategy which defines 3 pieces of the sharding behavior:

RavenDBIntro/shardStrategy.jpg

The ShardSelectionStrategy is how it knows which shard to put a new item in:

RavenDBIntro/shardSelection.jpg

The shard access strategy controls how it executes queries across multiple shards. Here I've used the built in parallel method that will query all shards simultaneously and return the results. I'm also using the existing resolution strategy which searches all shards. For more information on the idea behind these strategies, see the Hibernate Shards documentation.

Things Implemented using New .NET 4.0/VS2010 Features

The ParallelShardAccessStrategy uses the new Tasks functionality in .NET 4.0. Here is the code that queries all the shards simultaneously:

RavenDBIntro/shardParallel.jpg

There is an implementation of an expando object that enables dynamic access of a JSON object:

RavenDBIntro/jsonExpando.jpg

See the source for more examples and more details.

Where To Go From Here

To run the examples shown here, download the source zip file, open it in VS 2010 and build the solution. Run the Raven.Server to start the server, then launch the simple client example, uncommenting the initial code that inserts data into the database initially to populate it with some data. To run the sharded examples, you'll need to make a copy of the Raven.Server bin directory and change the config for it to listen on a different port so you can run two servers simultaneously on the same machine (or use another machine). The first time you run the server, it will detect if it doesn't have access to the port and grant permissions which will prompt you for admin access.

There are far more features in the product than what I have shown here - to see the rest, get in the code and have a look around. The source code repository is on github at http://github.com/ravendb/ravendb - but the current source and code for the examples here is included with the article. You can grab all the code using git if you want to contribute, or just download all the files you need using the "Download source" button github provides at the above link. You will also find a list of issues in github so if you want to jump in and help on a smaller issue to get used to using git and VS 2010, go for it.

Also, see Oren's blog which includes many posts related to Raven as it was being built, giving some insight into design decision made, etc.

Here are the instructions I used to get git running locally on my Windows machine.

Using the Git GUI has so far worked for me (as opposed to the command line) even when using some of the more complicated scenarios such as creating and merging branches. It is helpful to look through the command line instructions for branching for git, just so you know the terminology which is quite different than VSS/TFS/SVN.

The user group for the project can be found at http://groups.google.com/group/ravendb.

History

  • 26-Apr-2010 - Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
I've been a software developer since 1996 and have enjoyed C# since 2003. I have a Bachelor's degree in Computer Science and for some reason, a Master's degree in Business Administration. I currently do software development contracting/consulting.

Written By
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Agent__0079-Oct-14 20:14
professionalAgent__0079-Oct-14 20:14 
QuestionDynamic fields for my index not coming up in the list of fields Pin
dkchittimalla27-Sep-13 0:29
dkchittimalla27-Sep-13 0:29 
GeneralMy vote of 5 Pin
Joezer BH1-May-13 21:21
professionalJoezer BH1-May-13 21:21 
QuestionRavenDB database configuration Pin
mohsen_alikhani19-Oct-12 5:02
mohsen_alikhani19-Oct-12 5:02 
AnswerRe: RavenDB database configuration Pin
mohsen_alikhani31-Oct-12 22:02
mohsen_alikhani31-Oct-12 22:02 
GeneralMy vote of 5 Pin
meetmegha5-Apr-11 18:01
meetmegha5-Apr-11 18:01 
Generalconnect listview to raven Pin
alchemystic24-Mar-11 2:35
alchemystic24-Mar-11 2:35 
GeneralRe: connect listview to raven Pin
Paul B.24-Mar-11 2:59
Paul B.24-Mar-11 2:59 
GeneralUnable to connect to the remote server Pin
Sailung Limbu28-Jul-10 21:42
Sailung Limbu28-Jul-10 21:42 
GeneralRe: Unable to connect to the remote server Pin
Ayende @ Rahien28-Jul-10 21:45
Ayende @ Rahien28-Jul-10 21:45 
QuestionFulltext search Pin
pelister21-May-10 5:35
pelister21-May-10 5:35 
AnswerRe: Fulltext search Pin
Ayende @ Rahien21-May-10 5:41
Ayende @ Rahien21-May-10 5:41 
QuestionCan RavenDB store Word, PDF files ? Pin
john Pure12-May-10 5:30
john Pure12-May-10 5:30 
AnswerRe: Can RavenDB store Word, PDF files ? Pin
Ayende @ Rahien12-May-10 5:38
Ayende @ Rahien12-May-10 5:38 
GeneralRe: Can RavenDB store Word, PDF files ? Pin
john Pure13-May-10 20:40
john Pure13-May-10 20:40 
GeneralRe: Can RavenDB store Word, PDF files ? Pin
Ayende @ Rahien13-May-10 20:46
Ayende @ Rahien13-May-10 20:46 
You can certainly store them in Raven
But if you want to use Raven for attachments storage only, that is sort of missing the point.
GeneralRe: Can RavenDB store Word, PDF files ? Pin
john Pure13-May-10 21:29
john Pure13-May-10 21:29 
GeneralRe: Can RavenDB store Word, PDF files ? Pin
Ayende @ Rahien14-May-10 6:55
Ayende @ Rahien14-May-10 6:55 
GeneralPossible Usages Pin
Eng. Jalal1-May-10 13:16
Eng. Jalal1-May-10 13:16 
QuestionWhat is the reason behind this project ? PinPopular
GriffonRL28-Apr-10 21:56
GriffonRL28-Apr-10 21:56 
AnswerRe: What is the reason behind this project ? Pin
Paul B.29-Apr-10 0:58
Paul B.29-Apr-10 0:58 
AnswerRe: What is the reason behind this project ? Pin
malamisurae29-Apr-10 5:28
malamisurae29-Apr-10 5:28 
AnswerRe: What is the reason behind this project ? Pin
Patrick Blackman30-Apr-10 4:17
professionalPatrick Blackman30-Apr-10 4:17 
AnswerRe: What is the reason behind this project ? Pin
firsname lastname1-May-10 6:30
firsname lastname1-May-10 6:30 
AnswerRe: What is the reason behind this project ? Pin
valeriob1-Nov-11 12:36
valeriob1-Nov-11 12:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.