qcon 2014 - how shutl delivers even faster with neo4j

74
How Shutl Delivers Even Faster Using Neo4j Sam Phillips and Volker Pacher @samsworldofno @vpacher

Upload: volker-pacher

Post on 29-Nov-2014

651 views

Category:

Technology


1 download

DESCRIPTION

QCon London 2014 use case about implementing Neo4j at Shutl In this talk, we touch on the key differences between relational databases and graph databases (which, ironically, are much more relational!), and discuss in detail how we utilise this technology both to model our complex domain but also to gain insights into our data and continually improve our offering.

TRANSCRIPT

Page 1: QCon 2014 - How Shutl delivers even faster with Neo4j

How Shutl Delivers Even Faster Using Neo4j

Sam Phillips and Volker Pacher @samsworldofno @vpacher

Page 2: QCon 2014 - How Shutl delivers even faster with Neo4j

Volker Pacher

Sam Phillips

Page 3: QCon 2014 - How Shutl delivers even faster with Neo4j

Graphs at Shutl

• Graph databases are awesome

• We’ve seen lots of the talks about modelling

• But querying is important too

• So let’s talk about querying too!

Page 4: QCon 2014 - How Shutl delivers even faster with Neo4j

Show of hands

• Who has used graph databases before?

• Who has used Neo4j before?

Page 5: QCon 2014 - How Shutl delivers even faster with Neo4j

Shutl

Page 6: QCon 2014 - How Shutl delivers even faster with Neo4j

ECOMMERCE IS QUICK & CONVENIENT

Page 7: QCon 2014 - How Shutl delivers even faster with Neo4j

PAYPAL FOR AWESOME DELIVERY

Branded, super quick delivery that people trust, embedded in merchant websites

Page 8: QCon 2014 - How Shutl delivers even faster with Neo4j

A B

Only cost effective means to deliver 10+ miles but slow and unpredictableHUB & SPOKE

POINT TO POINT

Fast and predictable but cost prohibitive over longer distances

AB

Page 9: QCon 2014 - How Shutl delivers even faster with Neo4j

HUB & SPOKE

97% Courier, Express & Parcel Market

Page 10: QCon 2014 - How Shutl delivers even faster with Neo4j

POINT TO POINT

3% Courier, Express & Parcel Market

+7,500 more!

Page 11: QCon 2014 - How Shutl delivers even faster with Neo4j
Page 12: QCon 2014 - How Shutl delivers even faster with Neo4j

Shutl generates a quote from each relevant carrier within platform

Optimum picked based on price & quality rating

SHOP

$$

$$$

$

$$

$

$$

Page 13: QCon 2014 - How Shutl delivers even faster with Neo4j

On checkout, delivery sent via API into chosen carrier’s transportation system

Courier collects from nearest store and delivers to shopper

SHOP

$$

SHOP

Page 14: QCon 2014 - How Shutl delivers even faster with Neo4j

Delivery status updated in real-time, performance compared against SLA & carrier quality rating updated

Better performing carriers get more deliveries & can demand higher prices

Page 15: QCon 2014 - How Shutl delivers even faster with Neo4j

Track your order online…

Page 16: QCon 2014 - How Shutl delivers even faster with Neo4j

FEEDBACK

Quality paramount since we are motivated by LTV of shopperShutl sends feedback email to consumer seconds after they have received

delivery asking to rate qualitative aspects of experienceFeedback streamed unedited to shutl.com/feedback & facebook

Page 17: QCon 2014 - How Shutl delivers even faster with Neo4j

FEEDBACK

Page 18: QCon 2014 - How Shutl delivers even faster with Neo4j

FEEDBACK

Page 19: QCon 2014 - How Shutl delivers even faster with Neo4j

FEEDBACK

Page 20: QCon 2014 - How Shutl delivers even faster with Neo4j

FEEDBACK

Page 21: QCon 2014 - How Shutl delivers even faster with Neo4j
Page 22: QCon 2014 - How Shutl delivers even faster with Neo4j

COMPANYSHUTL IS NOW AN

Page 23: QCon 2014 - How Shutl delivers even faster with Neo4j

Version OneRuby 1.8, Rails 2.3 and MySQL

• Well-known tale: built quickly, worked slowly, tough to maintain

• Getting a quote for an hour time-slot took over 4 seconds

Page 24: QCon 2014 - How Shutl delivers even faster with Neo4j

Here is the Shutl price calendar

To generate this in V1, the merchant site would have had to call Shutl to get available slots (2 seconds)

Page 25: QCon 2014 - How Shutl delivers even faster with Neo4j

Here is the Shutl price calendar

To generate this in V1, the merchant site would have had to call Shutl to get available slots (2 seconds)

Then, they would have to call Shutl to generate a quote for each slot - for two days of store opening, that’s 20+ slots

So, that’s 2 + (20 x 4) seconds, 1:22 to generate the data for this calendar

In V1, this UX could never have happened.

Page 26: QCon 2014 - How Shutl delivers even faster with Neo4j

V2

Page 27: QCon 2014 - How Shutl delivers even faster with Neo4j

• Broke app into services

• Services focused around functions like quoting, booking, and giving feedback

• Key goal for the project was improving the speed of the quoting operation, which is where we used graph databases

V2

Page 28: QCon 2014 - How Shutl delivers even faster with Neo4j

V1

V2

• Quoting for 20 windows down from 82000 ms to 800 ms

• Code complexity much reduced

Page 29: QCon 2014 - How Shutl delivers even faster with Neo4j

A large part of the success of our rewrite was down to the graph database.

Page 30: QCon 2014 - How Shutl delivers even faster with Neo4j

What is a graph anyway?

Page 31: QCon 2014 - How Shutl delivers even faster with Neo4j
Page 32: QCon 2014 - How Shutl delivers even faster with Neo4j

a collection of vertices (nodes) connected by edges (relationships)

a simple graph

Page 33: QCon 2014 - How Shutl delivers even faster with Neo4j

a short history

Leonard Euler

the seven bridges of Königsberg (1735)!

Page 34: QCon 2014 - How Shutl delivers even faster with Neo4j

the seven bridges of Königsberg (1735)

Page 35: QCon 2014 - How Shutl delivers even faster with Neo4j

Euler walk

each node has an even degree

Page 36: QCon 2014 - How Shutl delivers even faster with Neo4j

no Euler walk

all nodes have an odd degree

Page 37: QCon 2014 - How Shutl delivers even faster with Neo4j

directed graph

each relationship has a direction (or one start node and one end node)

Page 38: QCon 2014 - How Shutl delivers even faster with Neo4j

property graph

Person name: Sam

nodes contain properties (key, value) relationships have a type and are always directed relationships can contain properties too

Person name: Volker

:friends

Person name: Megan

:knows since: 2005

Company name: eBay

:friends

:works_for

:works_for

Page 39: QCon 2014 - How Shutl delivers even faster with Neo4j

The Case for Graph Databases

Page 40: QCon 2014 - How Shutl delivers even faster with Neo4j

relationships are explicit stored

Page 41: QCon 2014 - How Shutl delivers even faster with Neo4j

additive domain modelling

Page 42: QCon 2014 - How Shutl delivers even faster with Neo4j

whiteboard friendly

Page 43: QCon 2014 - How Shutl delivers even faster with Neo4j

traversals of relationships are easy and very fast

Page 44: QCon 2014 - How Shutl delivers even faster with Neo4j

DB performance remains relatively constant as

queries are localised to its portion of the graph.

O(1) for same query

Page 45: QCon 2014 - How Shutl delivers even faster with Neo4j

a graph is its own index (constant query performance)

Page 46: QCon 2014 - How Shutl delivers even faster with Neo4j

the case for Neo4j

Page 47: QCon 2014 - How Shutl delivers even faster with Neo4j

standalone or embedded in jvm

Page 48: QCon 2014 - How Shutl delivers even faster with Neo4j

ruby/jruby

Page 49: QCon 2014 - How Shutl delivers even faster with Neo4j

ruby libraries - neo4j gem by Andreas Ronge (https://github.com/andreasronge/neo4j)

Page 50: QCon 2014 - How Shutl delivers even faster with Neo4j

cypher

Page 51: QCon 2014 - How Shutl delivers even faster with Neo4j

the neotech guys are awesome

Page 52: QCon 2014 - How Shutl delivers even faster with Neo4j

Querying the graph: Cypher

declarative query language specific to neo4j

easy to learn and intuitive

use specific patterns to query for (something that looks like ‘this’)

inspired partly by SQL (WHERE and ORDER BY) and SPARQL (pattern matching)

focuses on what to query for and not how to query for it

switch from a mySQl world is made easier by the use of cypher instead of having to learn

a traversal framework straight away

Page 53: QCon 2014 - How Shutl delivers even faster with Neo4j

START: Starting points in the graph, obtained via index lookups or by element IDs. MATCH: The graph pattern to match, bound to the starting points in START. WHERE: Filtering criteria. RETURN: What to return. CREATE: Creates nodes and relationships. DELETE: Removes nodes, relationships and properties. SET: Set values to properties. FOREACH: Performs updating actions once per element in a list. WITH: Divides a query into multiple, distinct parts

cypher clauses

START: Starting points in the graph, obtained via index lookups or by element IDs. MATCH: The graph pattern to match, bound to the starting points in START. WHERE: Filtering criteria. RETURN: What to return. CREATE: Creates nodes and relationships. DELETE: Removes nodes, relationships and properties. SET: Set values to properties. FOREACH: Performs updating actions once per element in a list. WITH: Divides a query into multiple, distinct parts

Page 54: QCon 2014 - How Shutl delivers even faster with Neo4j

an example

Person name: Sam

Person name: Volker

:friends

Person name: Megan

:knows since: 2005

Company name: eBay

:friends

:works_for

:works_for

Person name: Jim

:friends

Company name: neotech

:works_for

Page 55: QCon 2014 - How Shutl delivers even faster with Neo4j

find all the companies my friends work for

MATCH (person{ name:’Volker’ }) -[:friends] - (person) - [:works_for]-> companyRETURN company

Person name: Sam

Person name: Volker

:friends

Person name: Megan

:knows since: 2005

Company name: eBay

:friends

:works_for

:works_for

Person name: Jim

:friends

Company name: neotech

:works_for

Page 56: QCon 2014 - How Shutl delivers even faster with Neo4j

find all the companies my friend’s friends work for

MATCH (person{ name:’Volker’ }) -[:friends*2..2]-(person) - [:works_for] -> company

RETURN company

Person name: Sam

Person name: Volker

:friends

Person name: Megan

:knows since: 2005

Company name: eBay

:friends

:works_for

:works_for

Person name: Jim

:friends

Company name: neotech

:works_for

Page 57: QCon 2014 - How Shutl delivers even faster with Neo4j

find all my friends who work for neotech

MATCH (person{ name:’Volker’ }) -[:friends] -(friends) - [:works_for]-> companyWHERE company.name = ‘neotech’RETURN friends

Person name: Sam

Person name: Volker

:friends

Person name: Megan

:knows since: 2005

Company name: eBay

:friends

:works_for

:works_for

Person name: Jim

:friends

Company name: neotech

:works_for

Page 58: QCon 2014 - How Shutl delivers even faster with Neo4j

a good place to try it out: !

http://console.neo4j.org/ !

http://gist.neo4j.org/

Page 59: QCon 2014 - How Shutl delivers even faster with Neo4j

coverage example

Locality id = california

Locality id = marin_county

Locality id = 94901

:contains

Store id = ebay_store

:located

:contains

Locality id = 94903

Locality id = 94902

:contains :contains

:operates Carrier id = carrier_2

Carrier id = carrier_1

:operates :operates

Page 60: QCon 2014 - How Shutl delivers even faster with Neo4j

MATCH (store{ id:’ebay_store’ }) -[:located] -> (locality) <- [:operates]- carrierRETURN carrier

the query

Locality id = 94902

Locality id = california

Locality id = marin_county

Locality id = 94901

:contains

Store id = ebay_store

:located

:contains

Locality id = 94903

:contains :contains

Carrier id = carrier_1

:operates :operates

Page 61: QCon 2014 - How Shutl delivers even faster with Neo4j

MATCH (store{ id:’ebay_store’ }) -[:located] -> () <- [:contains*0..2] - (locality) <- [:operates]- carrierRETURN carrier

the query

Locality id = california

Locality id = marin_county

Locality id = 94901

:contains

Store id = ebay_store

:located

:contains

Locality id = 94903

Locality id = 94902

:contains :contains

:operates Carrier id = carrier_2

Carrier id = carrier_1

:operates :operates

Page 62: QCon 2014 - How Shutl delivers even faster with Neo4j

SELECT * FROM carriers LEFT JOIN locations ON carrier.location_id = location.id LEFT JOIN stores ON stores.location_id = carrier.location_id WHERE stores.name = ‘ebay_store’

Page 63: QCon 2014 - How Shutl delivers even faster with Neo4j

SELECT * FROM carriers LEFT JOIN locations ON carrier.location_id = location.id OR

carrier.location_id = location.parent_id LEFT JOIN stores ON stores.location_id = carrier.location_id WHERE stores.name = ‘ebay_store’

Page 64: QCon 2014 - How Shutl delivers even faster with Neo4j

?

Page 65: QCon 2014 - How Shutl delivers even faster with Neo4j

MATCH (store{ id:’ebay_store’ }) -[:located] -> () <- [:contains*0..2] - (locality) <- [:operates]- carrierRETURN carrier

Page 66: QCon 2014 - How Shutl delivers even faster with Neo4j

root (0)

Year: 2013

Month: 05 Month: 01

:year_2015

:month_01:month_05

:year_2014

Year: 2015

Month: 06

:month_06

Day: 24 Day: 25

:day_24 :day_25

Day: 26

:day_26

Event 1 Event 2 Event 3

:happens :happens :happens :happens

representing dates/times

Page 67: QCon 2014 - How Shutl delivers even faster with Neo4j

find all events on a specific daySTART root=node(0)MATCH root - [:year_2014] -> () -[:month_05] -> ()- [:day_24] -> () -

[:happens] -> event RETURN event root (0)

Year: 2013

Month: 05 Month: 01

:year_2015

:month_01:month_05

:year_2014

Year: 2015

Month: 06

:month_06

Day: 24 Day: 25

:day_24 :day_25

Day: 26

:day_26

Event 1 Event 2 Event 3

:happens :happens :happens :happens

Page 68: QCon 2014 - How Shutl delivers even faster with Neo4j

all together

Locality id = california

Locality id = marin_county

Locality id = 94901

:contains

Store id = ebay_store

:located

:contains

Carrier id = carrier_1

:operates

root (0)

Year: 2013

Month: 05

:month_05

:year_2014

Day: 24

:day_24

hour 09

hour 10

:hour_09

:hour_10

hour 11 :hour_11:available {premium: 1}

:available {premium: 1.5}

Page 69: QCon 2014 - How Shutl delivers even faster with Neo4j

MATCH (store{ id:’ebay_store’ }) -[:located] -> (locality) <- [:operates]- carrier - [available:available] -> () <- [:hour_10] - () <- [:day_24] - () <- [:month_05] - () <- [:year_2014] - ()RETURN carrier, available.premium as premium

all together

Locality id = california

Locality id = marin_county

Locality id = 94901

:contains

Store id = ebay_store

:located

:contains

Carrier id = carrier_1

:operates

root (0)

Year: 2013

Month: 05

:month_05

:year_2014

Day: 24

:day_24

hour 09

hour 10

:hour_09

:hour_10

hour 11 :hour_11:available {premium: 1}

:available {premium: 1.5}

Page 70: QCon 2014 - How Shutl delivers even faster with Neo4j

Other graph uses• Recommendation engines

• Organisational analysis

• Graphing your infrastructure

Page 71: QCon 2014 - How Shutl delivers even faster with Neo4j

• There was a learning curve in switching from a relational mentality to a graph one

• Tooling not as mature as in the relational world

• No out of the box solution for db migrations

• Seeding an embedded database was unfamiliar

Some gotchas

Page 72: QCon 2014 - How Shutl delivers even faster with Neo4j

• Setting up scenarios for tests was tedious

• Built our own tool based on the geoff syntax developed by Nigel Small

• Geoff allows modelling of graphs in textual form and provides an

interface to insert them into an existing graph

(A) {“name”: “Alice”}

(B) {“name”: “Bob”}

(A) -[:KNOWS] -> (B)

• We created a Ruby dsl for modelling a graph and inserting it into the db

that works with factory_girl

• Open source - https://github.com/shutl/geoff

Testing was a challenge

Page 73: QCon 2014 - How Shutl delivers even faster with Neo4j

Wrap Up

• Neo4j and graph theory enabled Shutl to achieve big performance increases in its most important operation - calculating delivery prices

• It’s a new tool based on tested theory, and cypher is the first language that allows you to query graphs in a declarative way (like SQL)

• Tooling and adoption is immature but getting better all the time

Page 74: QCon 2014 - How Shutl delivers even faster with Neo4j

Thank you! !

Any questions?

Sam Phillips Head of Engineering

!@samsworldofno

http://samsworldofno.com [email protected]

Volker Pacher Senior Developer !@vpacher https://github.com/vpacher [email protected]