SlideShare une entreprise Scribd logo
1  sur  42
Télécharger pour lire hors ligne
September 19, 2013
Speaker: David Wolfe
Topics
What is SQL? What is NoSQL?
 Why have relational databases been
successful?
 Why did NoSQL databases emerge?
 How are their data models different?

SQL & relational databases
Relational databases are software
applications that store data
 Data is stored in tables that have rows &
columns : think excel spreadsheets


FirstName LastName Age

Zipcode

Gender

Bob

Smith

45

38444

M

Jane

Happy

23

15122

F

Fred

Jones

55

92102

M

Johnny

Appleseed

26

90025

M
SQL & relational databases


Relational databases typically have
many tables that are “related” to one
another
SQL & relational databases
Relational databases support access to
data in tables through a language called
“SQL” – Structured Query Language
 SQL supports “set” based operations on
tables – selection, projection, joining




SQL is based on relational algebra
SQL & relational databases
Relational databases were developed in
the late 1970s at IBM
 They have been the dominant approach
to data management in the enterprise
through the early 2000’s
 Examples include







Oracle
Sybase
MySQL
Postgress
NoSQL databases
NoSQL are software applications that
store data
 They, not surprisingly, do not use SQL or
the relational model (interrelated tables)
 They are “less strict” about data
definition
 They were developed in a “big-data”
world for applications needing massive
scalability (clustering)

NoSQL databases


There are many types of NoSQL
databases

We will review the differences later
RDBMS value - persistence
During the 90’s and 2000’s as pc’s
became ubiquitous, distributed
computing took off.
 In the 1990’s, client-server and n-tier
architectures dominated enterprise
development
 The late 90’s and 2000’s saw the
dominance of the web and distributed
applications that broke out of enterprise

RDBMS value - persistence


In this distributed world where
applications needed to keep data
around for
 Many users

 Extended periods

RDBMS emerged as the defacto choice for
persisting data.
RDBMS value - concurrency


Another challenge that distributed
applications presented was
concurrency:
 many users viewing and potentially updating

the same data at the same time

Concurrency is notoriously difficult to
get right for even the best engineers.
 Relational databases “helped” by
controlling data access with transactions

RDBMS value - integration


Enterprise application eco-systems
necessitate multiple integrated software
applications. Example
 Customer Service app

 Biz Intel app
 E-Commerce app
 Inventory management apps



Common approach was to use a shared
rdbms database integration approach.
RDBMS value – SQL
RDBMS providers all supported a core
SQL standard
 In theory this would allow developers to
switch reliance on different RDBMS
providers without problems
 In fact, different providers (Oracle,
Sybase, Microsoft) developed different
“dialects” or SQL extensions (pl SQL vs.
T-SQL)

Crack #1– impedance mismatch


Impedance mismatch is the difference
between the relational model and inmemory data structures
Crack #1– impedance mismatch
In the late 1990s people believed that
impedance mismatch would lead to
RDBMS being replaced by databases
that replicated in-memory structures to
disk (OODBMS)
 While the 1990s saw the rise of OO
programming languages, OODBMS
never took gained real traction

Crack #1– impedance mismatch


OODBMS didn’t gain traction because
 Impedance mismatch had been made easier

to deal with by Object-Relational (OR)
mapping frameworks like Hibernate, iBatis,
& Cocoon
 There was a growing professional divide
between application developers and
database administrators
 The value of RDBMS as an app integration
mechanism was large
Crack #2– SOA
The 2000’s saw a shift in how enterprise
applications interacted
 Historically, many applications interacted
through a shared RDBMS.
 This approach – shared integration
RDBMS – has serious problems


 Overly complex schema
 Cant change tables or add indices easily
 Database has to preserve integrity
Crack #2– SOA
Interactions between applications shifted
to web-services
 Web-services constituted protocols for
moving documents (XML, JSON) over
HTTP using SOAP or REST based
approaches
 SOA allowed applications to
encapsulate data and expose it through
services

The Final Crack #3– Clusters
The internet saw several large web
properties dramatically increase in scale
 Websites started tracking activity and
structure in a very detailed way









Social gestures
Social links
Log data
Purchase gestures

Increasing numbers of users appeared
using more devices
The Final Crack #3– Clusters
The problem with scaling out (clustering)
is that RDBMS are not designed to run
on clusters.
 Oracle RAC & MS SQL Server all use
the concept of a shared disk sub-system


 Still single point of failure and scaling

limitation


The final crack – mismatch between
RDBMS & clusters
NoSQL Emergence


The emergence of NoSQL was really
about needing databases that run on
clusters




One exception is Graph databases

Though problems with shared database
integration and impedance mismatch
existed, it was the need for scale that
drove the emergence of NoSQL
databases
Aggregate Data Models
A key characteristic of NoSQL
databases is that they do not use the
Relational data metamodel (relations &
tuples)
 There are four types of data
metamodels in the NoSQL eco-system







Key-value
Document
Column-family
Graph
Aggregate Data Models


Key-value, document, and columnfamily NoSQL databases share a
common characteristic of their data
models called “aggregate orientation”


We ill not cover graph based data metamodels in this presentation
Aggregates
The relational model takes information
you want to store and divides it into
rows.
 Rows are lists of simple data values.
 Rows are the unit of data operation
 Aggregate orientation recognizes that
often times data units can be more
complex and can have nested lists and
record structures

Aggregates







The relational model takes information you
want to store and divides it into rows.
In RDBMS rows are lists of simple data
values.
In RDBMS rows are the unit of data
operation
Aggregate orientation recognizes that often
times data units can be more complex and
can have nested lists and record structures
With Aggregates, aggregates are the unit
of data operation
Relational Data Example
Aggregate Data Example
Consequences of Aggregate
Orientation
Relations capture data elements and
relations, but not aggregates.
 Aggregates are really “chunks” of data
that are typically retrieved and operated
on as an interaction unit.
 Aggregates are about how the data is
being used.
 RDBMS do not have knowledge of
aggregate structure and cant use it to
store and distribute data

Consequences of Aggregate
Orientation
So, RDBMS are aggregate-ignorant. Is
that a bad or good thing? Its both
 Its good if you need to access and use
the data in many different ways – if you
don’t have a primary structure for
manipulating your data
 Its bad if you want to run on a cluster.
 Aggregates are great on clusters
because you can distribute them across
nodes

Consequences of Aggregate
Orientation
Aggregate orientation allows you to
operate many logical data items (in the
aggregate) by updating the aggregate
atomically
 Aggregate oriented NoSQL databases
can be said to support transactions on
single aggregates, but not across
aggregates

Key-Value & Document Data
Models
Both types of databases have a key or
Id that is mapped to an aggregate data
structure in a virtual table
 With key-value NoSQL dbs, we can only
access the aggregate by looking up its
key
 With document databases we can also
look up aggregates by fields in the
aggregate

Key-Value & Document Data
Models


Examples of Key-Value NoSQL dbs are
 Redis



Examples of Document NoSQL dbs are
 Mongodb
 Couchbase
 SimpleDB
Column-Family Data Models
These NoSQL databases where
influenced by Google’s BigTable
 The Columnar is a two-level aggregate
structure


 There is a key (row identifier) that maps to

the aggregate of interest
 The aggregate is a map of more detailed
values – these are referred to as columns
Column-Family Data Models
Column-Family Data Models
Column-family dbs organize columns
into families
 The data is row-oriented


 Each row is an aggregate (eg. Customer

with id 1234)


The data is column-oriented
 Each column family defines a record type

(customer profile)


But, columns can also be dynamic and
unique (to model lists)
Column-Family Data Models


Examples of Column-Family NoSQL dbs
are
 Hbase
 Cassandra
Polyglot Persistence
The future?
 Only NoSQL?
 Only SQL?


Probably both – Polyglot Persistence

Contenu connexe

Tendances

A STUDY ON GRAPH STORAGE DATABASE OF NOSQL
A STUDY ON GRAPH STORAGE DATABASE OF NOSQLA STUDY ON GRAPH STORAGE DATABASE OF NOSQL
A STUDY ON GRAPH STORAGE DATABASE OF NOSQLijscai
 
Data Modeling PPT
Data Modeling PPTData Modeling PPT
Data Modeling PPTTrinath
 
An Ontology for K-12 Education and the NIEM
An Ontology for K-12 Education and the NIEMAn Ontology for K-12 Education and the NIEM
An Ontology for K-12 Education and the NIEMOptum
 
Data base management system
Data base management systemData base management system
Data base management systemNavneet Jingar
 
NOSQL Database Engines for Big Data Management
NOSQL Database Engines for Big Data ManagementNOSQL Database Engines for Big Data Management
NOSQL Database Engines for Big Data Managementijtsrd
 
Data resource management
Data resource managementData resource management
Data resource managementNirajan Silwal
 
NoSQL_Databases
NoSQL_DatabasesNoSQL_Databases
NoSQL_DatabasesRick Perry
 
Comparative study of relational and non relations database performances using...
Comparative study of relational and non relations database performances using...Comparative study of relational and non relations database performances using...
Comparative study of relational and non relations database performances using...IAEME Publication
 
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]Usman Tariq
 
data modeling and models
data modeling and modelsdata modeling and models
data modeling and modelssabah N
 
Modern database management system chapter 1
Modern database management system chapter 1Modern database management system chapter 1
Modern database management system chapter 1AyeshaShoukat5
 

Tendances (18)

A STUDY ON GRAPH STORAGE DATABASE OF NOSQL
A STUDY ON GRAPH STORAGE DATABASE OF NOSQLA STUDY ON GRAPH STORAGE DATABASE OF NOSQL
A STUDY ON GRAPH STORAGE DATABASE OF NOSQL
 
Mest
MestMest
Mest
 
Data models
Data modelsData models
Data models
 
02010 ppt ch02
02010 ppt ch0202010 ppt ch02
02010 ppt ch02
 
Data Modeling PPT
Data Modeling PPTData Modeling PPT
Data Modeling PPT
 
METS
METSMETS
METS
 
Lecture#5
Lecture#5Lecture#5
Lecture#5
 
Database systems introduction
Database systems introductionDatabase systems introduction
Database systems introduction
 
An Ontology for K-12 Education and the NIEM
An Ontology for K-12 Education and the NIEMAn Ontology for K-12 Education and the NIEM
An Ontology for K-12 Education and the NIEM
 
Data base management system
Data base management systemData base management system
Data base management system
 
NOSQL Database Engines for Big Data Management
NOSQL Database Engines for Big Data ManagementNOSQL Database Engines for Big Data Management
NOSQL Database Engines for Big Data Management
 
Data resource management
Data resource managementData resource management
Data resource management
 
Database management systems
Database management systemsDatabase management systems
Database management systems
 
NoSQL_Databases
NoSQL_DatabasesNoSQL_Databases
NoSQL_Databases
 
Comparative study of relational and non relations database performances using...
Comparative study of relational and non relations database performances using...Comparative study of relational and non relations database performances using...
Comparative study of relational and non relations database performances using...
 
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
Data Models [DATABASE SYSTEMS: Design, Implementation, and Management]
 
data modeling and models
data modeling and modelsdata modeling and models
data modeling and models
 
Modern database management system chapter 1
Modern database management system chapter 1Modern database management system chapter 1
Modern database management system chapter 1
 

Similaire à SQL vs NoSQL Databases: Relational vs Aggregate Data Models

DATABASE MANAGEMENT SYSTEM-MRS. LAXMI B PANDYA FOR 25TH AUGUST,2022.pptx
DATABASE MANAGEMENT SYSTEM-MRS. LAXMI B PANDYA FOR 25TH AUGUST,2022.pptxDATABASE MANAGEMENT SYSTEM-MRS. LAXMI B PANDYA FOR 25TH AUGUST,2022.pptx
DATABASE MANAGEMENT SYSTEM-MRS. LAXMI B PANDYA FOR 25TH AUGUST,2022.pptxLaxmi Pandya
 
data base system to new data science lerne
data base system to new data science lernedata base system to new data science lerne
data base system to new data science lernetarunprajapati0t
 
CS828 P5 Individual Project v101
CS828 P5 Individual Project v101CS828 P5 Individual Project v101
CS828 P5 Individual Project v101ThienSi Le
 
Module-1.pptx63.pptx
Module-1.pptx63.pptxModule-1.pptx63.pptx
Module-1.pptx63.pptxShrinivasa6
 
NOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQLNOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQLRamakant Soni
 
NOSQL in big data is the not only structure langua.pdf
NOSQL in big data is the not only structure langua.pdfNOSQL in big data is the not only structure langua.pdf
NOSQL in big data is the not only structure langua.pdfajajkhan16
 
Non relational databases-no sql
Non relational databases-no sqlNon relational databases-no sql
Non relational databases-no sqlRam kumar
 
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENTHYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENTIJCSEA Journal
 
NOSQL Databases types and Uses
NOSQL Databases types and UsesNOSQL Databases types and Uses
NOSQL Databases types and UsesSuvradeep Rudra
 
2.Introduction to NOSQL (Core concepts).pptx
2.Introduction to NOSQL (Core concepts).pptx2.Introduction to NOSQL (Core concepts).pptx
2.Introduction to NOSQL (Core concepts).pptxRushikeshChikane2
 

Similaire à SQL vs NoSQL Databases: Relational vs Aggregate Data Models (20)

DATABASE MANAGEMENT SYSTEM-MRS. LAXMI B PANDYA FOR 25TH AUGUST,2022.pptx
DATABASE MANAGEMENT SYSTEM-MRS. LAXMI B PANDYA FOR 25TH AUGUST,2022.pptxDATABASE MANAGEMENT SYSTEM-MRS. LAXMI B PANDYA FOR 25TH AUGUST,2022.pptx
DATABASE MANAGEMENT SYSTEM-MRS. LAXMI B PANDYA FOR 25TH AUGUST,2022.pptx
 
data base system to new data science lerne
data base system to new data science lernedata base system to new data science lerne
data base system to new data science lerne
 
CS828 P5 Individual Project v101
CS828 P5 Individual Project v101CS828 P5 Individual Project v101
CS828 P5 Individual Project v101
 
Module-1.pptx63.pptx
Module-1.pptx63.pptxModule-1.pptx63.pptx
Module-1.pptx63.pptx
 
Unit-10.pptx
Unit-10.pptxUnit-10.pptx
Unit-10.pptx
 
nosql.pptx
nosql.pptxnosql.pptx
nosql.pptx
 
NOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQLNOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQL
 
NOSQL in big data is the not only structure langua.pdf
NOSQL in big data is the not only structure langua.pdfNOSQL in big data is the not only structure langua.pdf
NOSQL in big data is the not only structure langua.pdf
 
NoSQL Basics and MongDB
NoSQL Basics and  MongDBNoSQL Basics and  MongDB
NoSQL Basics and MongDB
 
Non relational databases-no sql
Non relational databases-no sqlNon relational databases-no sql
Non relational databases-no sql
 
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENTHYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
 
Nosql
NosqlNosql
Nosql
 
NoSQL
NoSQLNoSQL
NoSQL
 
No sq lv2
No sq lv2No sq lv2
No sq lv2
 
Report 1.0.docx
Report 1.0.docxReport 1.0.docx
Report 1.0.docx
 
Nosql
NosqlNosql
Nosql
 
NOSQL Databases types and Uses
NOSQL Databases types and UsesNOSQL Databases types and Uses
NOSQL Databases types and Uses
 
Report 2.0.docx
Report 2.0.docxReport 2.0.docx
Report 2.0.docx
 
2.Introduction to NOSQL (Core concepts).pptx
2.Introduction to NOSQL (Core concepts).pptx2.Introduction to NOSQL (Core concepts).pptx
2.Introduction to NOSQL (Core concepts).pptx
 
No sql database
No sql databaseNo sql database
No sql database
 

Dernier

08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 

Dernier (20)

08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 

SQL vs NoSQL Databases: Relational vs Aggregate Data Models

  • 2. Topics What is SQL? What is NoSQL?  Why have relational databases been successful?  Why did NoSQL databases emerge?  How are their data models different? 
  • 3.
  • 4. SQL & relational databases Relational databases are software applications that store data  Data is stored in tables that have rows & columns : think excel spreadsheets  FirstName LastName Age Zipcode Gender Bob Smith 45 38444 M Jane Happy 23 15122 F Fred Jones 55 92102 M Johnny Appleseed 26 90025 M
  • 5. SQL & relational databases  Relational databases typically have many tables that are “related” to one another
  • 6. SQL & relational databases Relational databases support access to data in tables through a language called “SQL” – Structured Query Language  SQL supports “set” based operations on tables – selection, projection, joining   SQL is based on relational algebra
  • 7. SQL & relational databases Relational databases were developed in the late 1970s at IBM  They have been the dominant approach to data management in the enterprise through the early 2000’s  Examples include      Oracle Sybase MySQL Postgress
  • 8.
  • 9. NoSQL databases NoSQL are software applications that store data  They, not surprisingly, do not use SQL or the relational model (interrelated tables)  They are “less strict” about data definition  They were developed in a “big-data” world for applications needing massive scalability (clustering) 
  • 10. NoSQL databases  There are many types of NoSQL databases We will review the differences later
  • 11.
  • 12. RDBMS value - persistence During the 90’s and 2000’s as pc’s became ubiquitous, distributed computing took off.  In the 1990’s, client-server and n-tier architectures dominated enterprise development  The late 90’s and 2000’s saw the dominance of the web and distributed applications that broke out of enterprise 
  • 13. RDBMS value - persistence  In this distributed world where applications needed to keep data around for  Many users  Extended periods RDBMS emerged as the defacto choice for persisting data.
  • 14. RDBMS value - concurrency  Another challenge that distributed applications presented was concurrency:  many users viewing and potentially updating the same data at the same time Concurrency is notoriously difficult to get right for even the best engineers.  Relational databases “helped” by controlling data access with transactions 
  • 15. RDBMS value - integration  Enterprise application eco-systems necessitate multiple integrated software applications. Example  Customer Service app  Biz Intel app  E-Commerce app  Inventory management apps  Common approach was to use a shared rdbms database integration approach.
  • 16. RDBMS value – SQL RDBMS providers all supported a core SQL standard  In theory this would allow developers to switch reliance on different RDBMS providers without problems  In fact, different providers (Oracle, Sybase, Microsoft) developed different “dialects” or SQL extensions (pl SQL vs. T-SQL) 
  • 17.
  • 18. Crack #1– impedance mismatch  Impedance mismatch is the difference between the relational model and inmemory data structures
  • 19. Crack #1– impedance mismatch In the late 1990s people believed that impedance mismatch would lead to RDBMS being replaced by databases that replicated in-memory structures to disk (OODBMS)  While the 1990s saw the rise of OO programming languages, OODBMS never took gained real traction 
  • 20. Crack #1– impedance mismatch  OODBMS didn’t gain traction because  Impedance mismatch had been made easier to deal with by Object-Relational (OR) mapping frameworks like Hibernate, iBatis, & Cocoon  There was a growing professional divide between application developers and database administrators  The value of RDBMS as an app integration mechanism was large
  • 21. Crack #2– SOA The 2000’s saw a shift in how enterprise applications interacted  Historically, many applications interacted through a shared RDBMS.  This approach – shared integration RDBMS – has serious problems   Overly complex schema  Cant change tables or add indices easily  Database has to preserve integrity
  • 22. Crack #2– SOA Interactions between applications shifted to web-services  Web-services constituted protocols for moving documents (XML, JSON) over HTTP using SOAP or REST based approaches  SOA allowed applications to encapsulate data and expose it through services 
  • 23. The Final Crack #3– Clusters The internet saw several large web properties dramatically increase in scale  Websites started tracking activity and structure in a very detailed way       Social gestures Social links Log data Purchase gestures Increasing numbers of users appeared using more devices
  • 24. The Final Crack #3– Clusters The problem with scaling out (clustering) is that RDBMS are not designed to run on clusters.  Oracle RAC & MS SQL Server all use the concept of a shared disk sub-system   Still single point of failure and scaling limitation  The final crack – mismatch between RDBMS & clusters
  • 25. NoSQL Emergence  The emergence of NoSQL was really about needing databases that run on clusters   One exception is Graph databases Though problems with shared database integration and impedance mismatch existed, it was the need for scale that drove the emergence of NoSQL databases
  • 26.
  • 27. Aggregate Data Models A key characteristic of NoSQL databases is that they do not use the Relational data metamodel (relations & tuples)  There are four types of data metamodels in the NoSQL eco-system      Key-value Document Column-family Graph
  • 28. Aggregate Data Models  Key-value, document, and columnfamily NoSQL databases share a common characteristic of their data models called “aggregate orientation”  We ill not cover graph based data metamodels in this presentation
  • 29. Aggregates The relational model takes information you want to store and divides it into rows.  Rows are lists of simple data values.  Rows are the unit of data operation  Aggregate orientation recognizes that often times data units can be more complex and can have nested lists and record structures 
  • 30. Aggregates      The relational model takes information you want to store and divides it into rows. In RDBMS rows are lists of simple data values. In RDBMS rows are the unit of data operation Aggregate orientation recognizes that often times data units can be more complex and can have nested lists and record structures With Aggregates, aggregates are the unit of data operation
  • 33. Consequences of Aggregate Orientation Relations capture data elements and relations, but not aggregates.  Aggregates are really “chunks” of data that are typically retrieved and operated on as an interaction unit.  Aggregates are about how the data is being used.  RDBMS do not have knowledge of aggregate structure and cant use it to store and distribute data 
  • 34. Consequences of Aggregate Orientation So, RDBMS are aggregate-ignorant. Is that a bad or good thing? Its both  Its good if you need to access and use the data in many different ways – if you don’t have a primary structure for manipulating your data  Its bad if you want to run on a cluster.  Aggregates are great on clusters because you can distribute them across nodes 
  • 35. Consequences of Aggregate Orientation Aggregate orientation allows you to operate many logical data items (in the aggregate) by updating the aggregate atomically  Aggregate oriented NoSQL databases can be said to support transactions on single aggregates, but not across aggregates 
  • 36. Key-Value & Document Data Models Both types of databases have a key or Id that is mapped to an aggregate data structure in a virtual table  With key-value NoSQL dbs, we can only access the aggregate by looking up its key  With document databases we can also look up aggregates by fields in the aggregate 
  • 37. Key-Value & Document Data Models  Examples of Key-Value NoSQL dbs are  Redis  Examples of Document NoSQL dbs are  Mongodb  Couchbase  SimpleDB
  • 38. Column-Family Data Models These NoSQL databases where influenced by Google’s BigTable  The Columnar is a two-level aggregate structure   There is a key (row identifier) that maps to the aggregate of interest  The aggregate is a map of more detailed values – these are referred to as columns
  • 40. Column-Family Data Models Column-family dbs organize columns into families  The data is row-oriented   Each row is an aggregate (eg. Customer with id 1234)  The data is column-oriented  Each column family defines a record type (customer profile)  But, columns can also be dynamic and unique (to model lists)
  • 41. Column-Family Data Models  Examples of Column-Family NoSQL dbs are  Hbase  Cassandra
  • 42. Polyglot Persistence The future?  Only NoSQL?  Only SQL?  Probably both – Polyglot Persistence