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
Graph database Use CasesGraph database Use Cases
Graph database Use CasesMax De Marzi
 
Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015StampedeCon
 
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
Graph database Use CasesGraph database Use Cases
Graph database Use Cases
 
Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015Graph Database Use Cases - StampedeCon 2015
Graph Database Use Cases - StampedeCon 2015
 
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

Multiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfMultiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfchwongval
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfBoston Institute of Analytics
 
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...GQ Research
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxMike Bennett
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queensdataanalyticsqueen03
 
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptxNLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptxBoston Institute of Analytics
 
Easter Eggs From Star Wars and in cars 1 and 2
Easter Eggs From Star Wars and in cars 1 and 2Easter Eggs From Star Wars and in cars 1 and 2
Easter Eggs From Star Wars and in cars 1 and 217djon017
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanMYRABACSAFRA2
 
While-For-loop in python used in college
While-For-loop in python used in collegeWhile-For-loop in python used in college
While-For-loop in python used in collegessuser7a7cd61
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]📊 Markus Baersch
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一fhwihughh
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Cantervoginip
 
Machine learning classification ppt.ppt
Machine learning classification  ppt.pptMachine learning classification  ppt.ppt
Machine learning classification ppt.pptamreenkhanum0307
 
Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...Seán Kennedy
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
Advanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsAdvanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsVICTOR MAESTRE RAMIREZ
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort servicejennyeacort
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)jennyeacort
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFAAndrei Kaleshka
 
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档208367051
 

Kürzlich hochgeladen (20)

Multiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdfMultiple time frame trading analysis -brianshannon.pdf
Multiple time frame trading analysis -brianshannon.pdf
 
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdfPredicting Salary Using Data Science: A Comprehensive Analysis.pdf
Predicting Salary Using Data Science: A Comprehensive Analysis.pdf
 
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
Biometric Authentication: The Evolution, Applications, Benefits and Challenge...
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptx
 
Top 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In QueensTop 5 Best Data Analytics Courses In Queens
Top 5 Best Data Analytics Courses In Queens
 
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptxNLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
NLP Project PPT: Flipkart Product Reviews through NLP Data Science.pptx
 
Easter Eggs From Star Wars and in cars 1 and 2
Easter Eggs From Star Wars and in cars 1 and 2Easter Eggs From Star Wars and in cars 1 and 2
Easter Eggs From Star Wars and in cars 1 and 2
 
Identifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population MeanIdentifying Appropriate Test Statistics Involving Population Mean
Identifying Appropriate Test Statistics Involving Population Mean
 
While-For-loop in python used in college
While-For-loop in python used in collegeWhile-For-loop in python used in college
While-For-loop in python used in college
 
GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]GA4 Without Cookies [Measure Camp AMS]
GA4 Without Cookies [Measure Camp AMS]
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Canter
 
Machine learning classification ppt.ppt
Machine learning classification  ppt.pptMachine learning classification  ppt.ppt
Machine learning classification ppt.ppt
 
Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...Student profile product demonstration on grades, ability, well-being and mind...
Student profile product demonstration on grades, ability, well-being and mind...
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
Advanced Machine Learning for Business Professionals
Advanced Machine Learning for Business ProfessionalsAdvanced Machine Learning for Business Professionals
Advanced Machine Learning for Business Professionals
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFA
 
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制南十字星大学毕业证(SCU毕业证)#文凭成绩单#真实留信学历认证永久存档
 

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