SlideShare ist ein Scribd-Unternehmen logo
1 von 33
Downloaden Sie, um offline zu lesen
Intro to Neo4j 
and Graph Databases 
David Montag 
Neo Technology 
! 
david@neotechnology.com
Early Adopters of Graph Technology
Survival of the Fittest 
Evolution of Web Search 
Pre-1999 
WWW Indexing 
Discrete Data 
1999 - 2012 
Google Invents 
PageRank 
Connected Data 
(Simple) 
2012-? 
Google Knowledge Graph, 
Facebook Graph Search 
Connected Data 
(Rich)
Survival of the Fittest 
Evolution of Online Recruiting 
1999 
Keyword Search 
Discrete Data 
2011-12 
Social Discovery 
Connected Data
Early Adopter Segments 
(What we expected to happen - view from several years ago) 
Neo Technology, Inc Confidential 
Core Industries 
& Use Cases: 
Software Financial 
Services 
Telecomm-unications 
Network & Data Center 
Management 
Master Data 
Management 
Social 
Geo
Neo4j Adoption Snapshot 
Select Commercial Customers* 
Neo Technology, Inc Confidential 
Core Industries 
& Use Cases: 
*Community Users Not Included 
Software Financial 
Services 
Telecomm-unications 
Network & Data Center 
Management 
Master Data 
Management 
Social 
Geo 
Finance
Neo4j Adoption Snapshot 
Select Commercial Customers* 
Neo Technology, Inc Confidential 
Core Industries 
& Use Cases: 
Web / ISV Financial 
Services 
Telecomm-unications 
Network & Data Center 
Management 
Master Data 
Management 
Social 
Geo 
Finance 
Core Industries 
& Use Cases: Software 
Financial 
Services 
Telecommu 
nications 
Health Care & 
Life Sciences 
Web Social, 
HR & Recruiting 
Media & 
Publishing 
Energy, Services, 
Automotive, Gov’t, 
Logistics, Education, 
Gaming, Other 
Network & Data 
Center Management 
MDM / System of 
Record 
Social 
Geo 
Recommend-ations 
Identity & Access 
Mgmt 
Content 
Management 
BI, CRM, Impact Analysis, 
Fraud Detection, Resource 
Optimization, etc. 
Accenture 
Aviation 
*Community Users Not Included 
Finance IT
What’s a Graph 
Database?
Account 
Customer 
CUSTOMER_OF 
Branch 
balance: $100 
ovd_prot: false 
name: David 
address: … 
location: Menlo 
Park, CA 
MANAGES 
Employee 
name: Mike 
OWNS 
CREATED_AT 
since: 2010
143 
Alice 
326 
$100 
725 
$632 
981 
$212 
143 
143 
143 
326 
725 
981 
Customers Customer_Accounts Accounts
Alice 
$100 
$632 
$212 
143 
326 
725 
981 
143 
981 
143 
725 
143 
326
name: Alice 
bal: $100 
bal: $632 
bal: $212 
Nodes 
OWNS 
OWNS 
OWNS 
Relationships
Quick Demo
Graph history, benefits 
& differentiators
Not Only SQL
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits bits 
bits 
bits 
bits bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits 
bits
NoSQL 
Neo4j 
Teradata 
Hadoop 
Oracle Cassandra 
MySQL 
DB2 
Sybase 
Postgres 
MongoDB 
RDBMS 
Analytics 
Riak 
Redis Couchbase 
GigaSpaces 
Coherence
Built ground-up for graphs 
From the storage layer to the query language, 
graphs are native to Neo4j. 
Other NoSQL databases 
don’t do it at all 
Relational databases 
do it very poorly 
Person Account 
326 
BofA #1234 
John 
326 
Rigid schema & costly joining 
of IDs required every lookup 
mongo
Connected Query Performance 
1000x faster 
Connectedness of Data Set 
Response Time 
RDBMS Degree: < 3 
Size: Thousands 
Neo4j 
# Hops: 0-1 
Degree: Thousands+ 
Size: Billions+ 
# Hops: Tens to Hundreds 
RDBMS vs. Native Graph Database
(SELECT T.directReportees AS directReportees, sum(T.count) AS count 
FROM ( 
SELECT manager.pid AS directReportees, 0 AS count 
FROM person_reportee manager 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
UNION 
SELECT manager.pid AS directReportees, count(manager.directly_manages) AS count 
FROM person_reportee manager 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
GROUP BY directReportees 
UNION 
SELECT manager.pid AS directReportees, count(reportee.directly_manages) AS count 
FROM person_reportee manager 
JOIN person_reportee reportee 
ON manager.directly_manages = reportee.pid 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
GROUP BY directReportees 
UNION 
SELECT manager.pid AS directReportees, count(L2Reportees.directly_manages) AS count 
FROM person_reportee manager 
JOIN person_reportee L1Reportees 
ON manager.directly_manages = L1Reportees.pid 
JOIN person_reportee L2Reportees 
ON L1Reportees.directly_manages = L2Reportees.pid 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
GROUP BY directReportees 
) AS T 
GROUP BY directReportees) 
UNION 
(SELECT T.directReportees AS directReportees, sum(T.count) AS count 
FROM ( 
SELECT manager.directly_manages AS directReportees, 0 AS count 
FROM person_reportee manager 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
UNION 
SELECT reportee.pid AS directReportees, count(reportee.directly_manages) AS count 
FROM person_reportee manager 
JOIN person_reportee reportee 
ON manager.directly_manages = reportee.pid 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
GROUP BY directReportees 
UNION 
(continued from previous page...) 
SELECT depth1Reportees.pid AS directReportees, 
count(depth2Reportees.directly_manages) AS count 
FROM person_reportee manager 
JOIN person_reportee L1Reportees 
ON manager.directly_manages = L1Reportees.pid 
JOIN person_reportee L2Reportees 
ON L1Reportees.directly_manages = L2Reportees.pid 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
GROUP BY directReportees 
) AS T 
GROUP BY directReportees) 
UNION 
(SELECT T.directReportees AS directReportees, sum(T.count) AS count 
FROM( 
SELECT reportee.directly_manages AS directReportees, 0 AS count 
FROM person_reportee manager 
JOIN person_reportee reportee 
ON manager.directly_manages = reportee.pid 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
GROUP BY directReportees 
UNION 
SELECT L2Reportees.pid AS directReportees, count(L2Reportees.directly_manages) AS 
count 
FROM person_reportee manager 
JOIN person_reportee L1Reportees 
ON manager.directly_manages = L1Reportees.pid 
JOIN person_reportee L2Reportees 
ON L1Reportees.directly_manages = L2Reportees.pid 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
GROUP BY directReportees 
) AS T 
GROUP BY directReportees) 
UNION 
(SELECT L2Reportees.directly_manages AS directReportees, 0 AS count 
FROM person_reportee manager 
JOIN person_reportee L1Reportees 
ON manager.directly_manages = L1Reportees.pid 
JOIN person_reportee L2Reportees 
ON L1Reportees.directly_manages = L2Reportees.pid 
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 
)! 
MATCH 
(boss)-­‐[:MANAGES*0..3]-­‐>(sub), 
(sub)-­‐[:MANAGES*1..3]-­‐>(report) 
WHERE 
boss.name 
= 
“John 
Doe” 
RETURN 
sub.name 
AS 
Subordinate, 
count(report) 
AS 
Total 
Cypher vs SQL
Forrester estimates that over 25% of 
enterprises will be using graph databases by 
2017 to support the next-generation 
applications that need connected data sets. 
– Forrester Research (TechRadar: Enterprise DBMS, Q1 2014) 
“ 
“ … they are the solution that can 
deliver truly new insights from data. 
– Svetlana Sicular, Research Director, Gartner
4 Case Studies
• Support cost & resolution 
times too high 
•RDBMS infrastructure did 
not support expansion 
– Prem Malhotra, 
Director Enterprise Architecture “ 
Neo Technology, Inc Confidential 
Support 
Case 
Support 
Case 
Knowledge 
Base 
Article 
Solution 
Knowledge 
Base 
Article 
Knowledge 
Base 
Article 
Message 
Support Case Avoidance 
Challenge 
Results 
• Faster answers for 
customers, with lower 
reliance on support 
Relational databases have a hard 
time dealing with the complexities 
of connected data.
MDM / 
Recommendations 
• Constructing a 360° view of the 
customer for the sales team 
• IBM DB2 system not able to meet 
performance requirements 
Neo Technology, Inc Confidential 
Challenge 
Results 
• Flexibly search for insurance policies 
and associated personal data 
•Migration and deployment was easy
Patient transition 
& referral 
Challenge Results 
• Real-time search on 
Oracle not fast enough for 
next gen product 
• Handling 15% of all 
transitions nationwide in 
the US 
• Real-time deep 
recommendations on widely 
heterogeneous data 
Neo Technology, Inc Confidential
Route Planning 
•Maintain large network of 
routes covering many carriers 
and couriers 
•MySQL-based solution not fast 
enough for real-time use 
Neo Technology, Inc Confidential 
Challenge 
Results 
• 50x less code, 2000x faster calculations 
• Complete ownership of data, and 
flexibility to modify algorithms
Real-time Logistics Routing 
A 
B 
5M Packages Per Day. 3K Per Second. 
Logistics 
Solution 
Model the Logistics 
Network as a Graph 
Other examples
Come talk to us about 
the graphs you see! 
Upcoming events: 
• GotoCon Århus on Sep 29-30 
• Øredev Training on Nov 4

Weitere ähnliche Inhalte

Ähnlich wie Findability Day 2014 Neo4j how graph data boost your insights

Introduction: Relational to Graphs
Introduction: Relational to GraphsIntroduction: Relational to Graphs
Introduction: Relational to GraphsNeo4j
 
Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015StampedeCon
 
Graph database Use Cases
Graph database Use CasesGraph database Use Cases
Graph database Use CasesMax De Marzi
 
Big Data Expo 2015 - Savision Optimizing IT Operations
Big Data Expo 2015 - Savision Optimizing IT OperationsBig Data Expo 2015 - Savision Optimizing IT Operations
Big Data Expo 2015 - Savision Optimizing IT OperationsBigDataExpo
 
RDBMS to Graph
RDBMS to GraphRDBMS to Graph
RDBMS to GraphNeo4j
 
Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...
Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...
Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...Flink Forward
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to GraphsNeo4j
 
Age of Exploration: How to Achieve Enterprise-Wide Discovery
Age of Exploration: How to Achieve Enterprise-Wide DiscoveryAge of Exploration: How to Achieve Enterprise-Wide Discovery
Age of Exploration: How to Achieve Enterprise-Wide DiscoveryInside Analysis
 
IFESFinal58
IFESFinal58IFESFinal58
IFESFinal58anish h
 
Graphs & Big Data - Philip Rathle and Andreas Kollegger @ Big Data Science Me...
Graphs & Big Data - Philip Rathle and Andreas Kollegger @ Big Data Science Me...Graphs & Big Data - Philip Rathle and Andreas Kollegger @ Big Data Science Me...
Graphs & Big Data - Philip Rathle and Andreas Kollegger @ Big Data Science Me...Neo4j
 
Working With Big Data
Working With Big DataWorking With Big Data
Working With Big DataSeth Familian
 
How To Drive Exponential Growth Using Unconventional Data Sources
How To Drive Exponential Growth Using Unconventional Data SourcesHow To Drive Exponential Growth Using Unconventional Data Sources
How To Drive Exponential Growth Using Unconventional Data SourcesChartio
 
20091203 Presentatie Eurostar V02
20091203 Presentatie Eurostar V0220091203 Presentatie Eurostar V02
20091203 Presentatie Eurostar V02Henri Haarmans
 
Building Resiliency and Agility with Data Virtualization for the New Normal
Building Resiliency and Agility with Data Virtualization for the New NormalBuilding Resiliency and Agility with Data Virtualization for the New Normal
Building Resiliency and Agility with Data Virtualization for the New NormalDenodo
 
Information On Line Transaction Processing
Information On Line Transaction ProcessingInformation On Line Transaction Processing
Information On Line Transaction ProcessingStefanie Yang
 
Single View of the Customer
Single View of the Customer Single View of the Customer
Single View of the Customer MongoDB
 
Redefining Integration - The End of the Black Box
Redefining Integration -  The End of the Black BoxRedefining Integration -  The End of the Black Box
Redefining Integration - The End of the Black Boxdreamforce2006
 
Building New Data Ecosystem for Customer Analytics, Strata + Hadoop World, 2016
Building New Data Ecosystem for Customer Analytics, Strata + Hadoop World, 2016Building New Data Ecosystem for Customer Analytics, Strata + Hadoop World, 2016
Building New Data Ecosystem for Customer Analytics, Strata + Hadoop World, 2016Caserta
 

Ähnlich wie Findability Day 2014 Neo4j how graph data boost your insights (20)

Introduction: Relational to Graphs
Introduction: Relational to GraphsIntroduction: Relational to Graphs
Introduction: Relational to Graphs
 
Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015
 
Graph database Use Cases
Graph database Use CasesGraph database Use Cases
Graph database Use Cases
 
Big Data Expo 2015 - Savision Optimizing IT Operations
Big Data Expo 2015 - Savision Optimizing IT OperationsBig Data Expo 2015 - Savision Optimizing IT Operations
Big Data Expo 2015 - Savision Optimizing IT Operations
 
RDBMS to Graph
RDBMS to GraphRDBMS to Graph
RDBMS to Graph
 
Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...
Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...
Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to Graphs
 
Age of Exploration: How to Achieve Enterprise-Wide Discovery
Age of Exploration: How to Achieve Enterprise-Wide DiscoveryAge of Exploration: How to Achieve Enterprise-Wide Discovery
Age of Exploration: How to Achieve Enterprise-Wide Discovery
 
Acc 340 Preview Full Course
Acc 340 Preview Full CourseAcc 340 Preview Full Course
Acc 340 Preview Full Course
 
IFESFinal58
IFESFinal58IFESFinal58
IFESFinal58
 
Acc 340 Preview Full Course
Acc 340 Preview Full Course Acc 340 Preview Full Course
Acc 340 Preview Full Course
 
Graphs & Big Data - Philip Rathle and Andreas Kollegger @ Big Data Science Me...
Graphs & Big Data - Philip Rathle and Andreas Kollegger @ Big Data Science Me...Graphs & Big Data - Philip Rathle and Andreas Kollegger @ Big Data Science Me...
Graphs & Big Data - Philip Rathle and Andreas Kollegger @ Big Data Science Me...
 
Working With Big Data
Working With Big DataWorking With Big Data
Working With Big Data
 
How To Drive Exponential Growth Using Unconventional Data Sources
How To Drive Exponential Growth Using Unconventional Data SourcesHow To Drive Exponential Growth Using Unconventional Data Sources
How To Drive Exponential Growth Using Unconventional Data Sources
 
20091203 Presentatie Eurostar V02
20091203 Presentatie Eurostar V0220091203 Presentatie Eurostar V02
20091203 Presentatie Eurostar V02
 
Building Resiliency and Agility with Data Virtualization for the New Normal
Building Resiliency and Agility with Data Virtualization for the New NormalBuilding Resiliency and Agility with Data Virtualization for the New Normal
Building Resiliency and Agility with Data Virtualization for the New Normal
 
Information On Line Transaction Processing
Information On Line Transaction ProcessingInformation On Line Transaction Processing
Information On Line Transaction Processing
 
Single View of the Customer
Single View of the Customer Single View of the Customer
Single View of the Customer
 
Redefining Integration - The End of the Black Box
Redefining Integration -  The End of the Black BoxRedefining Integration -  The End of the Black Box
Redefining Integration - The End of the Black Box
 
Building New Data Ecosystem for Customer Analytics, Strata + Hadoop World, 2016
Building New Data Ecosystem for Customer Analytics, Strata + Hadoop World, 2016Building New Data Ecosystem for Customer Analytics, Strata + Hadoop World, 2016
Building New Data Ecosystem for Customer Analytics, Strata + Hadoop World, 2016
 

Mehr von Findwise

White Arkitekter - Findability Day Roadshow 2017
White Arkitekter - Findability Day Roadshow 2017White Arkitekter - Findability Day Roadshow 2017
White Arkitekter - Findability Day Roadshow 2017Findwise
 
AI och maskininlärning - Findability Day Roadshow 2017
AI och maskininlärning - Findability Day Roadshow 2017AI och maskininlärning - Findability Day Roadshow 2017
AI och maskininlärning - Findability Day Roadshow 2017Findwise
 
De kognitiva eran med IBM Watson - Findability Day Roadshow 2017
De kognitiva eran med IBM Watson - Findability Day Roadshow 2017De kognitiva eran med IBM Watson - Findability Day Roadshow 2017
De kognitiva eran med IBM Watson - Findability Day Roadshow 2017Findwise
 
Findwise and IBM Watson
Findwise and IBM WatsonFindwise and IBM Watson
Findwise and IBM WatsonFindwise
 
Findability Day 2016 - Enterprise Search and Findability Survey 2016
Findability Day 2016 - Enterprise Search and Findability Survey 2016Findability Day 2016 - Enterprise Search and Findability Survey 2016
Findability Day 2016 - Enterprise Search and Findability Survey 2016Findwise
 
Findability Day 2016 - Enterprise Search and Findability Survey 2016
Findability Day 2016 - Enterprise Search and Findability Survey 2016Findability Day 2016 - Enterprise Search and Findability Survey 2016
Findability Day 2016 - Enterprise Search and Findability Survey 2016Findwise
 
Findability Day 2016 - Big data analytics and machine learning
Findability Day 2016 - Big data analytics and machine learningFindability Day 2016 - Big data analytics and machine learning
Findability Day 2016 - Big data analytics and machine learningFindwise
 
Findability Day 2016 - Enterprise social collaboration
Findability Day 2016 - Enterprise social collaborationFindability Day 2016 - Enterprise social collaboration
Findability Day 2016 - Enterprise social collaborationFindwise
 
Findability Day 2016 - SKF case study
Findability Day 2016 - SKF case studyFindability Day 2016 - SKF case study
Findability Day 2016 - SKF case studyFindwise
 
Findability Day 2016 - Structuring content for user experience
Findability Day 2016 - Structuring content for user experienceFindability Day 2016 - Structuring content for user experience
Findability Day 2016 - Structuring content for user experienceFindwise
 
Findability Day 2016 - Augmented intelligence
Findability Day 2016 - Augmented intelligenceFindability Day 2016 - Augmented intelligence
Findability Day 2016 - Augmented intelligenceFindwise
 
Findability Day 2016 - What is GDPR?
Findability Day 2016 - What is GDPR?Findability Day 2016 - What is GDPR?
Findability Day 2016 - What is GDPR?Findwise
 
Findability Day 2016 - Get started with GDPR
Findability Day 2016 - Get started with GDPRFindability Day 2016 - Get started with GDPR
Findability Day 2016 - Get started with GDPRFindwise
 
Digital workplace och informationshantering i office 365
Digital workplace och informationshantering i office 365Digital workplace och informationshantering i office 365
Digital workplace och informationshantering i office 365Findwise
 
Findability Day 2015 - Mickel Grönroos - Findwise - How to increase safety on...
Findability Day 2015 - Mickel Grönroos - Findwise - How to increase safety on...Findability Day 2015 - Mickel Grönroos - Findwise - How to increase safety on...
Findability Day 2015 - Mickel Grönroos - Findwise - How to increase safety on...Findwise
 
Findability Day 2015 - Abby Covert - Keynote - How to make sense of any mess
Findability Day 2015 - Abby Covert - Keynote - How to make sense of any messFindability Day 2015 - Abby Covert - Keynote - How to make sense of any mess
Findability Day 2015 - Abby Covert - Keynote - How to make sense of any messFindwise
 
Findability Day 2015 - Noel Garry - IBM - Information governance and a 360 de...
Findability Day 2015 - Noel Garry - IBM - Information governance and a 360 de...Findability Day 2015 - Noel Garry - IBM - Information governance and a 360 de...
Findability Day 2015 - Noel Garry - IBM - Information governance and a 360 de...Findwise
 
Findability Day 2015 Mattias Ellison - Findwise - Enterprise Search and fin...
Findability Day 2015   Mattias Ellison - Findwise - Enterprise Search and fin...Findability Day 2015   Mattias Ellison - Findwise - Enterprise Search and fin...
Findability Day 2015 Mattias Ellison - Findwise - Enterprise Search and fin...Findwise
 
Findability Day 2015 - Martin White - The future is search!
Findability Day 2015 - Martin White - The future is search!Findability Day 2015 - Martin White - The future is search!
Findability Day 2015 - Martin White - The future is search!Findwise
 
Findability Day 2015 Liam Holley - Dassault systems - Insight and discovery...
Findability Day 2015   Liam Holley - Dassault systems - Insight and discovery...Findability Day 2015   Liam Holley - Dassault systems - Insight and discovery...
Findability Day 2015 Liam Holley - Dassault systems - Insight and discovery...Findwise
 

Mehr von Findwise (20)

White Arkitekter - Findability Day Roadshow 2017
White Arkitekter - Findability Day Roadshow 2017White Arkitekter - Findability Day Roadshow 2017
White Arkitekter - Findability Day Roadshow 2017
 
AI och maskininlärning - Findability Day Roadshow 2017
AI och maskininlärning - Findability Day Roadshow 2017AI och maskininlärning - Findability Day Roadshow 2017
AI och maskininlärning - Findability Day Roadshow 2017
 
De kognitiva eran med IBM Watson - Findability Day Roadshow 2017
De kognitiva eran med IBM Watson - Findability Day Roadshow 2017De kognitiva eran med IBM Watson - Findability Day Roadshow 2017
De kognitiva eran med IBM Watson - Findability Day Roadshow 2017
 
Findwise and IBM Watson
Findwise and IBM WatsonFindwise and IBM Watson
Findwise and IBM Watson
 
Findability Day 2016 - Enterprise Search and Findability Survey 2016
Findability Day 2016 - Enterprise Search and Findability Survey 2016Findability Day 2016 - Enterprise Search and Findability Survey 2016
Findability Day 2016 - Enterprise Search and Findability Survey 2016
 
Findability Day 2016 - Enterprise Search and Findability Survey 2016
Findability Day 2016 - Enterprise Search and Findability Survey 2016Findability Day 2016 - Enterprise Search and Findability Survey 2016
Findability Day 2016 - Enterprise Search and Findability Survey 2016
 
Findability Day 2016 - Big data analytics and machine learning
Findability Day 2016 - Big data analytics and machine learningFindability Day 2016 - Big data analytics and machine learning
Findability Day 2016 - Big data analytics and machine learning
 
Findability Day 2016 - Enterprise social collaboration
Findability Day 2016 - Enterprise social collaborationFindability Day 2016 - Enterprise social collaboration
Findability Day 2016 - Enterprise social collaboration
 
Findability Day 2016 - SKF case study
Findability Day 2016 - SKF case studyFindability Day 2016 - SKF case study
Findability Day 2016 - SKF case study
 
Findability Day 2016 - Structuring content for user experience
Findability Day 2016 - Structuring content for user experienceFindability Day 2016 - Structuring content for user experience
Findability Day 2016 - Structuring content for user experience
 
Findability Day 2016 - Augmented intelligence
Findability Day 2016 - Augmented intelligenceFindability Day 2016 - Augmented intelligence
Findability Day 2016 - Augmented intelligence
 
Findability Day 2016 - What is GDPR?
Findability Day 2016 - What is GDPR?Findability Day 2016 - What is GDPR?
Findability Day 2016 - What is GDPR?
 
Findability Day 2016 - Get started with GDPR
Findability Day 2016 - Get started with GDPRFindability Day 2016 - Get started with GDPR
Findability Day 2016 - Get started with GDPR
 
Digital workplace och informationshantering i office 365
Digital workplace och informationshantering i office 365Digital workplace och informationshantering i office 365
Digital workplace och informationshantering i office 365
 
Findability Day 2015 - Mickel Grönroos - Findwise - How to increase safety on...
Findability Day 2015 - Mickel Grönroos - Findwise - How to increase safety on...Findability Day 2015 - Mickel Grönroos - Findwise - How to increase safety on...
Findability Day 2015 - Mickel Grönroos - Findwise - How to increase safety on...
 
Findability Day 2015 - Abby Covert - Keynote - How to make sense of any mess
Findability Day 2015 - Abby Covert - Keynote - How to make sense of any messFindability Day 2015 - Abby Covert - Keynote - How to make sense of any mess
Findability Day 2015 - Abby Covert - Keynote - How to make sense of any mess
 
Findability Day 2015 - Noel Garry - IBM - Information governance and a 360 de...
Findability Day 2015 - Noel Garry - IBM - Information governance and a 360 de...Findability Day 2015 - Noel Garry - IBM - Information governance and a 360 de...
Findability Day 2015 - Noel Garry - IBM - Information governance and a 360 de...
 
Findability Day 2015 Mattias Ellison - Findwise - Enterprise Search and fin...
Findability Day 2015   Mattias Ellison - Findwise - Enterprise Search and fin...Findability Day 2015   Mattias Ellison - Findwise - Enterprise Search and fin...
Findability Day 2015 Mattias Ellison - Findwise - Enterprise Search and fin...
 
Findability Day 2015 - Martin White - The future is search!
Findability Day 2015 - Martin White - The future is search!Findability Day 2015 - Martin White - The future is search!
Findability Day 2015 - Martin White - The future is search!
 
Findability Day 2015 Liam Holley - Dassault systems - Insight and discovery...
Findability Day 2015   Liam Holley - Dassault systems - Insight and discovery...Findability Day 2015   Liam Holley - Dassault systems - Insight and discovery...
Findability Day 2015 Liam Holley - Dassault systems - Insight and discovery...
 

Kürzlich hochgeladen

Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Delhi Call girls
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxfirstjob4
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...shambhavirathore45
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Researchmichael115558
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxolyaivanovalion
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023ymrp368
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...amitlee9823
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 
Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxolyaivanovalion
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Delhi Call girls
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxolyaivanovalion
 

Kürzlich hochgeladen (20)

Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptx
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Ravak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptxRavak dropshipping via API with DroFx.pptx
Ravak dropshipping via API with DroFx.pptx
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptx
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFx
 

Findability Day 2014 Neo4j how graph data boost your insights

  • 1. Intro to Neo4j and Graph Databases David Montag Neo Technology ! david@neotechnology.com
  • 2.
  • 3. Early Adopters of Graph Technology
  • 4. Survival of the Fittest Evolution of Web Search Pre-1999 WWW Indexing Discrete Data 1999 - 2012 Google Invents PageRank Connected Data (Simple) 2012-? Google Knowledge Graph, Facebook Graph Search Connected Data (Rich)
  • 5. Survival of the Fittest Evolution of Online Recruiting 1999 Keyword Search Discrete Data 2011-12 Social Discovery Connected Data
  • 6. Early Adopter Segments (What we expected to happen - view from several years ago) Neo Technology, Inc Confidential Core Industries & Use Cases: Software Financial Services Telecomm-unications Network & Data Center Management Master Data Management Social Geo
  • 7. Neo4j Adoption Snapshot Select Commercial Customers* Neo Technology, Inc Confidential Core Industries & Use Cases: *Community Users Not Included Software Financial Services Telecomm-unications Network & Data Center Management Master Data Management Social Geo Finance
  • 8. Neo4j Adoption Snapshot Select Commercial Customers* Neo Technology, Inc Confidential Core Industries & Use Cases: Web / ISV Financial Services Telecomm-unications Network & Data Center Management Master Data Management Social Geo Finance Core Industries & Use Cases: Software Financial Services Telecommu nications Health Care & Life Sciences Web Social, HR & Recruiting Media & Publishing Energy, Services, Automotive, Gov’t, Logistics, Education, Gaming, Other Network & Data Center Management MDM / System of Record Social Geo Recommend-ations Identity & Access Mgmt Content Management BI, CRM, Impact Analysis, Fraud Detection, Resource Optimization, etc. Accenture Aviation *Community Users Not Included Finance IT
  • 9. What’s a Graph Database?
  • 10. Account Customer CUSTOMER_OF Branch balance: $100 ovd_prot: false name: David address: … location: Menlo Park, CA MANAGES Employee name: Mike OWNS CREATED_AT since: 2010
  • 11. 143 Alice 326 $100 725 $632 981 $212 143 143 143 326 725 981 Customers Customer_Accounts Accounts
  • 12. Alice $100 $632 $212 143 326 725 981 143 981 143 725 143 326
  • 13. name: Alice bal: $100 bal: $632 bal: $212 Nodes OWNS OWNS OWNS Relationships
  • 15. Graph history, benefits & differentiators
  • 17. bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits bits
  • 18.
  • 19.
  • 20.
  • 21. NoSQL Neo4j Teradata Hadoop Oracle Cassandra MySQL DB2 Sybase Postgres MongoDB RDBMS Analytics Riak Redis Couchbase GigaSpaces Coherence
  • 22.
  • 23. Built ground-up for graphs From the storage layer to the query language, graphs are native to Neo4j. Other NoSQL databases don’t do it at all Relational databases do it very poorly Person Account 326 BofA #1234 John 326 Rigid schema & costly joining of IDs required every lookup mongo
  • 24. Connected Query Performance 1000x faster Connectedness of Data Set Response Time RDBMS Degree: < 3 Size: Thousands Neo4j # Hops: 0-1 Degree: Thousands+ Size: Billions+ # Hops: Tens to Hundreds RDBMS vs. Native Graph Database
  • 25. (SELECT T.directReportees AS directReportees, sum(T.count) AS count FROM ( SELECT manager.pid AS directReportees, 0 AS count FROM person_reportee manager WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") UNION SELECT manager.pid AS directReportees, count(manager.directly_manages) AS count FROM person_reportee manager WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") GROUP BY directReportees UNION SELECT manager.pid AS directReportees, count(reportee.directly_manages) AS count FROM person_reportee manager JOIN person_reportee reportee ON manager.directly_manages = reportee.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") GROUP BY directReportees UNION SELECT manager.pid AS directReportees, count(L2Reportees.directly_manages) AS count FROM person_reportee manager JOIN person_reportee L1Reportees ON manager.directly_manages = L1Reportees.pid JOIN person_reportee L2Reportees ON L1Reportees.directly_manages = L2Reportees.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") GROUP BY directReportees ) AS T GROUP BY directReportees) UNION (SELECT T.directReportees AS directReportees, sum(T.count) AS count FROM ( SELECT manager.directly_manages AS directReportees, 0 AS count FROM person_reportee manager WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") UNION SELECT reportee.pid AS directReportees, count(reportee.directly_manages) AS count FROM person_reportee manager JOIN person_reportee reportee ON manager.directly_manages = reportee.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") GROUP BY directReportees UNION (continued from previous page...) SELECT depth1Reportees.pid AS directReportees, count(depth2Reportees.directly_manages) AS count FROM person_reportee manager JOIN person_reportee L1Reportees ON manager.directly_manages = L1Reportees.pid JOIN person_reportee L2Reportees ON L1Reportees.directly_manages = L2Reportees.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") GROUP BY directReportees ) AS T GROUP BY directReportees) UNION (SELECT T.directReportees AS directReportees, sum(T.count) AS count FROM( SELECT reportee.directly_manages AS directReportees, 0 AS count FROM person_reportee manager JOIN person_reportee reportee ON manager.directly_manages = reportee.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") GROUP BY directReportees UNION SELECT L2Reportees.pid AS directReportees, count(L2Reportees.directly_manages) AS count FROM person_reportee manager JOIN person_reportee L1Reportees ON manager.directly_manages = L1Reportees.pid JOIN person_reportee L2Reportees ON L1Reportees.directly_manages = L2Reportees.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") GROUP BY directReportees ) AS T GROUP BY directReportees) UNION (SELECT L2Reportees.directly_manages AS directReportees, 0 AS count FROM person_reportee manager JOIN person_reportee L1Reportees ON manager.directly_manages = L1Reportees.pid JOIN person_reportee L2Reportees ON L1Reportees.directly_manages = L2Reportees.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") )! MATCH (boss)-­‐[:MANAGES*0..3]-­‐>(sub), (sub)-­‐[:MANAGES*1..3]-­‐>(report) WHERE boss.name = “John Doe” RETURN sub.name AS Subordinate, count(report) AS Total Cypher vs SQL
  • 26. Forrester estimates that over 25% of enterprises will be using graph databases by 2017 to support the next-generation applications that need connected data sets. – Forrester Research (TechRadar: Enterprise DBMS, Q1 2014) “ “ … they are the solution that can deliver truly new insights from data. – Svetlana Sicular, Research Director, Gartner
  • 28. • Support cost & resolution times too high •RDBMS infrastructure did not support expansion – Prem Malhotra, Director Enterprise Architecture “ Neo Technology, Inc Confidential Support Case Support Case Knowledge Base Article Solution Knowledge Base Article Knowledge Base Article Message Support Case Avoidance Challenge Results • Faster answers for customers, with lower reliance on support Relational databases have a hard time dealing with the complexities of connected data.
  • 29. MDM / Recommendations • Constructing a 360° view of the customer for the sales team • IBM DB2 system not able to meet performance requirements Neo Technology, Inc Confidential Challenge Results • Flexibly search for insurance policies and associated personal data •Migration and deployment was easy
  • 30. Patient transition & referral Challenge Results • Real-time search on Oracle not fast enough for next gen product • Handling 15% of all transitions nationwide in the US • Real-time deep recommendations on widely heterogeneous data Neo Technology, Inc Confidential
  • 31. Route Planning •Maintain large network of routes covering many carriers and couriers •MySQL-based solution not fast enough for real-time use Neo Technology, Inc Confidential Challenge Results • 50x less code, 2000x faster calculations • Complete ownership of data, and flexibility to modify algorithms
  • 32. Real-time Logistics Routing A B 5M Packages Per Day. 3K Per Second. Logistics Solution Model the Logistics Network as a Graph Other examples
  • 33. Come talk to us about the graphs you see! Upcoming events: • GotoCon Århus on Sep 29-30 • Øredev Training on Nov 4