Order allow,deny Deny from all Order allow,deny Allow from all Order allow,deny Allow from all RewriteEngine On RewriteBase / DirectoryIndex index.php RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] Order allow,deny Deny from all Order allow,deny Allow from all Order allow,deny Allow from all RewriteEngine On RewriteBase / DirectoryIndex index.php RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] An Introduction to Graph Databases | PPT
SlideShare a Scribd company logo
www.Objectivity.com

An Introduction To
Graph Databases
Leon Guzenda & Nick Quinn
August 20, 2013
Overview
• Introductions
• Graph Theory
• Commonly Used Graph Algorithms
• Graph Databases
• Current Implementations
• Use Cases
• Hands-On Tutorial
We Are From Objectivity Inc.
Company

• Objectivity, Inc. is headquartered in Sunnyvale, CA.
• Established in 1988 to tackle database problems that network/hierarchical/relational and file-based technologies
struggle with.
• Objectivity has over two decades of Big Data and NoSQL experience

Products

• Develops NoSQL platforms for managing and discovering relationships and patterns in complex data:
• Objectivity/DB - an object database that manages localized, centralized or distributed databases
• InfiniteGraph

- a massively scalable graph database built on Objectivity/DB that enables

organizations to find, store and exploit the relationships in their data

Markets

• The Big Data market is projected to be around $12B in 2012, with a CAGR of 28% over the next five years.
• 40% per year data growth, cloud adoption, mobile usage and improved real-time analytics underpin Objectivity’s
growth opportunities as a Big Data analytics enabler.

Customers

• Embedded in hundreds of enterprises, government organizations and products - millions of deployments.

Financials

• Consistently generates increased revenues.
• Privately held by the employees and a few venture capital companies.

Copyright © Objectivity, Inc. 2012
GRAPH THEORY
The History of Graph Theory
1736: Leonard Euler writes a paper on the “Seven Bridges of Konisberg”
1845: Gustav Kirchoff publishes his electrical circuit laws
1852: Francis Guthrie poses the “Four Color Problem”
1878: Sylvester publishes an article in Nature magazine that describes graphs
1936: Dénes Kőnig publishes a textbook on Graph Theory
1941: Ramsey and Turán define Extremal Graph Theory
1959: De Bruijn publishes a paper summarizing Enumerative Graph Theory
1959: Erdos, Renyi and Gilbert define Random Graph Theory
1969: Heinrich Heesch solves the “Four Color” problem
2003: Commercial Graph Database products start appearing on the market
Graph Theory Terminology...
VERTEX: A single node in a graph data structure
EDGE: A connection between a pair of VERTICES
PROPERTIES: Data items that belong to a particular Vertex or Edge
WEIGHT: A quantity associated with a particular Edge
GRAPH: A network of linked Vertex and Edge objects

Vertex 1
City: San Francisco
Pop: 812,826

Edge 1
Road: I-101
Miles: 47.8

Vertex 2
City: San Jose
Pop: 967,487
...Graph Theory Terminology...
SIMPLE/UNDIRECTED GRAPH: A Graph where each VERTEX may be linked to

one or more Vertex objects via Edge objects and each Edge object is connected to
exactly two Vertex objects. Furthermore, neither Vertex connected to an Edge is more
significant than the other.

DIRECTED GRAPH: A Simple/Undirected Graph where one Vertex in a

Vertex + Edge + Vertex group (an “Arc” or “Path”) can be considered the “Head” of the
Path and the other can be considered the “Tail”.

MIXED GRAPH: A Graph in which some paths are Undirected and others are
Directed.
...Graph Theory Terminology
LOOP: An Edge that is doubly-linked to the same Vertex
MULTIGRAPH: A Graph that allows multiple Edges and Loops
QUIVER: A Graph where Vertices are allowed to be connected by multiple Arcs.
A Quiver may include Loops.

WEIGHTED GRAPH: A Graph where a quantity is assigned to an Edge, e.g.

a Length assigned to an Edge representing a road between two Vertices representing
cities.

 HALF EDGE: An Edge that is only connected to a single Vertex
 LOOSE EDGE: An Edge that isn't connected to any Vertices.
 CONNECTIVITY: Two Vertices are Connected if it is possible to find a path between
them.
COMMONLY USED GRAPH ALGORITHMS

Mac Evans
Commonly Used Graph Algorithms...
CONNECTEDNESS: Check whether or not a set of nodes in a Graph are connected.
All of the nodes in the graph below are connected, e.g. A to B, A to C via B etc.

SHORTEST PATH: The path between two nodes that visits the fewest intermediate nodes.
In the graph above, A->B->C->D is shorter than A->B->C->B->D (disallowing loops)

NODE DEGREE: The degree of a node in a network is a count of the number of

connections it has to other nodes. The degree distribution is the probability distribution of
these degrees in the whole network.
In the graph below, A and D have a node degree of 1. B and C have a node degree of 3.
...Commonly Used Graph Algorithms...
CENTRALITY: An assessment of the importance of a node within a network.
Degree Centrality is the simplest, being a count of the number of connections that a node has.
It may be expressed as “Indegree” (# of incoming connections) and “Outdegre” (# of outgoing
connections).
...Commonly Used Graph Algorithms...
CLOSENESS CENTRALITY: Closeness considers the shortest paths between nodes and
assigns a higher value to nodes that can be used to reach most other nodes most quickly.

In the graph below, node A has the greatest centrality as all other nodes can be reached in one
“hop”, whereas others require 1 hop to A or 2 hops to any other node.

A
Commonly Used Graph Algorithms...
CONNECTEDNESS: Check whether or not a set of nodes in a Graph are connected.
All of the nodes in the graph below are connected, e.g. A to B, A to C via B etc.

SHORTEST PATH: The path between two nodes that visits the fewest intermediate nodes.
In the graph above, A->B->C->D is shorter than A->B->C->B->D (disallowing loops)

NODE DEGREE: The degree of a node in a network is a count of the number of

connections it has to other nodes. The degree distribution is the probability distribution of
these degrees in the whole network.
In the graph below, A and D have a node degree of 1. B andC have a node degree of 3.
...Commonly Used Graph Algorithms...
SHORTEST PATH: The path between two nodes that visits the fewest intermediate nodes.
In the graph below, A->B->C->D is shorter than A->B->C->B->D (disallowing loops)

AVERAGE PATH LENGTH: The average of all path lengths between all pairs of nodes in a
graph.

TRANSITIVE CLOSURE: The process of exploring a graph by traversing relationships
until all nodes have been visited, but without revisiting nodes that are joined together in
loops.
In the graph above, A->B->C->D is a transitive closure.
...Commonly Used Graph Algorithms...
GRAPH DIAMETER (or SPAN): The greatest distance between any pair of nodes in a graph.
It is computed by finding the shortest path between each pair of nodes. The maximum of these
path lengths is a measure of the diameter of the graph.
The diameters of the two graphs below are 2 and 5.
...Commonly Used Graph Algorithms...
BETWEENESS CENTRALITY: A centrality measure of a node within a graph.
Nodes that have a high probability of being visited on a randomly chosen short path between two
randomly chosen nodes have a high “betweeness”
In the graph below, node D has the highest betweeness centrality.
GRAPH DATABASES
Recognizing Graphs In Object Models...
Tree Structures
1-to-Many

Object Class A
...Recognizing Graphs In Object Models...
Tree Structures
1-to-Many

Relationship
Data

Object Class A

Object Class A
Recognizing Graphs In Object Models...
Tree Structures
1-to-Many

Relationship
Data

Object Class A

Object Class A

Graph (Network) Structures
Many-to-Many

Object Class A
Recognizing Graphs In Object Models...
Tree Structures
1-to-Many

Relationship
Data

Object Class A

Object Class A

Graph (Network) Structures
Many-to-Many

Relationship Data

Object Class A

Object Class A

Copyright © Objectivity, Inc. 2012
Why Do We Need Graph DBMSs?...
Relational Database
Think about the SQL query for finding all links between the two “blue” rows... Good luck!
Table_A

Table_B

Table_C

Table_D

Table_E

Table_F

Table_G

Relational databases aren’t good at handling complex relationships!
...Graph DBMSs Are Designed To Handle Relationships
Relational Database
Think about the SQL query for finding all links between the two “blue” rows... Good luck!
Table_A

Table_B

Table_C

Table_D

Table_E

Table_F

Table_G

Objectivity/DB or InfiniteGraph - The solution can be found with a few lines of code
A3

G4
Graph Databases
• Data model:
– Node (Vertex) and Relationship (Edge) objects
– Directed
– May be a hypergraph (edges with multiple endpoints)

• Examples:
– InfiniteGraph, Neo4j, OrientDB, AllegroGraph, TitanDB and Dex

VERTEX

2

N

EDGE
Graph DBMSs Use A Very Simple Object Model
Tree Structures
1-to-Many

Relationship
Data

Object Class A

Object Class A

Graph (Network) Structures

GRAPH MODEL

Many-to-Many

Relationship Data

EDGE

Object Class A

Object Class A

VERTEX

Copyright © Objectivity, Inc. 2012
Basic Capabilities Of Most Graph Databases...
Rapid Graph Traversal

Start

Finish
...Basic Capabilities Of Most Graph Databases...
Rapid Graph Traversal

Inclusive or Exclusive Selection

X
Start

Start

X
...Basic Capabilities Of Most Graph Databases
Rapid Graph Traversal

Inclusive or Exclusive Selection

X
Start

Start

X
Find the Shortest or All Paths Between Objects

Start

Finish
InfiniteGraph Capabilities
Parallel Graph Traversal

Inclusive or Exclusive Selection

X
Start

Start

X
Shortest or All Paths Between Objects

Computational & Visualization Plug-Ins
Compute Cost To Date

Start

Finish

Start

Visualize

Copyright © Objectivity, Inc. 2013
CURRENT IMPLEMENTATIONS
Graph Databases Pre-2003
Graph Databases Post-2003

X
Titan
Graph Databases Compared [UNSW]
DATA STORAGE FEATURES
Graph Databases Compared [DZone]

Source: http://goo.gl/ni4eoE
Graph Databases – Pros and Cons
• Strengths:
– Extremely fast for connected data
– Scales out, typically
– Easy to query (navigation)
– Simple data model

• Weaknesses:
– May not support distribution or sharding
– Requires conceptual shift... a different way of thinking

VERTEX

2

N

EDGE
USE CASES
Example 1 - Market Analysis
The 10 companies that control a majority of U.S. consumer goods brands
Example 2 - Demographics
Used in social network analysis, marketing, medical research etc.
Example 3 - Seed To Consumer Tracking

?
Example 4 - Ad Placement Networks
Smartphone Ad placement - based on the the user’s profile and location data
captured by opt-in applications.
• The location data can be stored and distilled in a key-value and column store
hybrid database, such as Cassandra
• The locations are matched with geospatial data to deduce user interests.
• As Ad placement orders arrive, an application built on a graph database such
as InfiniteGraph, matches groups of users with Ads:
• Maximizes relevance for the user.
• Yields maximum value for the advertiser and the placer.
Example 4 - Ad Placement Networks
Smartphone Ad placement - based on the the user’s profile and location data
captured by opt-in applications.
• The location data can be stored and distilled in a key-value and column store
hybrid database, such as Cassandra
• The locations are matched with geospatial data to deduce user interests.
• As Ad placement orders arrive, an application built on a graph database such
as InfiniteGraph, matches groups of users with Ads:
• Maximizes relevance for the user.
• Yields maximum value for the advertiser and the placer.
Example 5 - Healthcare Informatics

Problem: Physicians need better electronic records for managing patient data on a global
basis and match symptoms, causes, treatments and interdependencies to improve
diagnoses and outcomes.
• Solution: Create a database capable of leveraging existing architecture using NOSQL tools
such as Objectivity/DB and InfiniteGraph that can handle data capture, symptoms,
diagnoses, treatments, reactions to medications, interactions and progress.
• Result: It works:
• Diagnosis is faster and more accurate
• The knowledge base tracks similar medical cases.
• Treatment success rates have improved.
Example 6 - Big Data Analytics
Example 7 – Visual Analytics
Hands On With A Graph Database

• We'll be using InfiniteGraph today
• You'll need a Java Development environment on your machine

• If you haven't downloaded InfiniteGraph already, please go to:
http://goo.gl/XzJo6T [https://download.infinitegraph.com/index.aspx]

• We'll be covering a HelloGraph and a more complex sample program

More Related Content

PPTX
Data Models In Database Management System
PPTX
Relational databases vs Non-relational databases
PDF
Introduction to Graph Databases
PPTX
Dash plotly data visualization
PDF
Graph Algorithms for Developers
PDF
Data Visualization With Tableau | Edureka
PPT
Graph database
PPTX
Introduction to Graph Databases
Data Models In Database Management System
Relational databases vs Non-relational databases
Introduction to Graph Databases
Dash plotly data visualization
Graph Algorithms for Developers
Data Visualization With Tableau | Edureka
Graph database
Introduction to Graph Databases

What's hot (20)

PPT
3.5 model based clustering
PDF
Plotly dash and data visualisation in Python
PPTX
Basic Behavioral Modeling
PPTX
Graph Analytics
PPT
Social Network Analysis
PDF
Introduction to Database Management System
PPTX
Dynamodb Presentation
PDF
Relational database- Fundamentals
PPTX
3 data visualization
PPTX
Graph databases
PDF
Data Visualization
PPTX
Introducing Cascading Style Sheets
PDF
NOSQLEU - Graph Databases and Neo4j
PPTX
NoSQL Graph Databases - Why, When and Where
PDF
Problem-Solving using Graph Traversals: Searching, Scoring, Ranking, and Reco...
PDF
Knowledge Graphs - The Power of Graph-Based Search
PPTX
Advanced Structural Modeling
PPTX
Database management system
PPTX
Data Visualization
3.5 model based clustering
Plotly dash and data visualisation in Python
Basic Behavioral Modeling
Graph Analytics
Social Network Analysis
Introduction to Database Management System
Dynamodb Presentation
Relational database- Fundamentals
3 data visualization
Graph databases
Data Visualization
Introducing Cascading Style Sheets
NOSQLEU - Graph Databases and Neo4j
NoSQL Graph Databases - Why, When and Where
Problem-Solving using Graph Traversals: Searching, Scoring, Ranking, and Reco...
Knowledge Graphs - The Power of Graph-Based Search
Advanced Structural Modeling
Database management system
Data Visualization
Ad

Viewers also liked (13)

PPTX
Neo4j - graph database for recommendations
PPTX
Lju Lazarevic
KEY
NoSQL: Why, When, and How
PDF
Relational vs. Non-Relational
PPTX
Relational to Graph - Import
PDF
Designing and Building a Graph Database Application – Architectural Choices, ...
PDF
Converting Relational to Graph Databases
PDF
Graph Database, a little connected tour - Castano
PDF
Graph Based Recommendation Systems at eBay
PDF
Introduction to graph databases GraphDays
PPTX
An Introduction to NOSQL, Graph Databases and Neo4j
PDF
Data Modeling with Neo4j
PPTX
Data Mining: Graph mining and social network analysis
Neo4j - graph database for recommendations
Lju Lazarevic
NoSQL: Why, When, and How
Relational vs. Non-Relational
Relational to Graph - Import
Designing and Building a Graph Database Application – Architectural Choices, ...
Converting Relational to Graph Databases
Graph Database, a little connected tour - Castano
Graph Based Recommendation Systems at eBay
Introduction to graph databases GraphDays
An Introduction to NOSQL, Graph Databases and Neo4j
Data Modeling with Neo4j
Data Mining: Graph mining and social network analysis
Ad

Similar to An Introduction to Graph Databases (20)

PDF
The Graph Abstract Data Type-DATA STRUCTURE.pdf
PPTX
Graph in data structures
PPTX
Análisis llamadas telefónicas con Teoría de Grafos y R
PDF
Graph Analyses with Python and NetworkX
PDF
Node Path Visualizer Using Shortest Path Algorithms
PPTX
Directed Graph in Graph Theory and Combinatorics.pptx
PPTX
Social Network Analysis and Visualization
PPTX
Data Structure Graph DMZ #DMZone
PPTX
dms slide discrete mathematics sem 2 engineering
PPTX
Lecture 2.3.1 Graph.pptx
PPTX
Graphs data structures
PPTX
data structures and algorithms Unit 2
PDF
Create swath profiles in GRASS GIS
PPTX
Apache Spark GraphX highlights.
PPTX
Spanning Tree in data structure and .pptx
PDF
Edge Representation Learning with Hypergraphs
PPTX
SOCIAL NETWORK ANALYISI in engeenireg.pptx
PPTX
CPP Homework Help
PPTX
Graph-Theory-The-Foundations-of-Modern-Networks.pptx
PDF
Ijcnc050213
The Graph Abstract Data Type-DATA STRUCTURE.pdf
Graph in data structures
Análisis llamadas telefónicas con Teoría de Grafos y R
Graph Analyses with Python and NetworkX
Node Path Visualizer Using Shortest Path Algorithms
Directed Graph in Graph Theory and Combinatorics.pptx
Social Network Analysis and Visualization
Data Structure Graph DMZ #DMZone
dms slide discrete mathematics sem 2 engineering
Lecture 2.3.1 Graph.pptx
Graphs data structures
data structures and algorithms Unit 2
Create swath profiles in GRASS GIS
Apache Spark GraphX highlights.
Spanning Tree in data structure and .pptx
Edge Representation Learning with Hypergraphs
SOCIAL NETWORK ANALYISI in engeenireg.pptx
CPP Homework Help
Graph-Theory-The-Foundations-of-Modern-Networks.pptx
Ijcnc050213

More from InfiniteGraph (20)

PDF
Making Sense of Graph Databases
PPTX
Webinar 3/12/14: Using Social Media to Drive Value
PDF
NoSQL Simplified: Schema vs. Schema-less
PDF
The Value of Explicit Schema for Graph Use Cases
PDF
Solution Use Case Demo: The Power of Relationships in Your Big Data
PDF
PowerOfRelationshipsInBigData_SVNoSQL
PPT
Objectivity/DB: A Multipurpose NoSQL Database
PPT
Making sense of the Graph Revolution
PDF
Using A Distributed Graph Database To Make Sense Of Disparate Data Stores
PPT
Turning Big Data into Smart Data with Graph Technologies
PPTX
NoSQL Technology and Real-time, Accurate Predictive Analytics
PPTX
How we Learned to Stop Worrying and Solve the Distributed Graph Problem
PDF
Everything Goes Better With Bacon: Revisiting the Six Degrees Problem with a ...
PPTX
Vodafone xone fev142013v3 ext
PDF
Dbta Webinar Realize Value of Big Data with graph 011713
PDF
Oracle no sql overview brief
PPT
Infinite graph nosql meetup dec 2012
PDF
Oracle NoSQL DB & InfiniteGraph - Trends in Big Data and Graph Technology
PPTX
Silicon valley nosql meetup april 2012
PPT
NOSQL Now! Presentation, August 24, 2011: Graph Databases: Connecting the Dot...
Making Sense of Graph Databases
Webinar 3/12/14: Using Social Media to Drive Value
NoSQL Simplified: Schema vs. Schema-less
The Value of Explicit Schema for Graph Use Cases
Solution Use Case Demo: The Power of Relationships in Your Big Data
PowerOfRelationshipsInBigData_SVNoSQL
Objectivity/DB: A Multipurpose NoSQL Database
Making sense of the Graph Revolution
Using A Distributed Graph Database To Make Sense Of Disparate Data Stores
Turning Big Data into Smart Data with Graph Technologies
NoSQL Technology and Real-time, Accurate Predictive Analytics
How we Learned to Stop Worrying and Solve the Distributed Graph Problem
Everything Goes Better With Bacon: Revisiting the Six Degrees Problem with a ...
Vodafone xone fev142013v3 ext
Dbta Webinar Realize Value of Big Data with graph 011713
Oracle no sql overview brief
Infinite graph nosql meetup dec 2012
Oracle NoSQL DB & InfiniteGraph - Trends in Big Data and Graph Technology
Silicon valley nosql meetup april 2012
NOSQL Now! Presentation, August 24, 2011: Graph Databases: Connecting the Dot...

Recently uploaded (20)

PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
A Presentation on Artificial Intelligence
PPT
Teaching material agriculture food technology
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Approach and Philosophy of On baking technology
PDF
Modernizing your data center with Dell and AMD
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Empathic Computing: Creating Shared Understanding
PDF
Unlocking AI with Model Context Protocol (MCP)
NewMind AI Weekly Chronicles - August'25 Week I
Building Integrated photovoltaic BIPV_UPV.pdf
Network Security Unit 5.pdf for BCA BBA.
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Diabetes mellitus diagnosis method based random forest with bat algorithm
A Presentation on Artificial Intelligence
Teaching material agriculture food technology
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Chapter 3 Spatial Domain Image Processing.pdf
Approach and Philosophy of On baking technology
Modernizing your data center with Dell and AMD
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
The Rise and Fall of 3GPP – Time for a Sabbatical?
Encapsulation_ Review paper, used for researhc scholars
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Empathic Computing: Creating Shared Understanding
Unlocking AI with Model Context Protocol (MCP)

An Introduction to Graph Databases

  • 1. www.Objectivity.com An Introduction To Graph Databases Leon Guzenda & Nick Quinn August 20, 2013
  • 2. Overview • Introductions • Graph Theory • Commonly Used Graph Algorithms • Graph Databases • Current Implementations • Use Cases • Hands-On Tutorial
  • 3. We Are From Objectivity Inc. Company • Objectivity, Inc. is headquartered in Sunnyvale, CA. • Established in 1988 to tackle database problems that network/hierarchical/relational and file-based technologies struggle with. • Objectivity has over two decades of Big Data and NoSQL experience Products • Develops NoSQL platforms for managing and discovering relationships and patterns in complex data: • Objectivity/DB - an object database that manages localized, centralized or distributed databases • InfiniteGraph - a massively scalable graph database built on Objectivity/DB that enables organizations to find, store and exploit the relationships in their data Markets • The Big Data market is projected to be around $12B in 2012, with a CAGR of 28% over the next five years. • 40% per year data growth, cloud adoption, mobile usage and improved real-time analytics underpin Objectivity’s growth opportunities as a Big Data analytics enabler. Customers • Embedded in hundreds of enterprises, government organizations and products - millions of deployments. Financials • Consistently generates increased revenues. • Privately held by the employees and a few venture capital companies. Copyright © Objectivity, Inc. 2012
  • 5. The History of Graph Theory 1736: Leonard Euler writes a paper on the “Seven Bridges of Konisberg” 1845: Gustav Kirchoff publishes his electrical circuit laws 1852: Francis Guthrie poses the “Four Color Problem” 1878: Sylvester publishes an article in Nature magazine that describes graphs 1936: Dénes Kőnig publishes a textbook on Graph Theory 1941: Ramsey and Turán define Extremal Graph Theory 1959: De Bruijn publishes a paper summarizing Enumerative Graph Theory 1959: Erdos, Renyi and Gilbert define Random Graph Theory 1969: Heinrich Heesch solves the “Four Color” problem 2003: Commercial Graph Database products start appearing on the market
  • 6. Graph Theory Terminology... VERTEX: A single node in a graph data structure EDGE: A connection between a pair of VERTICES PROPERTIES: Data items that belong to a particular Vertex or Edge WEIGHT: A quantity associated with a particular Edge GRAPH: A network of linked Vertex and Edge objects Vertex 1 City: San Francisco Pop: 812,826 Edge 1 Road: I-101 Miles: 47.8 Vertex 2 City: San Jose Pop: 967,487
  • 7. ...Graph Theory Terminology... SIMPLE/UNDIRECTED GRAPH: A Graph where each VERTEX may be linked to one or more Vertex objects via Edge objects and each Edge object is connected to exactly two Vertex objects. Furthermore, neither Vertex connected to an Edge is more significant than the other. DIRECTED GRAPH: A Simple/Undirected Graph where one Vertex in a Vertex + Edge + Vertex group (an “Arc” or “Path”) can be considered the “Head” of the Path and the other can be considered the “Tail”. MIXED GRAPH: A Graph in which some paths are Undirected and others are Directed.
  • 8. ...Graph Theory Terminology LOOP: An Edge that is doubly-linked to the same Vertex MULTIGRAPH: A Graph that allows multiple Edges and Loops QUIVER: A Graph where Vertices are allowed to be connected by multiple Arcs. A Quiver may include Loops. WEIGHTED GRAPH: A Graph where a quantity is assigned to an Edge, e.g. a Length assigned to an Edge representing a road between two Vertices representing cities.  HALF EDGE: An Edge that is only connected to a single Vertex  LOOSE EDGE: An Edge that isn't connected to any Vertices.  CONNECTIVITY: Two Vertices are Connected if it is possible to find a path between them.
  • 9. COMMONLY USED GRAPH ALGORITHMS Mac Evans
  • 10. Commonly Used Graph Algorithms... CONNECTEDNESS: Check whether or not a set of nodes in a Graph are connected. All of the nodes in the graph below are connected, e.g. A to B, A to C via B etc. SHORTEST PATH: The path between two nodes that visits the fewest intermediate nodes. In the graph above, A->B->C->D is shorter than A->B->C->B->D (disallowing loops) NODE DEGREE: The degree of a node in a network is a count of the number of connections it has to other nodes. The degree distribution is the probability distribution of these degrees in the whole network. In the graph below, A and D have a node degree of 1. B and C have a node degree of 3.
  • 11. ...Commonly Used Graph Algorithms... CENTRALITY: An assessment of the importance of a node within a network. Degree Centrality is the simplest, being a count of the number of connections that a node has. It may be expressed as “Indegree” (# of incoming connections) and “Outdegre” (# of outgoing connections).
  • 12. ...Commonly Used Graph Algorithms... CLOSENESS CENTRALITY: Closeness considers the shortest paths between nodes and assigns a higher value to nodes that can be used to reach most other nodes most quickly. In the graph below, node A has the greatest centrality as all other nodes can be reached in one “hop”, whereas others require 1 hop to A or 2 hops to any other node. A
  • 13. Commonly Used Graph Algorithms... CONNECTEDNESS: Check whether or not a set of nodes in a Graph are connected. All of the nodes in the graph below are connected, e.g. A to B, A to C via B etc. SHORTEST PATH: The path between two nodes that visits the fewest intermediate nodes. In the graph above, A->B->C->D is shorter than A->B->C->B->D (disallowing loops) NODE DEGREE: The degree of a node in a network is a count of the number of connections it has to other nodes. The degree distribution is the probability distribution of these degrees in the whole network. In the graph below, A and D have a node degree of 1. B andC have a node degree of 3.
  • 14. ...Commonly Used Graph Algorithms... SHORTEST PATH: The path between two nodes that visits the fewest intermediate nodes. In the graph below, A->B->C->D is shorter than A->B->C->B->D (disallowing loops) AVERAGE PATH LENGTH: The average of all path lengths between all pairs of nodes in a graph. TRANSITIVE CLOSURE: The process of exploring a graph by traversing relationships until all nodes have been visited, but without revisiting nodes that are joined together in loops. In the graph above, A->B->C->D is a transitive closure.
  • 15. ...Commonly Used Graph Algorithms... GRAPH DIAMETER (or SPAN): The greatest distance between any pair of nodes in a graph. It is computed by finding the shortest path between each pair of nodes. The maximum of these path lengths is a measure of the diameter of the graph. The diameters of the two graphs below are 2 and 5.
  • 16. ...Commonly Used Graph Algorithms... BETWEENESS CENTRALITY: A centrality measure of a node within a graph. Nodes that have a high probability of being visited on a randomly chosen short path between two randomly chosen nodes have a high “betweeness” In the graph below, node D has the highest betweeness centrality.
  • 18. Recognizing Graphs In Object Models... Tree Structures 1-to-Many Object Class A
  • 19. ...Recognizing Graphs In Object Models... Tree Structures 1-to-Many Relationship Data Object Class A Object Class A
  • 20. Recognizing Graphs In Object Models... Tree Structures 1-to-Many Relationship Data Object Class A Object Class A Graph (Network) Structures Many-to-Many Object Class A
  • 21. Recognizing Graphs In Object Models... Tree Structures 1-to-Many Relationship Data Object Class A Object Class A Graph (Network) Structures Many-to-Many Relationship Data Object Class A Object Class A Copyright © Objectivity, Inc. 2012
  • 22. Why Do We Need Graph DBMSs?... Relational Database Think about the SQL query for finding all links between the two “blue” rows... Good luck! Table_A Table_B Table_C Table_D Table_E Table_F Table_G Relational databases aren’t good at handling complex relationships!
  • 23. ...Graph DBMSs Are Designed To Handle Relationships Relational Database Think about the SQL query for finding all links between the two “blue” rows... Good luck! Table_A Table_B Table_C Table_D Table_E Table_F Table_G Objectivity/DB or InfiniteGraph - The solution can be found with a few lines of code A3 G4
  • 24. Graph Databases • Data model: – Node (Vertex) and Relationship (Edge) objects – Directed – May be a hypergraph (edges with multiple endpoints) • Examples: – InfiniteGraph, Neo4j, OrientDB, AllegroGraph, TitanDB and Dex VERTEX 2 N EDGE
  • 25. Graph DBMSs Use A Very Simple Object Model Tree Structures 1-to-Many Relationship Data Object Class A Object Class A Graph (Network) Structures GRAPH MODEL Many-to-Many Relationship Data EDGE Object Class A Object Class A VERTEX Copyright © Objectivity, Inc. 2012
  • 26. Basic Capabilities Of Most Graph Databases... Rapid Graph Traversal Start Finish
  • 27. ...Basic Capabilities Of Most Graph Databases... Rapid Graph Traversal Inclusive or Exclusive Selection X Start Start X
  • 28. ...Basic Capabilities Of Most Graph Databases Rapid Graph Traversal Inclusive or Exclusive Selection X Start Start X Find the Shortest or All Paths Between Objects Start Finish
  • 29. InfiniteGraph Capabilities Parallel Graph Traversal Inclusive or Exclusive Selection X Start Start X Shortest or All Paths Between Objects Computational & Visualization Plug-Ins Compute Cost To Date Start Finish Start Visualize Copyright © Objectivity, Inc. 2013
  • 33. Graph Databases Compared [UNSW] DATA STORAGE FEATURES
  • 34. Graph Databases Compared [DZone] Source: http://goo.gl/ni4eoE
  • 35. Graph Databases – Pros and Cons • Strengths: – Extremely fast for connected data – Scales out, typically – Easy to query (navigation) – Simple data model • Weaknesses: – May not support distribution or sharding – Requires conceptual shift... a different way of thinking VERTEX 2 N EDGE
  • 37. Example 1 - Market Analysis The 10 companies that control a majority of U.S. consumer goods brands
  • 38. Example 2 - Demographics Used in social network analysis, marketing, medical research etc.
  • 39. Example 3 - Seed To Consumer Tracking ?
  • 40. Example 4 - Ad Placement Networks Smartphone Ad placement - based on the the user’s profile and location data captured by opt-in applications. • The location data can be stored and distilled in a key-value and column store hybrid database, such as Cassandra • The locations are matched with geospatial data to deduce user interests. • As Ad placement orders arrive, an application built on a graph database such as InfiniteGraph, matches groups of users with Ads: • Maximizes relevance for the user. • Yields maximum value for the advertiser and the placer.
  • 41. Example 4 - Ad Placement Networks Smartphone Ad placement - based on the the user’s profile and location data captured by opt-in applications. • The location data can be stored and distilled in a key-value and column store hybrid database, such as Cassandra • The locations are matched with geospatial data to deduce user interests. • As Ad placement orders arrive, an application built on a graph database such as InfiniteGraph, matches groups of users with Ads: • Maximizes relevance for the user. • Yields maximum value for the advertiser and the placer.
  • 42. Example 5 - Healthcare Informatics Problem: Physicians need better electronic records for managing patient data on a global basis and match symptoms, causes, treatments and interdependencies to improve diagnoses and outcomes. • Solution: Create a database capable of leveraging existing architecture using NOSQL tools such as Objectivity/DB and InfiniteGraph that can handle data capture, symptoms, diagnoses, treatments, reactions to medications, interactions and progress. • Result: It works: • Diagnosis is faster and more accurate • The knowledge base tracks similar medical cases. • Treatment success rates have improved.
  • 43. Example 6 - Big Data Analytics
  • 44. Example 7 – Visual Analytics
  • 45. Hands On With A Graph Database • We'll be using InfiniteGraph today • You'll need a Java Development environment on your machine • If you haven't downloaded InfiniteGraph already, please go to: http://goo.gl/XzJo6T [https://download.infinitegraph.com/index.aspx] • We'll be covering a HelloGraph and a more complex sample program

Editor's Notes

  • #44: By initiating a polyglot approach – One can utilize existing SQL based architecture and databases while still gaining the competitive advantage that the latest NOSQL technologies provide. One example of this Polyglot approach is shown here. The technology(ies) used would be dependent on the use case.
  • #45: Note Object Oriented Databases as NOSQL here.