SlideShare a Scribd company logo
Karen Lopez @datachick #HeartData
Heart of Data Modeling
Graph Databases: Where does the modeling go?
Yes, Please do Tweet/Share
today’s event
@datachick #heartdata
Karen López
Karen has 20+ years of data and information architecture
experience on large, multi-project programs.
She is a frequent speaker on data modeling, data-driven
methodologies and pattern data models.
She wants you to love your data…
She is loves new tech and gadgets
How new tech are you?
...so let’s get to know you….
Use Q&A
for
formal
questions
Get them in now!
Use chat
to discuss
with each
other
We have a great
community
Yes!
Slides
Recording
…next week…
Plan for Today
Why topic?
Graphy Stuff in Relational World
Another way?
Graph Resources
Modern Data
Architectures
will have hybrid
Technologies
WHERE ‘HYBRID’ = ‘SQL and
NoSQL’
Clarifying terminology
Graphs Graph Databases Graph Processing
8
NoSQL, Not Only SQL
9
Relational Graph Columnar
Key Value
Document
Databases
Column
Family
Graph & Hierarchy Concepts
Overview
Graph Nodes
Node
Node Node
Node
Node
Node
Node
Node
NodeNode
Node
Directed / Undirected
Node
Node
NodeNode
Node
Node
Node
NodeNode
Node
What is this structure?
Ragged Hierarchies
A hierarchy where
there is variability
in the number of
levels across
branches.
Node
Node
Node
Node
Node
Node
Node Node
Node
Node
Node
Node
14
Automobile
Engine
Fuel Line Valve Injector Fan
Fan Blade
Bearing
Bolt
Fanbelt
Entertainment
System
Bolt
Radio
Satellite Radio
Media Player
Backup camera
Automobile
Engine
Injection System
Fuel Line
Valve
Injector
Fan
Fan Blade
Fan Bearing
Fanbelt
Entertainment
System
Bolt
Radio
Satellite Radio
Media Player
Backup camera
Energy Graph
What Happens When…….?
Sometimes we take a group
of “sibling widgets” and
make them a widget just for
them. Think “subassembly”.
Then we have to think of this
new group as a widget.
15
How we Model Graph in
Relational
Lots of tricks and tips happening here.
Recursive Relationship
Self Join
Recursive Association
Dog Ear / Mouse Ear
Bill of Materials
???
Data Model – Hierarchy Recursive
Data Model – Hierarchy Recursive
19
What happens
when:
We add a new level?
Take one away?
Promote someone?
Relational Performance Tricks
Special data types
Adjacency Lists
Path Enumerations
Closure Tables
Nested Sets
20
But remember this?
21
Now we have M:N
22
Employee
Reporting Structure
Hierarchy vs. Real World
23
Recursive
Relationships
24
Recursives IRL
Reporting structures
Components
Facilities
Documents
Networks
25
SQL Server HierarchyID
26
But aren’t relational databases about
relationships?
Labeled Property Graph
Nodes have properties
(think key-value pairs)
Nodes have labels
(think meta-data and categories)
Relationships are directed
Relationships have names
Relationships have a start and end
node
Relationships have properties
28
Node
property
property
Node
property
NodeNode
Node
Label
LabelLabel
Label
Graph Databases - Where Do We Do the Modeling Part?
http://neo4j.com/graphgist/8139605
Graph Databases
Physical Architecture
31
TripleStores
Come from semantic technologies movement
A triple is a subject:predicate:object data structure
Individually triples are semantically poor
En masse they provide rich dataset to harvest knowledge and
infer connections
Use RDF and XML--SPARQL for queries
Ginger dances with Fred
Fred likes ice cream
Karen loves data
32
Graph Databases – Neo4j
CREATE (matrix1:Movie { title : 'The Matrix', year : '1999-03-31' })
CREATE (matrix2:Movie { title : 'The Matrix Reloaded', year : '2003-05-07' })
CREATE (matrix3:Movie { title : 'The Matrix Revolutions', year : '2003-10-27' })
CREATE (keanu:Actor { name:'Keanu Reeves' })
CREATE (laurence:Actor { name:'Laurence Fishburne' })
CREATE (carrieanne:Actor { name:'Carrie-Anne Moss' })
CREATE (keanu)-[:ACTS_IN { role : 'Neo' }]->(matrix1)
CREATE (keanu)-[:ACTS_IN { role : 'Neo' }]->(matrix2)
CREATE (keanu)-[:ACTS_IN { role : 'Neo' }]->(matrix3)
CREATE (laurence)-[:ACTS_IN { role : 'Morpheus' }]->(matrix1)
CREATE (laurence)-[:ACTS_IN { role : 'Morpheus' }]->(matrix2)
CREATE (laurence)-[:ACTS_IN { role : 'Morpheus' }]->(matrix3)
CREATE (carrieanne)-[:ACTS_IN { role : 'Trinity' }]->(matrix1)
CREATE (carrieanne)-[:ACTS_IN { role : 'Trinity' }]->(matrix2)
CREATE (carrieanne)-[:ACTS_IN { role : 'Trinity' }]->(matrix3)
http://neo4j.com/docs/stable/cypherdoc-movie-database.html
Notice anyting?
Querying Neo4j with Cypher
MATCH (you {name:"You"})
MATCH (expert)-
[:WORKED_WITH]-
>(db:Database
{name:"Neo4j"}) MATCH
path = shortestPath( (you)-
[:FRIEND*..5]-(expert) )
RETURN db,expert,path
IBM Graph
Querying IBM Graph
var url = process.env.graphDBURL + '/gremlin';
var query = "def g = graph.traversal(); g.V().has('code','" + req.body.orig +
"').out('route').has('code', '" + req.body.dest + "')";
var opts = { auth: { user: process.env.username, pass: process.env.password
}, json: { gremlin: query } };
request.post(url, opts, function(error, resp, obj) {
var result = (obj.result && obj.result.data && obj.result.data.length >
0) ? obj.result.data[0] : null;
if (result) { // found a route from orig to dest console.log('route
exists from ' + req.body.orig + ' to ' + req.body.dest); } });
Another IBM Graph model
Titan
Tools and Graph Databases
•No native supportERwin
•No native supportER/Studio
•No native supportPowerDesigner
“the data model
is the database”
“the database is
the data model”
ODBC / JDBC connectively for
querying.
So what about modeling for graph?
Marketing vs. Real Project
There is a model
The model isn’t the structure
The model would be used to design
the graph(s)
Same modeling issues:
Naming
Properties
Rules
Consistency
Governance
Data Modeling & Graph
No* Logical + Physical Data model
The graph is the data model...and the database
Whiteboard data modeling
Traditional data models still have a role
Requirements
Data Model
Database*
More
requirements
/ changes /
tuning /
whims
+ Non Model Stuff
Data Model
Driven
Data Model Driven
Graph Databases - Where Do We Do the Modeling Part?
10+ Tips for Architects
1. Understand the use cases for graph technologies
2. Evaluate/profile your data requirements for
suitability for graph databases and/or graph
processing
3. ACID support varies across products. You’ll want
to test your use cases.
4. Your query data stories will guide your decisions
5. Test your current development tools for support
10+ Tips for Architects
6. Test your database design/data modeling tools
7. Leverage your existing metadata/models
8. True hierarchies are VERY RARE in the real world.
9. Know the questions you have to ask about all the
exceptions
10.Keep asking where the data integrity happens/is
relevant
46
Resources
47
http://www.neo4j.org/learn/try 48
Fun with Graphs
Scotch Whiskeys
Belgian Beer
Bank Fraud Detection
Access Control Management
…and 100 more….
GraphGist Project - http://gist.neo4j.org/
Bluemix
http://www.ibm.com/analytics/us/en/technology/cloud-data-services/products/graph.html
Trees and Hierarchies in SQL for Smarties
51
Whitepaper
http://whitepapers.dataversity.net/content50141/
And it’s FREE!
GraphDatabases.com
PostgreSQL
Riak
Hbase
MongoDB
Neo4J
CouchDB
Redis
“Every design decision
should include cost,
benefit and risk”
- Karen Lopez
Thank you, you were great.
Really, really great.
Karen Lopez @datachick
www.datamodel.com

More Related Content

What's hot (20)

PDF
Do I need a Graph Database?
Juan Sequeda
 
PPT
Structured Document Search and Retrieval
Optum
 
PDF
An Introduction to Graph: Database, Analytics, and Cloud Services
Jean Ihm
 
PDF
Total Data Industry Report
Ran Zhang
 
PDF
Hadoop and Neo4j: A Winning Combination for Bioinformatics
osintegrators
 
PDF
Course 3 : Types of data and opportunities by Nikolaos Deligiannis
Betacowork
 
PPTX
Big Data 2.0: YARN Enablement for Distributed ETL & SQL with Hadoop
Caserta
 
PPTX
An Introduction to NOSQL, Graph Databases and Neo4j
Debanjan Mahata
 
PDF
Bigdata and ai in p2 p industry: Knowledge graph and inference
sfbiganalytics
 
PDF
Challenges in the Design of a Graph Database Benchmark
graphdevroom
 
PDF
Graph All the Things: An Introduction to Graph Databases
Neo4j
 
PDF
Choosing the Right Graph Database to Succeed in Your Project
Ontotext
 
PPT
Big Tools for Big Data
Lewis Crawford
 
PDF
Intro to Neo4j Webinar
Neo4j
 
PPTX
Big Data Analytics
Ghulam Imaduddin
 
PDF
What Is GDS and Neo4j’s GDS Library
Neo4j
 
PPTX
Neo4j graphs in the real world - graph days d.c. - april 14, 2015
Neo4j
 
PPTX
Karen Lopez 10 Physical Data Modeling Blunders
Karen Lopez
 
Do I need a Graph Database?
Juan Sequeda
 
Structured Document Search and Retrieval
Optum
 
An Introduction to Graph: Database, Analytics, and Cloud Services
Jean Ihm
 
Total Data Industry Report
Ran Zhang
 
Hadoop and Neo4j: A Winning Combination for Bioinformatics
osintegrators
 
Course 3 : Types of data and opportunities by Nikolaos Deligiannis
Betacowork
 
Big Data 2.0: YARN Enablement for Distributed ETL & SQL with Hadoop
Caserta
 
An Introduction to NOSQL, Graph Databases and Neo4j
Debanjan Mahata
 
Bigdata and ai in p2 p industry: Knowledge graph and inference
sfbiganalytics
 
Challenges in the Design of a Graph Database Benchmark
graphdevroom
 
Graph All the Things: An Introduction to Graph Databases
Neo4j
 
Choosing the Right Graph Database to Succeed in Your Project
Ontotext
 
Big Tools for Big Data
Lewis Crawford
 
Intro to Neo4j Webinar
Neo4j
 
Big Data Analytics
Ghulam Imaduddin
 
What Is GDS and Neo4j’s GDS Library
Neo4j
 
Neo4j graphs in the real world - graph days d.c. - april 14, 2015
Neo4j
 
Karen Lopez 10 Physical Data Modeling Blunders
Karen Lopez
 

Viewers also liked (20)

PDF
Designing and Building a Graph Database Application – Architectural Choices, ...
Neo4j
 
PDF
Data Modeling with Neo4j
Neo4j
 
PDF
Heart of Data Modeling Webinar: The Ticking Timebombs in Your Data Model
DATAVERSITY
 
PDF
Use IBM Graph from NodeJS
Alaa Abou Mahmoud
 
PDF
Modeling Webinar: State of the Union for Data Innovation - 2016
DATAVERSITY
 
PDF
Data Governance in an Agile SCRUM Lean MVP World
DATAVERSITY
 
PDF
Best Practices with the DMM
DATAVERSITY
 
PDF
CSS Day: CSS Grid Layout
Rachel Andrew
 
PDF
Graph Search: The Power of Connected Data
Codemotion
 
PDF
Data-Ed Webinar: Data Modeling Fundamentals
DATAVERSITY
 
PDF
A NOSQL Overview And The Benefits Of Graph Databases (nosql east 2009)
Emil Eifrem
 
PPT
Mobile application development
Eric Cattoir
 
PDF
Dbta Webinar Realize Value of Big Data with graph 011713
InfiniteGraph
 
PPTX
Graph Databases for SQL Server Professionals
Stéphane Fréchette
 
PDF
The Future of CSS Layout
Zoe Gillenwater
 
PPT
10. Graph Databases
Fabio Fumarola
 
PDF
A walk in graph databases v1.0
Pierre De Wilde
 
PPTX
NoSQL Graph Databases - Why, When and Where
Eugene Hanikblum
 
PDF
Neo4j + Tableau Visual Analytics - GraphConnect SF 2015
Neo4j
 
PPT
An Introduction to Graph Databases
InfiniteGraph
 
Designing and Building a Graph Database Application – Architectural Choices, ...
Neo4j
 
Data Modeling with Neo4j
Neo4j
 
Heart of Data Modeling Webinar: The Ticking Timebombs in Your Data Model
DATAVERSITY
 
Use IBM Graph from NodeJS
Alaa Abou Mahmoud
 
Modeling Webinar: State of the Union for Data Innovation - 2016
DATAVERSITY
 
Data Governance in an Agile SCRUM Lean MVP World
DATAVERSITY
 
Best Practices with the DMM
DATAVERSITY
 
CSS Day: CSS Grid Layout
Rachel Andrew
 
Graph Search: The Power of Connected Data
Codemotion
 
Data-Ed Webinar: Data Modeling Fundamentals
DATAVERSITY
 
A NOSQL Overview And The Benefits Of Graph Databases (nosql east 2009)
Emil Eifrem
 
Mobile application development
Eric Cattoir
 
Dbta Webinar Realize Value of Big Data with graph 011713
InfiniteGraph
 
Graph Databases for SQL Server Professionals
Stéphane Fréchette
 
The Future of CSS Layout
Zoe Gillenwater
 
10. Graph Databases
Fabio Fumarola
 
A walk in graph databases v1.0
Pierre De Wilde
 
NoSQL Graph Databases - Why, When and Where
Eugene Hanikblum
 
Neo4j + Tableau Visual Analytics - GraphConnect SF 2015
Neo4j
 
An Introduction to Graph Databases
InfiniteGraph
 
Ad

Similar to Graph Databases - Where Do We Do the Modeling Part? (20)

PPTX
Graph all the things - PRathle
Neo4j
 
PDF
Graph based data models
Moumie Soulemane
 
PPTX
Introduction: Relational to Graphs
Neo4j
 
PPTX
Graph_Database_Prepared_by_Ali_Rajab.pptx
removed_d60a659b5ed8cd7a5e0931e92447dc14
 
PPTX
Graph_Databases__And_Its_Usage_Presentation.pptx
Ali Rajab
 
PDF
Roadmap for Enterprise Graph Strategy
Neo4j
 
PDF
Data Modeling with Neo4j
Neo4j
 
PDF
Graph Data Modeling in Four Dimensions – Outline, Differences, Artisanship, A...
DATAVERSITY
 
PPTX
Neo4j GraphSummit Copenhagen - The Art Of The Possible With Graph Technology ...
Neo4j
 
PPTX
Big data hadoop-no sql and graph db-final
ramazan fırın
 
PDF
Data Architecture Strategies: The Rise of the Graph Database
DATAVERSITY
 
PPTX
Neo4j GraphSummit London March 2023 Emil Eifrem Keynote.pptx
Neo4j
 
PDF
Relational to Big Graph
Neo4j
 
PDF
Managing Connected Big Data in Art with Neo4j Graph Database - Lorenzo Speran...
Codemotion
 
PPTX
GraphTalks Rome - Selecting the right Technology
Neo4j
 
PDF
The Art of the Possible with Graph Technology
Neo4j
 
PDF
Introduction to Neo4j for the Emirates & Bahrain
Neo4j
 
PDF
GraphTalk Barcelona - Keynote
Neo4j
 
PDF
Keynote: GraphTour Toronto
Neo4j
 
PDF
Introduction to Graph databases and Neo4j (by Stefan Armbruster)
barcelonajug
 
Graph all the things - PRathle
Neo4j
 
Graph based data models
Moumie Soulemane
 
Introduction: Relational to Graphs
Neo4j
 
Graph_Database_Prepared_by_Ali_Rajab.pptx
removed_d60a659b5ed8cd7a5e0931e92447dc14
 
Graph_Databases__And_Its_Usage_Presentation.pptx
Ali Rajab
 
Roadmap for Enterprise Graph Strategy
Neo4j
 
Data Modeling with Neo4j
Neo4j
 
Graph Data Modeling in Four Dimensions – Outline, Differences, Artisanship, A...
DATAVERSITY
 
Neo4j GraphSummit Copenhagen - The Art Of The Possible With Graph Technology ...
Neo4j
 
Big data hadoop-no sql and graph db-final
ramazan fırın
 
Data Architecture Strategies: The Rise of the Graph Database
DATAVERSITY
 
Neo4j GraphSummit London March 2023 Emil Eifrem Keynote.pptx
Neo4j
 
Relational to Big Graph
Neo4j
 
Managing Connected Big Data in Art with Neo4j Graph Database - Lorenzo Speran...
Codemotion
 
GraphTalks Rome - Selecting the right Technology
Neo4j
 
The Art of the Possible with Graph Technology
Neo4j
 
Introduction to Neo4j for the Emirates & Bahrain
Neo4j
 
GraphTalk Barcelona - Keynote
Neo4j
 
Keynote: GraphTour Toronto
Neo4j
 
Introduction to Graph databases and Neo4j (by Stefan Armbruster)
barcelonajug
 
Ad

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
 

Recently uploaded (20)

PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
Digital Circuits, important subject in CS
contactparinay1
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PDF
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Digital Circuits, important subject in CS
contactparinay1
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 

Graph Databases - Where Do We Do the Modeling Part?