SlideShare a Scribd company logo
9
NoSQL Database Classification

   Key-value stores: Data is saved with a unique key and a value.
    This is incredibly fast and this can scale to large size.

   Column stores: They store all of the values for a column together
    in a stream instead of storing records.

   Document stores: They save data without it being structured in a
    schema, with buckets of key-value pairs inside a self-contained
    object.
Most read
17
   Flexible data models, NoSQL Key Value stores and document
    databases allow the application to store virtually any structure it
    wants in a data element.

   Elastic scaling, NoSQL databases are designed to expand
    transparently to take advantage of new nodes, and they’re usually
    designed with low-cost commodity hardware in mind.

   Economics, NoSQL databases typically use clusters of cheap
    commodity servers
Most read
21
Reference
   1. Neal Leavitt, “Will NoSQL live up to their promise”, IEEE
    Computer Society volume: 43 issue: 2, February, 2010, pp.12-14.

   2. Carlos Coronel, Steven Morris, Peter Rob,” Database Systems:
    Design,     Implementation,     and     Management”,         Tenth
    Edition, 2013, pp.47-49.

   3.   Pethuru   Raj,”   Cloud   Enterprise   Architecture”,   CRC
    press, 2013, pp.190-195.
Most read
Non-Relational Databases-NoSQL
                   Ramkumar.R
                     1st-MCA
         Department of Computer Science
       Pope John Paul II College of Education
                    Pondicherry
Content
   Introduction
   History
   Characteristics
   NoSQL Database Classification
   Categories of NoSQL Database
   Major NoSQL Databases
   Limitation of SQL
   Benefits of NoSQL
   Concerns and challenges
   Production Deployment
   References
Introduction
       Many      organizations     collect    vast     amounts     of
customer, scientific, sales, and other data for future analysis.
Traditionally, most of these organizations have stored structured data
in relational databases for subsequent access and analysis.
However, a growing number of developers and users have begun
turning to various types of non-relational, now frequently called
NoSQL-databases.
In computing, NoSQL (commonly interpreted as "not only
SQL") is a broad class of database management systems identified
by non-adherence to the widely used relational database
management system model. NoSQL databases are not built primarily
on tables, and generally do not use SQL for data manipulation.
NoSQL database systems are often highly optimized for retrieval
and appending operations and often offer little functionality beyond
record storage (e.g. key–value stores).
   NoSQL database management systems are useful when working
    with a huge quantity of data when the data's nature does not
    require a relational model.

   The data can be structured, but NoSQL is used when what really
    matters is the ability to store and retrieve great quantities of
    data, not the relationships between the elements.
History

    The term NoSQL was coined by Carlo Strozzi in the year 1998.

    In the early 2009, Eric Evans, a Rackspace employee, reused the
    term to refer databases which are non-relational, distributed, and
    does not conform to atomicity, consistency, isolation, and
    durability.

   In the same year, the NoSQL conference held in
    Atlanta, USA, and NoSQL saw an unprecedented growth.
Characteristics
   No schema required, Data can be inserted in a NoSQL database
    without first defining a rigid database schema.

   Auto-sharding(sometimes called “elasticity”). A NoSQL
    database automatically spreads data across servers, without
    requiring applications to participate.

   Distributed query support, NoSQL database systems retain
    their full query expressive power even when distributed across
    hundreds or thousands of servers.
   Integrated caching. To reduce latency and increase sustained
    data throughput, advanced NoSQL database technologies
    transparently cache data in system memory.
NoSQL Database Classification

   Key-value stores: Data is saved with a unique key and a value.
    This is incredibly fast and this can scale to large size.

   Column stores: They store all of the values for a column together
    in a stream instead of storing records.

   Document stores: They save data without it being structured in a
    schema, with buckets of key-value pairs inside a self-contained
    object.
   Graph databases: They store data in a flexible graph model that
    contains a node for each object.
Categories of NoSQL Database
Category            Description                                  Name of the database
Document Oriented   Data is stored as documents. An example CouchDB,           Jackrabbit,
                    format may be like - FirstName="Arun", MongoDB,            OrientDB,
                    Address="St.       Xavier's      Road", SimpleDB,Terrastore
                    Spouse=[{Name:"Kiran"}],
                    Children=[{Name:"Rihit", Age:8}]



XML database        Data is stored in XML format                   BaseX, eXist, MarkLogic
                                                                   Server etc.
Graph databases     Data is stored as a collection of nodes, where AllegroGraph, DEX, Neo4j,
                    nodes are analogous to objects in a FlockDB, Sones GraphDB
                    programming language. Nodes are connected
                    using edges.

Key-value store     In Key-value-store category of NoSQL Cassandra,             Riak,    Redis,
                    database, a user can store data in schema-less memcached, BigTable
                    way. A key may be strings, hashes, lists, sets,
                    sorted sets and values are stored against these
                    keys.
Major NoSQL Databases

   Dynamo: Dynamo was created by Amazon.com and is the most
    prominent Key-Value NoSQL database.

   Cassandra: Cassandra was open sourced by Facebook and is a
    column oriented NoSQL database.

   BigTable: BigTable is Google's proprietary column oriented
    database.
   SimpleDB: SimpleDB is another Amazon database. Used for
    Amazon EC2 and S3, it is part of Amazon Web Services.

   CouchDB: CouchDB along with MongoDB are open source
    document oriented NoSQL databases.

   Neo4J: Neo4j is an open source graph database.
Limitation of SQL Database

   Scaling, Relational databases don’t work easily in a distributed
    manner because joining their tables across a distributed system is
    difficult.

   Complexity, with relational databases, users must convert all data
    into tables. When the data doesn’t fit easily into a table, the
    database’s structure can be complex, difficult, and slow to work
    with.
   Data,    Using    SQL is    convenient    with   structured   data.
    However, using the language with other types of information is
    difficult.

   Large feature set, Relational databases offer a big feature set and
    data integrity.
Benefits of NoSQL
   Big data, just as transaction rates have grown out of recognition
    over the last decade, the volumes of data that are being stored
    also have increased massively.

   Goodbye DBAs, NoSQL databases are generally designed from
    the ground up to require less management, automatic repair, data
    distribution, and simpler data models.
   Flexible data models, NoSQL Key Value stores and document
    databases allow the application to store virtually any structure it
    wants in a data element.

   Elastic scaling, NoSQL databases are designed to expand
    transparently to take advantage of new nodes, and they’re usually
    designed with low-cost commodity hardware in mind.

   Economics, NoSQL databases typically use clusters of cheap
    commodity servers
Concerns and Challenges
   Overhead and complexity, Because NoSQL databases don’t
    work with SQL, they require manual query programming.

   Reliability, Relational databases natively support ACID, while
    NoSQL databases don’t.

   Consistency, Because NoSQL databases don’t natively support
    ACID      transactions,   they     also    could   compromise
    consistency, unless manual support is provided.
   Unfamiliarity with the technology, Most organizations are
    unfamiliar with NoSQL databases.

   Limited    Eco    structure,   unlike   commercial   relational
    databases, many open source NoSQL application don’t yet come
    with customer support or management tools.
Production Deployment
     There is a large number of companies using NoSQL. To name a
few:
   Google
   Facebook
   Mozilla
   Adobe
   Foursquare
   LinkedIn
   McGraw-Hill Education
Reference
   1. Neal Leavitt, “Will NoSQL live up to their promise”, IEEE
    Computer Society volume: 43 issue: 2, February, 2010, pp.12-14.

   2. Carlos Coronel, Steven Morris, Peter Rob,” Database Systems:
    Design,     Implementation,     and     Management”,         Tenth
    Edition, 2013, pp.47-49.

   3.   Pethuru   Raj,”   Cloud   Enterprise   Architecture”,   CRC
    press, 2013, pp.190-195.
   4. Tim Juravich,” Couch DB and PHP Web Development Beginner's
    Guide”, PACKT Publishing, June 2012, Chapter 1.

   5. Jing Han, “Survey on NoSQL database”, IEEE Pervasive Computing
    and Applications (ICPCA), 2011 6th International Conference”, 26-28
    Oct. 2011, pp.363-366.

   6. Wyile.b, “Using NoSQL Database for Streaming Network Analysis”,
    IEEE Large Data Analysis and Visualization (LDAV), 2012, 14-15 Oct.
    2012, pp.121-124

More Related Content

What's hot (20)

Relational databases vs Non-relational databases
Relational databases vs Non-relational databasesRelational databases vs Non-relational databases
Relational databases vs Non-relational databases
James Serra
 
NOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQLNOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQL
Ramakant Soni
 
NoSQL databases
NoSQL databasesNoSQL databases
NoSQL databases
Harri Kauhanen
 
Mongodb vs mysql
Mongodb vs mysqlMongodb vs mysql
Mongodb vs mysql
hemal sharma
 
Relational Database Design
Relational Database DesignRelational Database Design
Relational Database Design
Archit Saxena
 
Introduction to NoSQL
Introduction to NoSQLIntroduction to NoSQL
Introduction to NoSQL
PolarSeven Pty Ltd
 
Introduction to NoSQL Databases
Introduction to NoSQL DatabasesIntroduction to NoSQL Databases
Introduction to NoSQL Databases
Derek Stainer
 
Dbms Introduction and Basics
Dbms Introduction and BasicsDbms Introduction and Basics
Dbms Introduction and Basics
SHIKHA GAUTAM
 
Introduction to MongoDB.pptx
Introduction to MongoDB.pptxIntroduction to MongoDB.pptx
Introduction to MongoDB.pptx
Surya937648
 
datamarts.ppt
datamarts.pptdatamarts.ppt
datamarts.ppt
bhavyag24
 
Dbms relational model
Dbms relational modelDbms relational model
Dbms relational model
Chirag vasava
 
NoSQL databases
NoSQL databasesNoSQL databases
NoSQL databases
Marin Dimitrov
 
Key-Value NoSQL Database
Key-Value NoSQL DatabaseKey-Value NoSQL Database
Key-Value NoSQL Database
Heman Hosainpana
 
Nosql data models
Nosql data modelsNosql data models
Nosql data models
Viet-Trung TRAN
 
Sql vs NoSQL-Presentation
 Sql vs NoSQL-Presentation Sql vs NoSQL-Presentation
Sql vs NoSQL-Presentation
Shubham Tomar
 
SQL Overview
SQL OverviewSQL Overview
SQL Overview
Stewart Rogers
 
Distributed DBMS - Unit 3 - Distributed DBMS Architecture
Distributed DBMS - Unit 3 - Distributed DBMS ArchitectureDistributed DBMS - Unit 3 - Distributed DBMS Architecture
Distributed DBMS - Unit 3 - Distributed DBMS Architecture
Gyanmanjari Institute Of Technology
 
Query optimization in SQL
Query optimization in SQLQuery optimization in SQL
Query optimization in SQL
Abdul Rehman
 
Object oriented databases
Object oriented databasesObject oriented databases
Object oriented databases
Sajith Ekanayaka
 
Apache HBase™
Apache HBase™Apache HBase™
Apache HBase™
Prashant Gupta
 
Relational databases vs Non-relational databases
Relational databases vs Non-relational databasesRelational databases vs Non-relational databases
Relational databases vs Non-relational databases
James Serra
 
NOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQLNOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQL
Ramakant Soni
 
Relational Database Design
Relational Database DesignRelational Database Design
Relational Database Design
Archit Saxena
 
Introduction to NoSQL Databases
Introduction to NoSQL DatabasesIntroduction to NoSQL Databases
Introduction to NoSQL Databases
Derek Stainer
 
Dbms Introduction and Basics
Dbms Introduction and BasicsDbms Introduction and Basics
Dbms Introduction and Basics
SHIKHA GAUTAM
 
Introduction to MongoDB.pptx
Introduction to MongoDB.pptxIntroduction to MongoDB.pptx
Introduction to MongoDB.pptx
Surya937648
 
datamarts.ppt
datamarts.pptdatamarts.ppt
datamarts.ppt
bhavyag24
 
Dbms relational model
Dbms relational modelDbms relational model
Dbms relational model
Chirag vasava
 
Sql vs NoSQL-Presentation
 Sql vs NoSQL-Presentation Sql vs NoSQL-Presentation
Sql vs NoSQL-Presentation
Shubham Tomar
 
Query optimization in SQL
Query optimization in SQLQuery optimization in SQL
Query optimization in SQL
Abdul Rehman
 

Viewers also liked (8)

Nonrelational Databases
Nonrelational DatabasesNonrelational Databases
Nonrelational Databases
Udi Bauman
 
Relational vs. Non-Relational
Relational vs. Non-RelationalRelational vs. Non-Relational
Relational vs. Non-Relational
PostgreSQL Experts, Inc.
 
Non Relational Databases
Non Relational DatabasesNon Relational Databases
Non Relational Databases
Chris Baglieri
 
Non-Relational Databases & Key/Value Stores
Non-Relational Databases & Key/Value StoresNon-Relational Databases & Key/Value Stores
Non-Relational Databases & Key/Value Stores
Joël Perras
 
Business intelligence databases and information management
Business intelligence databases and information managementBusiness intelligence databases and information management
Business intelligence databases and information management
Prof. Othman Alsalloum
 
Design Patterns for Distributed Non-Relational Databases
Design Patterns for Distributed Non-Relational DatabasesDesign Patterns for Distributed Non-Relational Databases
Design Patterns for Distributed Non-Relational Databases
guestdfd1ec
 
Database Design Slide 1
Database Design Slide 1Database Design Slide 1
Database Design Slide 1
ahfiki
 
Big data architectures and the data lake
Big data architectures and the data lakeBig data architectures and the data lake
Big data architectures and the data lake
James Serra
 
Nonrelational Databases
Nonrelational DatabasesNonrelational Databases
Nonrelational Databases
Udi Bauman
 
Non Relational Databases
Non Relational DatabasesNon Relational Databases
Non Relational Databases
Chris Baglieri
 
Non-Relational Databases & Key/Value Stores
Non-Relational Databases & Key/Value StoresNon-Relational Databases & Key/Value Stores
Non-Relational Databases & Key/Value Stores
Joël Perras
 
Business intelligence databases and information management
Business intelligence databases and information managementBusiness intelligence databases and information management
Business intelligence databases and information management
Prof. Othman Alsalloum
 
Design Patterns for Distributed Non-Relational Databases
Design Patterns for Distributed Non-Relational DatabasesDesign Patterns for Distributed Non-Relational Databases
Design Patterns for Distributed Non-Relational Databases
guestdfd1ec
 
Database Design Slide 1
Database Design Slide 1Database Design Slide 1
Database Design Slide 1
ahfiki
 
Big data architectures and the data lake
Big data architectures and the data lakeBig data architectures and the data lake
Big data architectures and the data lake
James Serra
 
Ad

Similar to Non relational databases-no sql (20)

UNIT-2.pptx
UNIT-2.pptxUNIT-2.pptx
UNIT-2.pptx
SIVAKUMARM603675
 
Unit II -BIG DATA ANALYTICS.docx
Unit II -BIG DATA ANALYTICS.docxUnit II -BIG DATA ANALYTICS.docx
Unit II -BIG DATA ANALYTICS.docx
vvpadhu
 
unit2-ppt1.pptx
unit2-ppt1.pptxunit2-ppt1.pptx
unit2-ppt1.pptx
revathigollu23
 
Vskills Apache Cassandra sample material
Vskills Apache Cassandra sample materialVskills Apache Cassandra sample material
Vskills Apache Cassandra sample material
Vskills
 
Introduction to NoSQL database technology
Introduction to NoSQL database technologyIntroduction to NoSQL database technology
Introduction to NoSQL database technology
nicolausalex722
 
No sql
No sqlNo sql
No sql
Karamjit Kaur
 
Big Data technology Landscape
Big Data technology LandscapeBig Data technology Landscape
Big Data technology Landscape
ShivanandaVSeeri
 
Nosql seminar
Nosql seminarNosql seminar
Nosql seminar
Shreyashkumar Nangnurwar
 
Overview of no sql
Overview of no sqlOverview of no sql
Overview of no sql
Sean Murphy
 
the rising no sql technology
the rising no sql technologythe rising no sql technology
the rising no sql technology
INFOGAIN PUBLICATION
 
NOsql Presentation.pdf
NOsql Presentation.pdfNOsql Presentation.pdf
NOsql Presentation.pdf
AkshayDwivedi31
 
Selecting best NoSQL
Selecting best NoSQL Selecting best NoSQL
Selecting best NoSQL
Mohammed Fazuluddin
 
The Rise of Nosql Databases
The Rise of Nosql DatabasesThe Rise of Nosql Databases
The Rise of Nosql Databases
JAMES NGONDO
 
Introduction to Data Science NoSQL.pptx
Introduction to Data Science  NoSQL.pptxIntroduction to Data Science  NoSQL.pptx
Introduction to Data Science NoSQL.pptx
tarakesh7199
 
NoSQL.pptx
NoSQL.pptxNoSQL.pptx
NoSQL.pptx
RithikRaj25
 
cours database pour etudiant NoSQL (1).pptx
cours database pour etudiant NoSQL (1).pptxcours database pour etudiant NoSQL (1).pptx
cours database pour etudiant NoSQL (1).pptx
ssuser1fde9c
 
Unit 3 MongDB
Unit 3 MongDBUnit 3 MongDB
Unit 3 MongDB
Praveen M Jigajinni
 
Why no sql_ibm_cloudant
Why no sql_ibm_cloudantWhy no sql_ibm_cloudant
Why no sql_ibm_cloudant
Peter Tutty
 
NoSQL BIg Data Analytics Mongo DB and Cassandra .pdf
NoSQL BIg Data Analytics Mongo DB and Cassandra .pdfNoSQL BIg Data Analytics Mongo DB and Cassandra .pdf
NoSQL BIg Data Analytics Mongo DB and Cassandra .pdf
Global Academy of Technology
 
Sql vs NO-SQL database differences explained
Sql vs NO-SQL database differences explainedSql vs NO-SQL database differences explained
Sql vs NO-SQL database differences explained
Satya Pal
 
Unit II -BIG DATA ANALYTICS.docx
Unit II -BIG DATA ANALYTICS.docxUnit II -BIG DATA ANALYTICS.docx
Unit II -BIG DATA ANALYTICS.docx
vvpadhu
 
Vskills Apache Cassandra sample material
Vskills Apache Cassandra sample materialVskills Apache Cassandra sample material
Vskills Apache Cassandra sample material
Vskills
 
Introduction to NoSQL database technology
Introduction to NoSQL database technologyIntroduction to NoSQL database technology
Introduction to NoSQL database technology
nicolausalex722
 
Big Data technology Landscape
Big Data technology LandscapeBig Data technology Landscape
Big Data technology Landscape
ShivanandaVSeeri
 
Overview of no sql
Overview of no sqlOverview of no sql
Overview of no sql
Sean Murphy
 
The Rise of Nosql Databases
The Rise of Nosql DatabasesThe Rise of Nosql Databases
The Rise of Nosql Databases
JAMES NGONDO
 
Introduction to Data Science NoSQL.pptx
Introduction to Data Science  NoSQL.pptxIntroduction to Data Science  NoSQL.pptx
Introduction to Data Science NoSQL.pptx
tarakesh7199
 
cours database pour etudiant NoSQL (1).pptx
cours database pour etudiant NoSQL (1).pptxcours database pour etudiant NoSQL (1).pptx
cours database pour etudiant NoSQL (1).pptx
ssuser1fde9c
 
Why no sql_ibm_cloudant
Why no sql_ibm_cloudantWhy no sql_ibm_cloudant
Why no sql_ibm_cloudant
Peter Tutty
 
NoSQL BIg Data Analytics Mongo DB and Cassandra .pdf
NoSQL BIg Data Analytics Mongo DB and Cassandra .pdfNoSQL BIg Data Analytics Mongo DB and Cassandra .pdf
NoSQL BIg Data Analytics Mongo DB and Cassandra .pdf
Global Academy of Technology
 
Sql vs NO-SQL database differences explained
Sql vs NO-SQL database differences explainedSql vs NO-SQL database differences explained
Sql vs NO-SQL database differences explained
Satya Pal
 
Ad

Recently uploaded (20)

Agentic AI: Beyond the Buzz- LangGraph Studio V2
Agentic AI: Beyond the Buzz- LangGraph Studio V2Agentic AI: Beyond the Buzz- LangGraph Studio V2
Agentic AI: Beyond the Buzz- LangGraph Studio V2
Shashikant Jagtap
 
Evaluation Challenges in Using Generative AI for Science & Technical Content
Evaluation Challenges in Using Generative AI for Science & Technical ContentEvaluation Challenges in Using Generative AI for Science & Technical Content
Evaluation Challenges in Using Generative AI for Science & Technical Content
Paul Groth
 
Introduction to Typescript - GDG On Campus EUE
Introduction to Typescript - GDG On Campus EUEIntroduction to Typescript - GDG On Campus EUE
Introduction to Typescript - GDG On Campus EUE
Google Developer Group On Campus European Universities in Egypt
 
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdfHow Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
Rejig Digital
 
Data Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any ApplicationData Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any Application
Safe Software
 
Trends Report: Artificial Intelligence (AI)
Trends Report: Artificial Intelligence (AI)Trends Report: Artificial Intelligence (AI)
Trends Report: Artificial Intelligence (AI)
Brian Ahier
 
Extend-Microsoft365-with-Copilot-agents.pptx
Extend-Microsoft365-with-Copilot-agents.pptxExtend-Microsoft365-with-Copilot-agents.pptx
Extend-Microsoft365-with-Copilot-agents.pptx
hoang971
 
End-to-end Assurance for SD-WAN & SASE with ThousandEyes
End-to-end Assurance for SD-WAN & SASE with ThousandEyesEnd-to-end Assurance for SD-WAN & SASE with ThousandEyes
End-to-end Assurance for SD-WAN & SASE with ThousandEyes
ThousandEyes
 
Create Your First AI Agent with UiPath Agent Builder
Create Your First AI Agent with UiPath Agent BuilderCreate Your First AI Agent with UiPath Agent Builder
Create Your First AI Agent with UiPath Agent Builder
DianaGray10
 
soulmaite review - Find Real AI soulmate review
soulmaite review - Find Real AI soulmate reviewsoulmaite review - Find Real AI soulmate review
soulmaite review - Find Real AI soulmate review
Soulmaite
 
How to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptxHow to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptx
Version 1 Analytics
 
AI Agents in Logistics and Supply Chain Applications Benefits and Implementation
AI Agents in Logistics and Supply Chain Applications Benefits and ImplementationAI Agents in Logistics and Supply Chain Applications Benefits and Implementation
AI Agents in Logistics and Supply Chain Applications Benefits and Implementation
Christine Shepherd
 
Top 25 AI Coding Agents for Vibe Coders to Use in 2025.pdf
Top 25 AI Coding Agents for Vibe Coders to Use in 2025.pdfTop 25 AI Coding Agents for Vibe Coders to Use in 2025.pdf
Top 25 AI Coding Agents for Vibe Coders to Use in 2025.pdf
SOFTTECHHUB
 
Developing Schemas with FME and Excel - Peak of Data & AI 2025
Developing Schemas with FME and Excel - Peak of Data & AI 2025Developing Schemas with FME and Excel - Peak of Data & AI 2025
Developing Schemas with FME and Excel - Peak of Data & AI 2025
Safe Software
 
MCP vs A2A vs ACP: Choosing the Right Protocol | Bluebash
MCP vs A2A vs ACP: Choosing the Right Protocol | BluebashMCP vs A2A vs ACP: Choosing the Right Protocol | Bluebash
MCP vs A2A vs ACP: Choosing the Right Protocol | Bluebash
Bluebash
 
What is Oracle EPM A Guide to Oracle EPM Cloud Everything You Need to Know
What is Oracle EPM A Guide to Oracle EPM Cloud Everything You Need to KnowWhat is Oracle EPM A Guide to Oracle EPM Cloud Everything You Need to Know
What is Oracle EPM A Guide to Oracle EPM Cloud Everything You Need to Know
SMACT Works
 
IntroSlides-May-BuildWithAi-EarthEngine.pdf
IntroSlides-May-BuildWithAi-EarthEngine.pdfIntroSlides-May-BuildWithAi-EarthEngine.pdf
IntroSlides-May-BuildWithAi-EarthEngine.pdf
Luiz Carneiro
 
TimeSeries Machine Learning - PyData London 2025
TimeSeries Machine Learning - PyData London 2025TimeSeries Machine Learning - PyData London 2025
TimeSeries Machine Learning - PyData London 2025
Suyash Joshi
 
Compliance-as-a-Service document pdf text
Compliance-as-a-Service document pdf textCompliance-as-a-Service document pdf text
Compliance-as-a-Service document pdf text
Earthling security
 
AI Creative Generates You Passive Income Like Never Before
AI Creative Generates You Passive Income Like Never BeforeAI Creative Generates You Passive Income Like Never Before
AI Creative Generates You Passive Income Like Never Before
SivaRajan47
 
Agentic AI: Beyond the Buzz- LangGraph Studio V2
Agentic AI: Beyond the Buzz- LangGraph Studio V2Agentic AI: Beyond the Buzz- LangGraph Studio V2
Agentic AI: Beyond the Buzz- LangGraph Studio V2
Shashikant Jagtap
 
Evaluation Challenges in Using Generative AI for Science & Technical Content
Evaluation Challenges in Using Generative AI for Science & Technical ContentEvaluation Challenges in Using Generative AI for Science & Technical Content
Evaluation Challenges in Using Generative AI for Science & Technical Content
Paul Groth
 
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdfHow Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
How Advanced Environmental Detection Is Revolutionizing Oil & Gas Safety.pdf
Rejig Digital
 
Data Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any ApplicationData Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any Application
Safe Software
 
Trends Report: Artificial Intelligence (AI)
Trends Report: Artificial Intelligence (AI)Trends Report: Artificial Intelligence (AI)
Trends Report: Artificial Intelligence (AI)
Brian Ahier
 
Extend-Microsoft365-with-Copilot-agents.pptx
Extend-Microsoft365-with-Copilot-agents.pptxExtend-Microsoft365-with-Copilot-agents.pptx
Extend-Microsoft365-with-Copilot-agents.pptx
hoang971
 
End-to-end Assurance for SD-WAN & SASE with ThousandEyes
End-to-end Assurance for SD-WAN & SASE with ThousandEyesEnd-to-end Assurance for SD-WAN & SASE with ThousandEyes
End-to-end Assurance for SD-WAN & SASE with ThousandEyes
ThousandEyes
 
Create Your First AI Agent with UiPath Agent Builder
Create Your First AI Agent with UiPath Agent BuilderCreate Your First AI Agent with UiPath Agent Builder
Create Your First AI Agent with UiPath Agent Builder
DianaGray10
 
soulmaite review - Find Real AI soulmate review
soulmaite review - Find Real AI soulmate reviewsoulmaite review - Find Real AI soulmate review
soulmaite review - Find Real AI soulmate review
Soulmaite
 
How to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptxHow to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptx
Version 1 Analytics
 
AI Agents in Logistics and Supply Chain Applications Benefits and Implementation
AI Agents in Logistics and Supply Chain Applications Benefits and ImplementationAI Agents in Logistics and Supply Chain Applications Benefits and Implementation
AI Agents in Logistics and Supply Chain Applications Benefits and Implementation
Christine Shepherd
 
Top 25 AI Coding Agents for Vibe Coders to Use in 2025.pdf
Top 25 AI Coding Agents for Vibe Coders to Use in 2025.pdfTop 25 AI Coding Agents for Vibe Coders to Use in 2025.pdf
Top 25 AI Coding Agents for Vibe Coders to Use in 2025.pdf
SOFTTECHHUB
 
Developing Schemas with FME and Excel - Peak of Data & AI 2025
Developing Schemas with FME and Excel - Peak of Data & AI 2025Developing Schemas with FME and Excel - Peak of Data & AI 2025
Developing Schemas with FME and Excel - Peak of Data & AI 2025
Safe Software
 
MCP vs A2A vs ACP: Choosing the Right Protocol | Bluebash
MCP vs A2A vs ACP: Choosing the Right Protocol | BluebashMCP vs A2A vs ACP: Choosing the Right Protocol | Bluebash
MCP vs A2A vs ACP: Choosing the Right Protocol | Bluebash
Bluebash
 
What is Oracle EPM A Guide to Oracle EPM Cloud Everything You Need to Know
What is Oracle EPM A Guide to Oracle EPM Cloud Everything You Need to KnowWhat is Oracle EPM A Guide to Oracle EPM Cloud Everything You Need to Know
What is Oracle EPM A Guide to Oracle EPM Cloud Everything You Need to Know
SMACT Works
 
IntroSlides-May-BuildWithAi-EarthEngine.pdf
IntroSlides-May-BuildWithAi-EarthEngine.pdfIntroSlides-May-BuildWithAi-EarthEngine.pdf
IntroSlides-May-BuildWithAi-EarthEngine.pdf
Luiz Carneiro
 
TimeSeries Machine Learning - PyData London 2025
TimeSeries Machine Learning - PyData London 2025TimeSeries Machine Learning - PyData London 2025
TimeSeries Machine Learning - PyData London 2025
Suyash Joshi
 
Compliance-as-a-Service document pdf text
Compliance-as-a-Service document pdf textCompliance-as-a-Service document pdf text
Compliance-as-a-Service document pdf text
Earthling security
 
AI Creative Generates You Passive Income Like Never Before
AI Creative Generates You Passive Income Like Never BeforeAI Creative Generates You Passive Income Like Never Before
AI Creative Generates You Passive Income Like Never Before
SivaRajan47
 

Non relational databases-no sql

  • 1. Non-Relational Databases-NoSQL Ramkumar.R 1st-MCA Department of Computer Science Pope John Paul II College of Education Pondicherry
  • 2. Content  Introduction  History  Characteristics  NoSQL Database Classification  Categories of NoSQL Database  Major NoSQL Databases  Limitation of SQL  Benefits of NoSQL  Concerns and challenges  Production Deployment  References
  • 3. Introduction Many organizations collect vast amounts of customer, scientific, sales, and other data for future analysis. Traditionally, most of these organizations have stored structured data in relational databases for subsequent access and analysis. However, a growing number of developers and users have begun turning to various types of non-relational, now frequently called NoSQL-databases.
  • 4. In computing, NoSQL (commonly interpreted as "not only SQL") is a broad class of database management systems identified by non-adherence to the widely used relational database management system model. NoSQL databases are not built primarily on tables, and generally do not use SQL for data manipulation. NoSQL database systems are often highly optimized for retrieval and appending operations and often offer little functionality beyond record storage (e.g. key–value stores).
  • 5. NoSQL database management systems are useful when working with a huge quantity of data when the data's nature does not require a relational model.  The data can be structured, but NoSQL is used when what really matters is the ability to store and retrieve great quantities of data, not the relationships between the elements.
  • 6. History  The term NoSQL was coined by Carlo Strozzi in the year 1998.  In the early 2009, Eric Evans, a Rackspace employee, reused the term to refer databases which are non-relational, distributed, and does not conform to atomicity, consistency, isolation, and durability.  In the same year, the NoSQL conference held in Atlanta, USA, and NoSQL saw an unprecedented growth.
  • 7. Characteristics  No schema required, Data can be inserted in a NoSQL database without first defining a rigid database schema.  Auto-sharding(sometimes called “elasticity”). A NoSQL database automatically spreads data across servers, without requiring applications to participate.  Distributed query support, NoSQL database systems retain their full query expressive power even when distributed across hundreds or thousands of servers.
  • 8. Integrated caching. To reduce latency and increase sustained data throughput, advanced NoSQL database technologies transparently cache data in system memory.
  • 9. NoSQL Database Classification  Key-value stores: Data is saved with a unique key and a value. This is incredibly fast and this can scale to large size.  Column stores: They store all of the values for a column together in a stream instead of storing records.  Document stores: They save data without it being structured in a schema, with buckets of key-value pairs inside a self-contained object.
  • 10. Graph databases: They store data in a flexible graph model that contains a node for each object.
  • 11. Categories of NoSQL Database Category Description Name of the database Document Oriented Data is stored as documents. An example CouchDB, Jackrabbit, format may be like - FirstName="Arun", MongoDB, OrientDB, Address="St. Xavier's Road", SimpleDB,Terrastore Spouse=[{Name:"Kiran"}], Children=[{Name:"Rihit", Age:8}] XML database Data is stored in XML format BaseX, eXist, MarkLogic Server etc. Graph databases Data is stored as a collection of nodes, where AllegroGraph, DEX, Neo4j, nodes are analogous to objects in a FlockDB, Sones GraphDB programming language. Nodes are connected using edges. Key-value store In Key-value-store category of NoSQL Cassandra, Riak, Redis, database, a user can store data in schema-less memcached, BigTable way. A key may be strings, hashes, lists, sets, sorted sets and values are stored against these keys.
  • 12. Major NoSQL Databases  Dynamo: Dynamo was created by Amazon.com and is the most prominent Key-Value NoSQL database.  Cassandra: Cassandra was open sourced by Facebook and is a column oriented NoSQL database.  BigTable: BigTable is Google's proprietary column oriented database.
  • 13. SimpleDB: SimpleDB is another Amazon database. Used for Amazon EC2 and S3, it is part of Amazon Web Services.  CouchDB: CouchDB along with MongoDB are open source document oriented NoSQL databases.  Neo4J: Neo4j is an open source graph database.
  • 14. Limitation of SQL Database  Scaling, Relational databases don’t work easily in a distributed manner because joining their tables across a distributed system is difficult.  Complexity, with relational databases, users must convert all data into tables. When the data doesn’t fit easily into a table, the database’s structure can be complex, difficult, and slow to work with.
  • 15. Data, Using SQL is convenient with structured data. However, using the language with other types of information is difficult.  Large feature set, Relational databases offer a big feature set and data integrity.
  • 16. Benefits of NoSQL  Big data, just as transaction rates have grown out of recognition over the last decade, the volumes of data that are being stored also have increased massively.  Goodbye DBAs, NoSQL databases are generally designed from the ground up to require less management, automatic repair, data distribution, and simpler data models.
  • 17. Flexible data models, NoSQL Key Value stores and document databases allow the application to store virtually any structure it wants in a data element.  Elastic scaling, NoSQL databases are designed to expand transparently to take advantage of new nodes, and they’re usually designed with low-cost commodity hardware in mind.  Economics, NoSQL databases typically use clusters of cheap commodity servers
  • 18. Concerns and Challenges  Overhead and complexity, Because NoSQL databases don’t work with SQL, they require manual query programming.  Reliability, Relational databases natively support ACID, while NoSQL databases don’t.  Consistency, Because NoSQL databases don’t natively support ACID transactions, they also could compromise consistency, unless manual support is provided.
  • 19. Unfamiliarity with the technology, Most organizations are unfamiliar with NoSQL databases.  Limited Eco structure, unlike commercial relational databases, many open source NoSQL application don’t yet come with customer support or management tools.
  • 20. Production Deployment There is a large number of companies using NoSQL. To name a few:  Google  Facebook  Mozilla  Adobe  Foursquare  LinkedIn  McGraw-Hill Education
  • 21. Reference  1. Neal Leavitt, “Will NoSQL live up to their promise”, IEEE Computer Society volume: 43 issue: 2, February, 2010, pp.12-14.  2. Carlos Coronel, Steven Morris, Peter Rob,” Database Systems: Design, Implementation, and Management”, Tenth Edition, 2013, pp.47-49.  3. Pethuru Raj,” Cloud Enterprise Architecture”, CRC press, 2013, pp.190-195.
  • 22. 4. Tim Juravich,” Couch DB and PHP Web Development Beginner's Guide”, PACKT Publishing, June 2012, Chapter 1.  5. Jing Han, “Survey on NoSQL database”, IEEE Pervasive Computing and Applications (ICPCA), 2011 6th International Conference”, 26-28 Oct. 2011, pp.363-366.  6. Wyile.b, “Using NoSQL Database for Streaming Network Analysis”, IEEE Large Data Analysis and Visualization (LDAV), 2012, 14-15 Oct. 2012, pp.121-124