SlideShare a Scribd company logo
Navigating the Transition
From Relational to NoSQL
Database Technology
NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY




Table of Contents
Introduction	3
Why transition at all?	                                                           3
    Scaling model

    Data model

The relational vs. document-oriented data model	                                  4
    Relational data model

    Document data model

Document Modeling: Rules of Thumb	                                                6
    Models

    (Primary) Keys

    Multiple Places and Editability

    Concurrency

Conclusion	8




                                           2

                 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY




Introduction
While the hype surrounding “NoSQL” (non-relational) database technology has become
deafening, there is real substance beneath the often exaggerated claims. But like most things
in life, the benefits come at a cost. Developers accustomed to data modeling and application
development against relational database technology will need to approach things differently.
This white paper highlights the differences between a relational database and a distributed
document-oriented database, the implications for application development, and guidance
that can ease the transition from relational to NoSQL database technology.



Why transition at all?
Change is hard and rarely undertaken unless it alleviates significant pain. The white paper
NoSQL Database Technology provides a comprehensive look at the motivating challenges that
have led to the emergence and rapid adoption of NoSQL database technology. In a nutshell,
the transition has been spurred by the need for flexibility – both in the scaling model and the
data model.


Scaling model
Relational database technology is a “scale up” technology – to add capacity (whether data
storage or I/O capacity) one gets a bigger server. The modern approach to application
architecture is to scale out, rather than scale up. Instead of buying a bigger server, you
add more commodity servers, virtual machines or cloud instances behind a load balancer.
Conversely, capacity can be easily removed when no longer required. While scaling out is
already common at the application logic tier, database technology is only now catching up.


Data model
The scale-out deployment benefits of NoSQL technology frequently get the most attention, but
equally important are the benefits afforded by a schemaless approach to data management.
With a relational database, you must define a schema before adding records to the database.
Each record added to the database must adhere strictly to this schema with its fixed columns
and data types. Changing the database schema, particularly when dealing with a partitioned
relational database spread across many servers, is difficult. If your data capture and
management needs are constantly evolving, a rigid schema quickly becomes blocker to change.

NoSQL databases (whether key-value, document, column-oriented or otherwise) scale out,
and they don’t require schema definition prior to inserting data nor a schema change when
data capture and management needs evolve.

The rest of this paper will focus on distributed document-oriented NoSQL database technology
– with Couchbase and MongoDB being the two most visible and widely adopted examples.


                                              3

                 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY




The relational vs. document-oriented data model
The figure below compares four records from a relational database with four from a
document-oriented database.

                                                                                         {
                                                                                         “UUID”: “21f7f8de-8051-5b89-86
                                                                                         “Time”: “2011-04-01T13:01:02.42
                                                                               {         “Server”: “A2223E”,
                                                                               “UUID”:“Calling Server”: “A2213W”,
                                                                                          “21f7f8de-8051-5b89-86
                                                                               “Time”: “Type”: “E100”,
                                                                                         “2011-04-01T13:01:02.42
                                                                     {
                R1C1      R1C2     R1C3      R1C4                              “Server”:“Initiating User”: “dsallings@spy.net”,
                                                                                           “A2223E”,
                                                                     “UUID”:“Calling Server”: “A2213W”,
                                                                                “21f7f8de-8051-5b89-86
                                                                                         “Details”:
                                                                     “Time”: “Type”: “E100”,
                                                                               “2011-04-01T13:01:02.42
                                                          {                                      {
                                                                     “Server”:“Initiating User”: “dsallings@spy.net”,
                                                                                 “A2223E”,
                                                          “UUID”:“Calling Server”: “A2213W”,“10.1.1.22”,
                                                                      “21f7f8de-8051-5b89-86     “IP”:
                                                                               “Details”:
                                                                     “2011-04-01T13:01:02.42 “InsertDVDQueueItem”,
                                                          “Time”: “Type”: “E100”,                “API”:
                                                                                       {         “Trace”: “cleansed”,
                                                          “Server”:“Initiating User”: “dsallings@spy.net”,
                                                                       “A2223E”,
                R2C1      R2C2     R2C3      R2C4         “Calling “Details”:
                                                                                       “IP”: “10.1.1.22”,
                                                                     Server”: “A2213W”, “Tags”:
                                                                                       “API”: “InsertDVDQueueItem”,
                                                          “Type”: “E100”,                              [
                                                                             {         “Trace”: “cleansed”,
                                                          “Initiating User”: “dsallings@spy.net”,      “SERVER”,
                                                                             “IP”: “10.1.1.22”,
                                                                                       “Tags”:
                                                          “Details”:                                   “US-West”,
                                                                             “API”: “InsertDVDQueueItem”,
                                                                                             [
                                                                   {                                   “API”
                                                                             “Trace”: “cleansed”,
                                                                                             “SERVER”,
                                                                   “IP”: “10.1.1.22”,                    ]
                                                                             “Tags”:
                R3C1      R3C2     R3C3      R3C4                                            “US-West”,
                                                                   “API”: “InsertDVDQueueItem”,
                                                                                   [
                                                                                                 }
                                                                   “Trace”: “cleansed”,  } “API”
                                                                                   “SERVER”,   ]
                                                                   “Tags”:         “US-West”,
                                                                                       }
                                                                         [
                                                                               } “API”
                                                                         “SERVER”,   ]
                                                                         “US-West”,
                                                                             }
                R4C1      R4C2     R4C3      R4C4                    } “API”
                                                                           ]
                                                                   }
                                                          }




                     Relational data model                      Document data model
                       Highly-structured table               Collection of complex documents
                  organization with rigidly-defined           with arbitrary, nested data formats
                 data formats and record structure.             and varying “record” format.




Relational data model
As shown above, each record in a relational database conforms to a schema – with a fixed
number of fields (columns) each having a specified purpose and data type. Every record is the
same. If you wish to capture different data in the future, the database schema must be revised.

Additionally, the relational model is characterized by database normalization, where large
tables are decomposed into smaller, interrelated tables. The figure below illustrates the concept:

                      Table 1: Error Log                                    Table 2: Data Centers

                KEY       ERR     TIME       DC

                                                                                    KEY                  LOC                NUM
                 1        ERR     TIME    FK(DC2)
                                                                                                                         303-223-
                                                                                        1                DEN               2332

                 2        ERR     TIME    FK(DC2)
                                                                                                                         212-223-
                                                                                       2                 NYC               2332

                 3        ERR     TIME    FK(DC2)

                                                                                       3                 SFO             415-223-
                                                                                                                           2332
                 4        ERR     TIME    FK(DC3)




                                                      4

                     © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY




In the above example, the database is used to store error log information. Each error record
(each row in Table 1) consists of an error number (ERR), the time the error occurred (TIME)
and the datacenter (DC) in which the error occurred. Instead of repeating all the datacenter
information in each error record (location, phone number), each error record points to a row
in the in the Data Centers Table (Table 2) which includes the location of the datacenter (LOC)
and the phone number (NUM).

In the relational model, records are “striped” across multiple tables, with some data shared
by multiple records (multiple error records share the same data center information). The upside is
that there is less duplicated data in the database. The downside is that a change in a single record
can mean locking down many tables simultaneously to ensure a change doesn’t leave the database
in an inconsistent state. ACID transactions can be complex on a relational database because the
data, even of a single record, is spread about. This complex web of interrelationships between
shared data items is what makes it so difficult to distribute relational data across multiple servers
and can lead to performance challenges both reading and writing data.

When storage resources were expensive and scarce, the tradeoffs made sense. But the
price of storage has dropped precipitously over the last 40 years, to say the least. For many,
the tradeoff calculus no longer makes sense. Using more storage in exchange for better
application performance and the ability to easily distribute workloads across machines is
now the best choice for many applications.


Document data model
Use of the term “document” is a bit confusing. A document-oriented database really has
nothing to do with “documents” in the classical sense of the word. It doesn’t mean books,
letters or articles. Rather, a document in this case refers to a data record that is self-
describing as to the data elements it contains. XML documents, HTML documents and JSON
documents are examples of “documents” in this context. Couchbase Server (which contains
Apache CouchDB as an ingredient technology) is a document-oriented database that uses
JSON as the document format. In Couchbase, error records would look like this:

     {
           “ID”: 1,
           “ERR”: “Out of Memory”,
           “TIME”: “2004-09-16T23:59:58.75”,
           “DC”: “NYC”,
           “NUM”: “212-223-2332”
     }
     {
           “ID”: 2,
           “ERR”: “ECC Error”,
           “TIME”: “2004-09-16T23:59:59.00”,
           “DC”: “NYC”,
           “NUM”: “212-223-2332”
     }



                                                 5

                  © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY




As can be seen, the data is denormalized. Each record contains a complete set of information
related to the error without external reference. The records are self-contained. This makes
it very easy to move the entire record to another server – all the information simply comes
along with it. There is no concern about having parts of the record in other tables left
behind. And because only the self-contained record (document) needs to be updated when
changes are made (versus changing entries in multiple tables simultaneously), ensuring ACID
compliance is far easier, at record boundaries. Performance is also increased on reads.

But complete data denormalization is not required in a document database, as highlighted
in the next section. In fact, in this particular example, maintaining documents representing
each datacenter and simply referencing those from each error record would probably be
the right decision. Separation would eliminate duplication and allow quick changes to
information shared across many records (e.g. if the telephone number for the datacenter
changed, there would be no need to go update it in every error record). Ultimately, however,
data modeling decisions are dependent on the use case and planned update patterns.



Document Modeling: Rules of Thumb
It takes a while to unlearn habits. But do not fear: by understanding alternatives you will
be able to make more efficient use of your trusted knowledge as well. After all, the tool best
suited for the job will leave you with the least headache. If you know more tools, you can
choose more wisely.


Models
In an application, data objects are a central construct – the model layer in Model-View-
Controller (MVC). These are the documents that hold your data and let you manipulate it. If a
blog has posts and comments, these are likely two different models. Ideally, you should have
a separate document for every post and every comment.

When looking at an existing application, stop at the Object-Relational Mapping (ORM) layer.
Instead of splitting your models up into tables and rows, turn them into JSON and make
them a document. Each document gets a unique ID by which you can find it later. Done.


(Primary) Keys
In the NoSQL world the document ID is the one and only key to a document. They are
roughly equivalent to primary keys in a relational database. Usually an ID can only appear
once in a database (different NoSQL solutions have different names for these: buckets,
collections, tables etc. The idea is roughly similar to a table in an RDBMS. You can have many
per server).




                                               6

                  © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY




Some NoSQL database systems sort data by ID. Data with nearby IDs can be accessed more
efficiently than IDs that are all over the place. Keeping data that you tend to access at the
same time closer together makes your application faster.

The larger point here though is that an ID-lookup is extremely fast, and by selecting clever IDs
you can make your life a lot easier. One example is the use of prefixes (user:com.example:123)
to group your documents.


Multiple Places and Editability
Suppose you have a piece of data that shows up all over your application but you still want
to be able to edit that data. For example, a photo on flickr has a title. The photo can show
up in your photo stream, in sets, collections, groups on your flickr front page and in many
more places.

Usually, a photo’s title is shown with the photo. You could create a document for each
occurrence of the photo in each of the places. But then, if you change the title of your picture,
you need to update a bunch of documents. If you know this is a bounded number (no more
than 10-100 e.g.) and the renaming doesn’t have to happen simultaneously in all places
(which means an asynchronous background task could do the renames), using separate docs
for each occurrence can work fine.

However, if the number of copies is unbounded and could potentially lead you to update
thousands of documents, that approach probably won’t work. Instead, you would want to
keep the title and perhaps other identifying data in a single “photo information” document
and create a separate “photo placement” document for each place the photo appears (these
“photo placement” documents would each point to the photo’s information document). Now
when you display a photo you will make two lookups: one for the placement document and
then another for the photo information document. If you want to change the title of a photo,
you just edit the single photo information document and it will be changed everywhere on
your site.

There is a special trick you can use in Couchbase: Using view collation you can have a single
query answering for all the data you need. Christopher Lenz wrote an outstanding blog post
on this topic, highlighting three approaches to modeling using the blog example.

With views, Couchbase Server allows one to keep a single canonical source of a piece of data
while having it show up in many different places.

In the RDBMS world you are taught to normalize your data as much as possible; in the
NoSQL world you are taught to denormalize as much as possible. In both cases, the truth is
somewhere in the middle.




                                                7

                  © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY




Concurrency
Let’s stay with the blog example. There are multiple authors, maybe an editor, and each of
them is looking at a single article at any given time. No two people work on the same article,
usually. If you have data that you know is only edited by a single person at any given time, it’s
a good idea to place it into a single document.

Comments are different. Many people can write comments and they can do so independently
and simultaneously. Once the post is published comments can be added immediately. To
avoid write contention – that is, concurrent writes happening to the same document – you
can store comments in separate documents, thus ensuring that again, only one author is
editing a single document at any given time.

To avoid serializing and locking each comment author out or accidentally overwriting any
data, just store the posts ID with the comment to be able to fetch them back in one request
for displaying. (Note: Couchbase won’t allow overwriting data, but it requires more complex
code to handle that case, so it’s best to just avoid it if possible.)



Conclusion
The relational data model relies on rigid adherence to a database schema, normalization of
data and joins to store data and perform complex queries. Over the last 40 years, relational
modeling and query techniques have been well established and are familiar to most
application developers.

But changes in application, user and infrastructure characteristics have led application
developers and architects to seek alternative “NoSQL” (non-relational) database technologies.
Many view distributed document database technology as a natural successor to relational
database technology:

      •	 It effortlessly scales across commodity servers, virtual machines or cloud
         instances.

      •	 It doesn’t require a rigid schema before inserting data, nor does it require a
         schema change when different data must be captured and processed.

      •	 Its rich data model and view technology allows for complex data modeling,
         capture and queries.

It’s important to note that in some cases, additional storage may be required given the
preference for data denormalization. But the overall benefits in performance, scalability and
flexibility are usually, and increasingly, a more than fair trade.




                                                8

                  © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY




About Couchbase
Couchbase is the NoSQL database market share leader, with production deployments at ADP,
AOL, BMW, Cisco, Deutsche Post-DHL, Disney, Honda Motors, Zynga and hundreds of other
household brands worldwide. VMware CEO Paul Maritz recently identified the data model
transition from relational to NoSQL database technology as one of the two ongoing changes
most likely to transform the business of IT over the next decade. Couchbase is leading that
transition.

At the core of the Couchbase product family are three of the most widely deployed and
trusted open source data management technologies: CouchDB, Memcached and Membase.
Collectively, these technologies power millions of applications worldwide, including 18 of the
top 20 busiest web properties. Couchbase products combine these ingredient technologies
into a family of interoperable database solutions. The Couchbase team includes the inventors
and core committers from each of these projects – representing decades of development and
deployment experience in modern distributed, document-oriented database technology.

Couchbase offers the only family of interoperable database solutions spanning mobile device
to datacenter cloud:

      •	 Couchbase Server is a distributed, high-performance, document-
         oriented database. By automatically spreading data across commodity
         servers or virtual machines, Couchbase Server makes it easy to employ the
         optimal quantity of low-cost assets to meet the data management needs
         of a given application. And because there is no rigid database schema,
         applications can be more flexible to the needs of the business – capturing
         and processing whatever data is most relevant without requiring a database
         schema change.

      •	 Couchbase Mobile is a database optimized for the mobile computing
         environment, addressing intermittent network connectivity and
         constrained processing, storage, bandwidth and battery resources. It
         delivers the flexibility benefits of document-oriented database technology
         to developers of native iOS and Android applications.

      •	 CouchSync, a capability common to all Couchbase products, is a mature
         data replication technology enabling real-time data synchronization
         between devices and the cloud. It is this differentiating technology that
         really sets Couchbase apart – enabling millions of mobile devices to
         capture and present data, while performing aggregation, analysis and
         enrichment of that data “in the cloud.”

For more information, visit www.couchbase.com or www.couchbase.org.




                                              9

                 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM

More Related Content

Similar to Why NoSQL? A primer on Managing the Transition from RDBMS to NoSQL (20)

PDF
Terminal server
t_man
 
PDF
Using NoSQL databases to store RADIUS and Syslog data
Karri Huhtanen
 
PPSX
Exchange 2010 ha ctd
Kaliyan S
 
PDF
Navigating the Transition from relational to NoSQL - CloudCon Expo 2012
Dipti Borkar
 
PDF
Transition from relational to NoSQL Philly DAMA Day
Dipti Borkar
 
PPTX
Sp livenyc dow jones_10_21_2010_edit
Brian Guilfoyle
 
ODP
Firebird 2.1 What's New by Vladislav Khorsun (English)
Alexey Kovyazin
 
PDF
Don't Re-write Code to Get Better Analytics
Splunk
 
ODP
Nginx and friends - putting a turbo button on your site
Wim Godden
 
PPTX
RHCE (RED HAT CERTIFIED ENGINEERING)
Sumant Garg
 
PDF
Eigrp
firey
 
PDF
Thinking outside the box, learning a little about a lot
Mark Broadbent
 
PDF
Tcpip (Dharmender Kumar) 09990478253
guestda14e85
 
PDF
It's all about the timing
SensePost
 
PDF
757 08-switcharchp2
songoku218
 
PPTX
深入解析Oracle-数据库架构设计与性能优化实践
Guoqiang Gai
 
ODP
Caching and tuning fun for high scalability @ 4Developers
Wim Godden
 
PDF
EFL Munich - February 2013 - "Conversational Big Data with Erlang"
darach
 
PDF
Databases and the Cloud
Henrik Ingo
 
DOC
Serverless Thin Client
guestb980dc366
 
Terminal server
t_man
 
Using NoSQL databases to store RADIUS and Syslog data
Karri Huhtanen
 
Exchange 2010 ha ctd
Kaliyan S
 
Navigating the Transition from relational to NoSQL - CloudCon Expo 2012
Dipti Borkar
 
Transition from relational to NoSQL Philly DAMA Day
Dipti Borkar
 
Sp livenyc dow jones_10_21_2010_edit
Brian Guilfoyle
 
Firebird 2.1 What's New by Vladislav Khorsun (English)
Alexey Kovyazin
 
Don't Re-write Code to Get Better Analytics
Splunk
 
Nginx and friends - putting a turbo button on your site
Wim Godden
 
RHCE (RED HAT CERTIFIED ENGINEERING)
Sumant Garg
 
Eigrp
firey
 
Thinking outside the box, learning a little about a lot
Mark Broadbent
 
Tcpip (Dharmender Kumar) 09990478253
guestda14e85
 
It's all about the timing
SensePost
 
757 08-switcharchp2
songoku218
 
深入解析Oracle-数据库架构设计与性能优化实践
Guoqiang Gai
 
Caching and tuning fun for high scalability @ 4Developers
Wim Godden
 
EFL Munich - February 2013 - "Conversational Big Data with Erlang"
darach
 
Databases and the Cloud
Henrik Ingo
 
Serverless Thin Client
guestb980dc366
 

More from DATAVERSITY (20)

PDF
Architecture, Products, and Total Cost of Ownership of the Leading Machine Le...
DATAVERSITY
 
PDF
Data at the Speed of Business with Data Mastering and Governance
DATAVERSITY
 
PDF
Exploring Levels of Data Literacy
DATAVERSITY
 
PDF
Building a Data Strategy – Practical Steps for Aligning with Business Goals
DATAVERSITY
 
PDF
Make Data Work for You
DATAVERSITY
 
PDF
Data Catalogs Are the Answer – What is the Question?
DATAVERSITY
 
PDF
Data Catalogs Are the Answer – What Is the Question?
DATAVERSITY
 
PDF
Data Modeling Fundamentals
DATAVERSITY
 
PDF
Showing ROI for Your Analytic Project
DATAVERSITY
 
PDF
How a Semantic Layer Makes Data Mesh Work at Scale
DATAVERSITY
 
PDF
Is Enterprise Data Literacy Possible?
DATAVERSITY
 
PDF
The Data Trifecta – Privacy, Security & Governance Race from Reactivity to Re...
DATAVERSITY
 
PDF
Emerging Trends in Data Architecture – What’s the Next Big Thing?
DATAVERSITY
 
PDF
Data Governance Trends - A Look Backwards and Forwards
DATAVERSITY
 
PDF
Data Governance Trends and Best Practices To Implement Today
DATAVERSITY
 
PDF
2023 Trends in Enterprise Analytics
DATAVERSITY
 
PDF
Data Strategy Best Practices
DATAVERSITY
 
PDF
Who Should Own Data Governance – IT or Business?
DATAVERSITY
 
PDF
Data Management Best Practices
DATAVERSITY
 
PDF
MLOps – Applying DevOps to Competitive Advantage
DATAVERSITY
 
Architecture, Products, and Total Cost of Ownership of the Leading Machine Le...
DATAVERSITY
 
Data at the Speed of Business with Data Mastering and Governance
DATAVERSITY
 
Exploring Levels of Data Literacy
DATAVERSITY
 
Building a Data Strategy – Practical Steps for Aligning with Business Goals
DATAVERSITY
 
Make Data Work for You
DATAVERSITY
 
Data Catalogs Are the Answer – What is the Question?
DATAVERSITY
 
Data Catalogs Are the Answer – What Is the Question?
DATAVERSITY
 
Data Modeling Fundamentals
DATAVERSITY
 
Showing ROI for Your Analytic Project
DATAVERSITY
 
How a Semantic Layer Makes Data Mesh Work at Scale
DATAVERSITY
 
Is Enterprise Data Literacy Possible?
DATAVERSITY
 
The Data Trifecta – Privacy, Security & Governance Race from Reactivity to Re...
DATAVERSITY
 
Emerging Trends in Data Architecture – What’s the Next Big Thing?
DATAVERSITY
 
Data Governance Trends - A Look Backwards and Forwards
DATAVERSITY
 
Data Governance Trends and Best Practices To Implement Today
DATAVERSITY
 
2023 Trends in Enterprise Analytics
DATAVERSITY
 
Data Strategy Best Practices
DATAVERSITY
 
Who Should Own Data Governance – IT or Business?
DATAVERSITY
 
Data Management Best Practices
DATAVERSITY
 
MLOps – Applying DevOps to Competitive Advantage
DATAVERSITY
 
Ad

Recently uploaded (20)

PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
Ad

Why NoSQL? A primer on Managing the Transition from RDBMS to NoSQL

  • 1. Navigating the Transition From Relational to NoSQL Database Technology
  • 2. NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY Table of Contents Introduction 3 Why transition at all? 3 Scaling model Data model The relational vs. document-oriented data model 4 Relational data model Document data model Document Modeling: Rules of Thumb 6 Models (Primary) Keys Multiple Places and Editability Concurrency Conclusion 8 2 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
  • 3. NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY Introduction While the hype surrounding “NoSQL” (non-relational) database technology has become deafening, there is real substance beneath the often exaggerated claims. But like most things in life, the benefits come at a cost. Developers accustomed to data modeling and application development against relational database technology will need to approach things differently. This white paper highlights the differences between a relational database and a distributed document-oriented database, the implications for application development, and guidance that can ease the transition from relational to NoSQL database technology. Why transition at all? Change is hard and rarely undertaken unless it alleviates significant pain. The white paper NoSQL Database Technology provides a comprehensive look at the motivating challenges that have led to the emergence and rapid adoption of NoSQL database technology. In a nutshell, the transition has been spurred by the need for flexibility – both in the scaling model and the data model. Scaling model Relational database technology is a “scale up” technology – to add capacity (whether data storage or I/O capacity) one gets a bigger server. The modern approach to application architecture is to scale out, rather than scale up. Instead of buying a bigger server, you add more commodity servers, virtual machines or cloud instances behind a load balancer. Conversely, capacity can be easily removed when no longer required. While scaling out is already common at the application logic tier, database technology is only now catching up. Data model The scale-out deployment benefits of NoSQL technology frequently get the most attention, but equally important are the benefits afforded by a schemaless approach to data management. With a relational database, you must define a schema before adding records to the database. Each record added to the database must adhere strictly to this schema with its fixed columns and data types. Changing the database schema, particularly when dealing with a partitioned relational database spread across many servers, is difficult. If your data capture and management needs are constantly evolving, a rigid schema quickly becomes blocker to change. NoSQL databases (whether key-value, document, column-oriented or otherwise) scale out, and they don’t require schema definition prior to inserting data nor a schema change when data capture and management needs evolve. The rest of this paper will focus on distributed document-oriented NoSQL database technology – with Couchbase and MongoDB being the two most visible and widely adopted examples. 3 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
  • 4. NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY The relational vs. document-oriented data model The figure below compares four records from a relational database with four from a document-oriented database. { “UUID”: “21f7f8de-8051-5b89-86 “Time”: “2011-04-01T13:01:02.42 { “Server”: “A2223E”, “UUID”:“Calling Server”: “A2213W”, “21f7f8de-8051-5b89-86 “Time”: “Type”: “E100”, “2011-04-01T13:01:02.42 { R1C1 R1C2 R1C3 R1C4 “Server”:“Initiating User”: “[email protected]”, “A2223E”, “UUID”:“Calling Server”: “A2213W”, “21f7f8de-8051-5b89-86 “Details”: “Time”: “Type”: “E100”, “2011-04-01T13:01:02.42 { { “Server”:“Initiating User”: “[email protected]”, “A2223E”, “UUID”:“Calling Server”: “A2213W”,“10.1.1.22”, “21f7f8de-8051-5b89-86 “IP”: “Details”: “2011-04-01T13:01:02.42 “InsertDVDQueueItem”, “Time”: “Type”: “E100”, “API”: { “Trace”: “cleansed”, “Server”:“Initiating User”: “[email protected]”, “A2223E”, R2C1 R2C2 R2C3 R2C4 “Calling “Details”: “IP”: “10.1.1.22”, Server”: “A2213W”, “Tags”: “API”: “InsertDVDQueueItem”, “Type”: “E100”, [ { “Trace”: “cleansed”, “Initiating User”: “[email protected]”, “SERVER”, “IP”: “10.1.1.22”, “Tags”: “Details”: “US-West”, “API”: “InsertDVDQueueItem”, [ { “API” “Trace”: “cleansed”, “SERVER”, “IP”: “10.1.1.22”, ] “Tags”: R3C1 R3C2 R3C3 R3C4 “US-West”, “API”: “InsertDVDQueueItem”, [ } “Trace”: “cleansed”, } “API” “SERVER”, ] “Tags”: “US-West”, } [ } “API” “SERVER”, ] “US-West”, } R4C1 R4C2 R4C3 R4C4 } “API” ] } } Relational data model Document data model Highly-structured table Collection of complex documents organization with rigidly-defined with arbitrary, nested data formats data formats and record structure. and varying “record” format. Relational data model As shown above, each record in a relational database conforms to a schema – with a fixed number of fields (columns) each having a specified purpose and data type. Every record is the same. If you wish to capture different data in the future, the database schema must be revised. Additionally, the relational model is characterized by database normalization, where large tables are decomposed into smaller, interrelated tables. The figure below illustrates the concept: Table 1: Error Log Table 2: Data Centers KEY ERR TIME DC KEY LOC NUM 1 ERR TIME FK(DC2) 303-223- 1 DEN 2332 2 ERR TIME FK(DC2) 212-223- 2 NYC 2332 3 ERR TIME FK(DC2) 3 SFO 415-223- 2332 4 ERR TIME FK(DC3) 4 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
  • 5. NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY In the above example, the database is used to store error log information. Each error record (each row in Table 1) consists of an error number (ERR), the time the error occurred (TIME) and the datacenter (DC) in which the error occurred. Instead of repeating all the datacenter information in each error record (location, phone number), each error record points to a row in the in the Data Centers Table (Table 2) which includes the location of the datacenter (LOC) and the phone number (NUM). In the relational model, records are “striped” across multiple tables, with some data shared by multiple records (multiple error records share the same data center information). The upside is that there is less duplicated data in the database. The downside is that a change in a single record can mean locking down many tables simultaneously to ensure a change doesn’t leave the database in an inconsistent state. ACID transactions can be complex on a relational database because the data, even of a single record, is spread about. This complex web of interrelationships between shared data items is what makes it so difficult to distribute relational data across multiple servers and can lead to performance challenges both reading and writing data. When storage resources were expensive and scarce, the tradeoffs made sense. But the price of storage has dropped precipitously over the last 40 years, to say the least. For many, the tradeoff calculus no longer makes sense. Using more storage in exchange for better application performance and the ability to easily distribute workloads across machines is now the best choice for many applications. Document data model Use of the term “document” is a bit confusing. A document-oriented database really has nothing to do with “documents” in the classical sense of the word. It doesn’t mean books, letters or articles. Rather, a document in this case refers to a data record that is self- describing as to the data elements it contains. XML documents, HTML documents and JSON documents are examples of “documents” in this context. Couchbase Server (which contains Apache CouchDB as an ingredient technology) is a document-oriented database that uses JSON as the document format. In Couchbase, error records would look like this: { “ID”: 1, “ERR”: “Out of Memory”, “TIME”: “2004-09-16T23:59:58.75”, “DC”: “NYC”, “NUM”: “212-223-2332” } { “ID”: 2, “ERR”: “ECC Error”, “TIME”: “2004-09-16T23:59:59.00”, “DC”: “NYC”, “NUM”: “212-223-2332” } 5 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
  • 6. NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY As can be seen, the data is denormalized. Each record contains a complete set of information related to the error without external reference. The records are self-contained. This makes it very easy to move the entire record to another server – all the information simply comes along with it. There is no concern about having parts of the record in other tables left behind. And because only the self-contained record (document) needs to be updated when changes are made (versus changing entries in multiple tables simultaneously), ensuring ACID compliance is far easier, at record boundaries. Performance is also increased on reads. But complete data denormalization is not required in a document database, as highlighted in the next section. In fact, in this particular example, maintaining documents representing each datacenter and simply referencing those from each error record would probably be the right decision. Separation would eliminate duplication and allow quick changes to information shared across many records (e.g. if the telephone number for the datacenter changed, there would be no need to go update it in every error record). Ultimately, however, data modeling decisions are dependent on the use case and planned update patterns. Document Modeling: Rules of Thumb It takes a while to unlearn habits. But do not fear: by understanding alternatives you will be able to make more efficient use of your trusted knowledge as well. After all, the tool best suited for the job will leave you with the least headache. If you know more tools, you can choose more wisely. Models In an application, data objects are a central construct – the model layer in Model-View- Controller (MVC). These are the documents that hold your data and let you manipulate it. If a blog has posts and comments, these are likely two different models. Ideally, you should have a separate document for every post and every comment. When looking at an existing application, stop at the Object-Relational Mapping (ORM) layer. Instead of splitting your models up into tables and rows, turn them into JSON and make them a document. Each document gets a unique ID by which you can find it later. Done. (Primary) Keys In the NoSQL world the document ID is the one and only key to a document. They are roughly equivalent to primary keys in a relational database. Usually an ID can only appear once in a database (different NoSQL solutions have different names for these: buckets, collections, tables etc. The idea is roughly similar to a table in an RDBMS. You can have many per server). 6 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
  • 7. NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY Some NoSQL database systems sort data by ID. Data with nearby IDs can be accessed more efficiently than IDs that are all over the place. Keeping data that you tend to access at the same time closer together makes your application faster. The larger point here though is that an ID-lookup is extremely fast, and by selecting clever IDs you can make your life a lot easier. One example is the use of prefixes (user:com.example:123) to group your documents. Multiple Places and Editability Suppose you have a piece of data that shows up all over your application but you still want to be able to edit that data. For example, a photo on flickr has a title. The photo can show up in your photo stream, in sets, collections, groups on your flickr front page and in many more places. Usually, a photo’s title is shown with the photo. You could create a document for each occurrence of the photo in each of the places. But then, if you change the title of your picture, you need to update a bunch of documents. If you know this is a bounded number (no more than 10-100 e.g.) and the renaming doesn’t have to happen simultaneously in all places (which means an asynchronous background task could do the renames), using separate docs for each occurrence can work fine. However, if the number of copies is unbounded and could potentially lead you to update thousands of documents, that approach probably won’t work. Instead, you would want to keep the title and perhaps other identifying data in a single “photo information” document and create a separate “photo placement” document for each place the photo appears (these “photo placement” documents would each point to the photo’s information document). Now when you display a photo you will make two lookups: one for the placement document and then another for the photo information document. If you want to change the title of a photo, you just edit the single photo information document and it will be changed everywhere on your site. There is a special trick you can use in Couchbase: Using view collation you can have a single query answering for all the data you need. Christopher Lenz wrote an outstanding blog post on this topic, highlighting three approaches to modeling using the blog example. With views, Couchbase Server allows one to keep a single canonical source of a piece of data while having it show up in many different places. In the RDBMS world you are taught to normalize your data as much as possible; in the NoSQL world you are taught to denormalize as much as possible. In both cases, the truth is somewhere in the middle. 7 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
  • 8. NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY Concurrency Let’s stay with the blog example. There are multiple authors, maybe an editor, and each of them is looking at a single article at any given time. No two people work on the same article, usually. If you have data that you know is only edited by a single person at any given time, it’s a good idea to place it into a single document. Comments are different. Many people can write comments and they can do so independently and simultaneously. Once the post is published comments can be added immediately. To avoid write contention – that is, concurrent writes happening to the same document – you can store comments in separate documents, thus ensuring that again, only one author is editing a single document at any given time. To avoid serializing and locking each comment author out or accidentally overwriting any data, just store the posts ID with the comment to be able to fetch them back in one request for displaying. (Note: Couchbase won’t allow overwriting data, but it requires more complex code to handle that case, so it’s best to just avoid it if possible.) Conclusion The relational data model relies on rigid adherence to a database schema, normalization of data and joins to store data and perform complex queries. Over the last 40 years, relational modeling and query techniques have been well established and are familiar to most application developers. But changes in application, user and infrastructure characteristics have led application developers and architects to seek alternative “NoSQL” (non-relational) database technologies. Many view distributed document database technology as a natural successor to relational database technology: • It effortlessly scales across commodity servers, virtual machines or cloud instances. • It doesn’t require a rigid schema before inserting data, nor does it require a schema change when different data must be captured and processed. • Its rich data model and view technology allows for complex data modeling, capture and queries. It’s important to note that in some cases, additional storage may be required given the preference for data denormalization. But the overall benefits in performance, scalability and flexibility are usually, and increasingly, a more than fair trade. 8 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM
  • 9. NAVIGATING THE TRANSITION FROM RELATIONAL TO NOSQL DATABASE TECHNOLOGY About Couchbase Couchbase is the NoSQL database market share leader, with production deployments at ADP, AOL, BMW, Cisco, Deutsche Post-DHL, Disney, Honda Motors, Zynga and hundreds of other household brands worldwide. VMware CEO Paul Maritz recently identified the data model transition from relational to NoSQL database technology as one of the two ongoing changes most likely to transform the business of IT over the next decade. Couchbase is leading that transition. At the core of the Couchbase product family are three of the most widely deployed and trusted open source data management technologies: CouchDB, Memcached and Membase. Collectively, these technologies power millions of applications worldwide, including 18 of the top 20 busiest web properties. Couchbase products combine these ingredient technologies into a family of interoperable database solutions. The Couchbase team includes the inventors and core committers from each of these projects – representing decades of development and deployment experience in modern distributed, document-oriented database technology. Couchbase offers the only family of interoperable database solutions spanning mobile device to datacenter cloud: • Couchbase Server is a distributed, high-performance, document- oriented database. By automatically spreading data across commodity servers or virtual machines, Couchbase Server makes it easy to employ the optimal quantity of low-cost assets to meet the data management needs of a given application. And because there is no rigid database schema, applications can be more flexible to the needs of the business – capturing and processing whatever data is most relevant without requiring a database schema change. • Couchbase Mobile is a database optimized for the mobile computing environment, addressing intermittent network connectivity and constrained processing, storage, bandwidth and battery resources. It delivers the flexibility benefits of document-oriented database technology to developers of native iOS and Android applications. • CouchSync, a capability common to all Couchbase products, is a mature data replication technology enabling real-time data synchronization between devices and the cloud. It is this differentiating technology that really sets Couchbase apart – enabling millions of mobile devices to capture and present data, while performing aggregation, analysis and enrichment of that data “in the cloud.” For more information, visit www.couchbase.com or www.couchbase.org. 9 © 2011 COUCHBASE ALL RIGHTS RESERVED. WWW.COUCHBASE.COM