SlideShare a Scribd company logo
1 of 73
Why Relationships
are cool
but the “JOIN” sucks
Luca Garulli –
Founder and CEO
@Orient Technologies Ltd
Author of OrientDB
www.twitter.com/lgarulli
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 1
www.orientechnologies.com
1979
First Relational DBMS available as product

2009
NoSQL movement
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 2
1979
First Relational DBMS available as product

Hey, 30 years in the
IT field is so huge!

2009
NoSQL movement
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 3
Before 2009 teams of developers
always fought to select:
Operative System
Programming Language
Middleware (App-Servers)
What about the Database?
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 4
One of the main resistances of
RDBMS users to pass to a NoSQL product
are related to the
complexity of the model:
Ok, NoSQL products are super for
BigData and BigScale
but...
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 5
...what about the model?

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 6
What is the NoSQL answer
about managing complex domains?

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

No Relationships
support

Key-Value stores ?
Column-Based ?
Document database ?
Graph database !

Page 7
Why
most of NoSQL
products
don’t support
Relationship
Between entities?
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 8
To understand why,
let’s see how
Relational DBMS
managed them
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 9
Domain: the super minimal “Selling App”
Customer
Customer

Address
Address

Registry system
Order system
Order
Order

(c) Luca Garulli

Stock
Stock

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 10
Domain: the super minimal “Selling App”
Customer
Customer

Address
Address

How does
Relational DBMS
manage relationships?

Registry system
Order system
Order
Order

(c) Luca Garulli

Stock
Stock

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 11
Relational World: 1-1 Relationships
Primary key

Primary key
Customer

Id

Name

Address
Address

10 Luca

34

11 Jill

Foreign key

Id

Location

34

Rome

44

44

London

34 John

54

54

Moscow

56 Mark

66

66

New Mexico

88 Steve

68

68

Palo Alto

JOIN Customer.Address -> Address.Id
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 12
Relational World: 1-N Relationships
Customer
Id

Address

Name

Id

Customer

Location

10 Luca

24

10

Rome

11 Jill

33

10

London

34 John

44

34

Moscow

56 Mark

66

56

Cologne

88 Steve

68

88

Palo Alto

Inverse JOIN Address.Customer -> Customer.Id
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 13
Relational World: N-M Relationships
Customer
Id

Name

CustomerAddress
Id

Address

Address
Id

Location

10

Luca

10

24

24

Rome

11

Jill

10

33

33

London

34

John

34

44

44

Moscow

56

Mark

66

Cologne

88

Steve

68

Palo Alto

Additional table with 2 JOINs
(1) CustomerAddress.Id -> Customer.Id and
(2) CustomerAddress.Address -> Address.Id
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 14
What’s wrong with the
Relational Model?

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 15
The JOIN is the evil!
Customer
Id

CustomerAddress

Name

Id

Address

Address
Id

Location

10

Luca

10

24

24

Rome

11

Jill

10

33

33

London

34

John

34

24

44

Moscow

56

Mark

66

Cologne

88

Steve

68

Palo Alto

These are all JOINs executed
everytime you traverse a
relationship!
relationship
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 16
A JOIN means searching for a key in
another table
The first rule to improve performance
is indexing all the keys
Index speeds up searches, but slows down
insert, updates and deletes
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 17
So in the best case a JOIN is a lookup
into an index
This is done per single join!
If you traverse hundreds of relationships
you’re executing hundreds of JOINs
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 18
Index Lookup
is it really that fast?
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 19
Index Lookup: how does it works?
A-Z
A-L

M-Z

Think to an
Address Book
where we have to find
the Luca’s phone
number

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 20
Index Lookup: how does it works?
A-Z
A-L

M-Z

A-L
A-D

M-Z
E-L

M-R

S-Z

Index algorithms are all
similar and based on
balanced trees

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 21
Index Lookup: how does it works?
A-Z
A-L

M-Z

A-L
A-D

M-Z
E-L

M-R

A-D
A-B

(c) Luca Garulli

S-Z

E-L
C-D

E-G

H-L

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 22
Index Lookup: how does it works?
A-Z
A-L

M-Z

A-L
A-D

M-Z
E-L

M-R

A-D
A-B

E-L
C-D

E-G

H-L

E-G
E-F

(c) Luca Garulli

S-Z

H-L
G

H-J

K-L

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 23
Index Lookup: how does it works?
A-Z
A-L

M-Z

A-L
A-D

M-Z

E-L

A-D
A-B

Found!
M-R
S-Z
This lookup took 5
steps and grows
up with the index
size!

E-L
C-D

E-G

H-L

E-G
E-F

H-L
G

H-J

K-L

Luca
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 24
Can you imagine
how many steps a
Lookup operation does into an
Index with Millions or Billions
of records?
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 25
And this JOIN is executed
foreach involved table,
multiplied
foreach scanned records
!
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 26
Querying more tables can easily
produce millions of JOINs/Lookups!
Here the rule: more entries
= more lookup steps = slower JOIN
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 27
Oh! This is why
performance of my database
drops down when
it becomes bigger,
and bigger,
and bigger!
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 28
What about
Document Databases
like MongoDB?

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 29
How MongoDB manages relationships:
{
“_id” : “292846512”,
“type” : “Order”,
“number” : 1223,
“customer” : “123456789”
}
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 30
MongoDB uses the same approach:
it stores the _id of the connected
documents. At run-time it lookups up
for the _id by using an index.

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 31
Is there a better way to
manage relationships?

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 32
“A graph database is any
storage system
that provides
index-free adjacency”
- Marko Rodriguez
(author of TinkerPop Blueprints)
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 33
How does GraphDB manage
index-free relationships?

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 34
Every developer knows
the Relational Model,
but who knows the
Graph one?
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 35
Back to school:
Graph Theory crash course

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 36
Basic Graph

Luca
Luca

(c) Luca Garulli

Likes

NoSQL
NoSQL
Day
Day

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 37
Property Graph Model*
Vertices are
directed

Luca
Luca

Likes

name: Luca
name: Luca
surname: Garulli
surname: Garulli
company: Orient Tech
company: Orient Tech

since: 2013

NoSQL
NoSQL
Day
Day
date: Nov 15° 2013
date: Nov 15° 2013

Vertices and Edges
can have properties
* https://github.com/tinkerpop/blueprints/wiki/Property-Graph-Model
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 38
Property Graph Model
Likes
2
since:

Luca
Luca

013

Speak
s

NoSQL
NoSQL
Day
Day

ti
abstra tle: «Switch
in
ct: «Th
is talk g...»
presen
ts...»

An Edge connects 2
vertices: use multiple edges
to represents 1-N and N-M
relationships
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 39
Property Graph Model
Studies

Udine
Udine

Luca
Luca

located

Likes
FriendOf
Daniel
Daniel
(c) Luca Garulli

ganizes
Or
Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

NoSQL
NoSQL
Day
Day

Page 40
Compliments, this is your diploma in
«Graph Theory»

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 41
The Graph theory
is so simple to be so
powerful

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 42
Let’s go back
to the Graph Stuff
How does OrientDB
manage relationships?
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 43
OrientDB: traverse a relationship
The Record ID (RID)
is the physical position

RID = #13:35
RID = #13:35

RID = #13:100
RID = #13:100

Luca
Luca

Rome
Rome

(vertex)
(vertex)

label : :‘Customer’
label ‘Customer’
name : :‘Luca’
name ‘Luca’

(c) Luca Garulli

(vertex)
(vertex)

label = ‘Address’
label = ‘Address’
name = ‘Rome’
name = ‘Rome’

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 44
OrientDB: traverse a relationship
The Edge’s RID is saved
inside both vertices, as
«out» and «in»
RID = #13:35
RID = #13:35

RID = #13:100
RID = #13:100
RID = #14:54
RID = #14:54

Luca
Luca
(vertex)
(vertex)

out ::[#14:54]
out [#14:54]
label : :‘Customer’
label ‘Customer’
name : :‘Luca’
name ‘Luca’
(c) Luca Garulli

Lives
out: [#13:35]
out: [#13:35]
in: [#13:100]
in: [#13:100]
Label : :‘Lives’
Label ‘Lives’

Rome
Rome
(vertex)
(vertex)

in: [#14:54]
in: [#14:54]
label = ‘Address’
label = ‘Address’
name = ‘Rome’
name = ‘Rome’

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 45
OrientDB: traverse -> outgoing

RID = #13:35
RID = #13:35

RID = #13:100
RID = #13:100
RID = #14:54
RID = #14:54

Luca
Luca
out ::[#14:54]
out [#14:54]
label : :‘Customer’
label ‘Customer’
name : :‘Luca’
name ‘Luca’
(c) Luca Garulli

Lives
out: [#13:35]
out: [#13:35]
in: [#13:100]
in: [#13:100]
Label : :‘Lives’
Label ‘Lives’

Rome
Rome
in: [#14:54]
in: [#14:54]
label = ‘Address’
label = ‘Address’
name = ‘Rome’
name = ‘Rome’

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 46
OrientDB: traverse <- incoming

RID = #13:35
RID = #13:35

RID = #13:100
RID = #13:100
RID = #14:54
RID = #14:54

Luca
Luca
out ::[#14:54]
out [#14:54]
label : :‘Customer’
label ‘Customer’
name : :‘Luca’
name ‘Luca’
(c) Luca Garulli

Lives
out: [#13:35]
out: [#13:35]
in: [#13:100]
in: [#13:100]
Label : :‘Lives’
Label ‘Lives’

Rome
Rome
in: [#14:54]
in: [#14:54]
label = ‘Address’
label = ‘Address’
name = ‘Rome’
name = ‘Rome’

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 47
GraphDB handles relationships as a
physical LINK to the record
assigned when the edge is created
on the other side
RDBMS computes the
relationship every time you query a database

Is not that crazy?!
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 48
This means jumping from a
O(log N) algorithm to a near O(1)
traversing cost is not more affected
by database size!
This is huge in the BigData age
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 49
an Open Source (Apache licensed)
document-graph NoSQL dbms
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 50
OrientDB in the Blueprints micro-benchmark,
on common hw, with a hot cache,
traverses 29,6 Millions
of records in less than 5 seconds
about 6 Millions of nodes traversed per sec!
Do not try this at home
with a RDBMS*!
*unless you live in the Google’s server farm
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 51
Create the graph in SQL
$luca> cd bin
$luca> ./console.sh
OrientDB console v.1.6.1 (www.orientdb.org)
Type 'help' to display all the commands supported.
orientdb> create vertex Customer set name = ‘Luca’
Created vertex #13:35 in 0.03 secs
orientdb> create vertex Address set name = ‘Rome’
Created vertex #13:100 in 0.02 secs
orientdb> create edge Lives from #13:35 to #13:100
Created edge #14:54 in 0.02 secs
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 52
Create the graph in Java
Graph graph = new OrientGraph("local:/tmp/db/graph”);
Vertex luca = graph.addVertex( “class:Customer” );
luca.setProperty( “name", “Luca” );
Vertex rome = graph.addVertex ( “class:Address” );
rome.setProperty( “name", “Rome” );
Edge edge = luca.addEdge( “Lives”, rome );
graph.shutdown();

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 53
Query the graph in SQL
orientdb> select in(‘Lives’) from Address where name = ‘Rome’
---+------+---------|--------------------+--------------------+--------+
  #| RID  |@class   |label               |out_Lives           |in      |
---+------+---------+--------------------+--------------------+--------+
  0| 13:35|Customer |Luca                |[#14:54]            |        |
---+------+---------+--------------------+--------------------+--------+
1 item(s) found. Query executed in 0.007 sec(s).

Incoming vertices

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 54
More on query power
orientdb> select sum( out(‘Order’).total ) from Customer
where name = ‘Luca’
orientdb> traverse both(‘Friend’)
from Customer while $depth <= 7
orientdb> select from (
traverse both(‘Friend’)
from Customer while $depth <= 7
) where @class=‘Customer’ and city.name = ‘Udine’

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 55
Query vs traversal
Once you’ve a well connected database
in the form of a Super Graph you can
cross records instead of query them!
All you need is a few“Root Vertices”
where to start traversing
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 56
Query vs traversal
Special
Special
Customers
Customers

Customers
Customers

Luca
Luca
This is a
root vertex

(c) Luca Garulli

Mar
Mar
k
k

Stocks
Stocks

Jill
Jill
White
White
Soap
Soap
Order
Order
2332
2332

Order
Order
8834
8834

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 57
Root Vertices can be enriched by
Meta Graphs
to decorate Graphs with
additional information
and make easier/faster
the retrieval
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 58
Temporal based Meta Graph
Calendar
Calendar

Year
Year
2013
2013

Month
Month
April 2013
April 2013

Day
Day
9/4/2013
9/4/2013

Hour
Hour
9/4/2013
9/4/2013
09:00
09:00

Order
Order
2332
2332
(c) Luca Garulli

Hour
Hour
9/4/2013
9/4/2013
10:00
10:00

Order
Order
2333
2333

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Order
Order
2334
2334
Page 59
Location based Meta Graph
Location
Location

Country
Country
Italy
Italy

Region
Region
Lazio
Lazio

State
State
RM
RM

City
City
Fiumicino
Fiumicino

Order
Order
2332
2332
(c) Luca Garulli

City
City
Rome
Rome

Order
Order
2333
2333

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Order
Order
2334
2334
Page 60
Mix & Merge graphs
Region
Region
Lazio
Lazio
Country
Country
Italy
Italy

State
State
RM
RM
City
City
Rome
Rome

City
City
Fiumicino
Fiumicino

Location
Location

Order
Order
2332
2332

Order
Order
2333
2333

Order
Order
2334
2334

Calendar
Calendar

Year
Year
2013
2013

(c) Luca Garulli

Hour
Hour
9/4/2013
9/4/2013
09:00
09:00
Month
Month
April 2013
April 2013

Hour
Hour
9/4/2013
9/4/2013
10:00
10:00
Day
Day
9/4/2013
9/4/2013

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 61
Region
Region
Lazio
Lazio

Get all the orders
sold in “Fiumicino” city
Order
Order
Order
Order
2332
2333
2332
2333
on 9/4/2013 at 10:00
Country
Country
Italy
Italy

Location
Location

Calendar
Calendar

Year
Year
2013
2013

(c) Luca Garulli

State
State
RM
RM
City
City
Rome
Rome

City
City
Fiumicino
Fiumicino

Hour
Hour
9/4/2013
9/4/2013
09:00
09:00
Month
Month
April 2013
April 2013

Hour
Hour
9/4/2013
9/4/2013
10:00
10:00
Day
Day
9/4/2013
9/4/2013

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 62

Order
Order
2334
2334
Start from Calendar, look for Hour 10:00
Region
Region
Lazio
Lazio
Country
Country
Italy
Italy

State
State
RM
RM
City
City
Rome
Rome

City
City
Fiumicino
Fiumicino

Location
Location

Order
Order
2332
2332

Order
Order
2333
2333

Order
Order
2334
2334

Calendar
Calendar

Year
Year
2013
2013

(c) Luca Garulli

Hour
Hour
9/4/2013
9/4/2013
09:00
09:00
Month
Month
April 2013
April 2013

Hour
Hour
9/4/2013
9/4/2013
10:00
10:00
Day
Day
9/4/2013
9/4/2013

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 63
Start from Calendar, look for Hour 10:00
Found 2 Orders,
filter by incoming
now filter by
City
City
incoming edges
edges<

Region
Region
Lazio
Lazio
Country
Country
Italy
Italy

State
State
RM
RM

City
City
Fiumicino
Fiumicino

Rome
Rome

Location
Location

Order
Order
2332
2332

Order
Order
2333
2333

Order
Order
2334
2334

Calendar
Calendar

Year
Year
2013
2013

(c) Luca Garulli

Hour
Hour
9/4/2013
9/4/2013
09:00
09:00
Month
Month
April 2013
April 2013

Hour
Hour
9/4/2013
9/4/2013
10:00
10:00
Day
Day
9/4/2013
9/4/2013

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 64
Start from Calendar, look for Hour 10:00
Region
Region
Lazio
Lazio
Country
Country
Italy
Italy

State
State
RM
RM
City
City
Rome
Rome

City
City
Fiumicino
Fiumicino

Location
Location

Only “Order 2333” has
incoming connections
with “Fiumicino”

Order
Order
2332
2332

Order
Order
2333
2333

Order
Order
2334
2334

Calendar
Calendar

Year
Year
2013
2013

(c) Luca Garulli

Hour
Hour
9/4/2013
9/4/2013
09:00
09:00
Month
Month
April 2013
April 2013

Hour
Hour
9/4/2013
9/4/2013
10:00
10:00
Day
Day
9/4/2013
9/4/2013

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 65
Or start from Location, look for Fiumicino
Region
Region
Lazio
Lazio
Country
Country
Italy
Italy

State
State
RM
RM
City
City
Rome
Rome

City
City
Fiumicino
Fiumicino

Location
Location

Order
Order
2332
2332

Order
Order
2333
2333

Order
Order
2334
2334

Calendar
Calendar

Year
Year
2013
2013

(c) Luca Garulli

Hour
Hour
9/4/2013
9/4/2013
09:00
09:00
Month
Month
April 2013
April 2013

Hour
Hour
9/4/2013
9/4/2013
10:00
10:00
Day
Day
9/4/2013
9/4/2013

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 66
Start from Location, look for Fiumicino
Region
Region
Lazio
Lazio
Country
Country
Italy
Italy

State
State
RM
RM
City
City
Rome
Rome

City
City
Fiumicino
Fiumicino

Location
Location

Order
Order
2332
2332

Order
Order
2333
2333

Order
Order
2334
2334

Calendar
Calendar

Year
Year
2013
2013

(c) Luca Garulli

Hour
Hour
9/4/2013
9/4/2013
09:00
09:00
Month
Month
April 2013
April 2013

Hour
Hour
9/4/2013
9/4/2013
10:00
10:00
Day
Day
9/4/2013
9/4/2013

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 67
This is your database

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 68
Get last customer bought ‘Barolo’
select last(out(‘Order’).in(‘Customer)) from Stock
where name = ‘Barolo’

#34:22

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 69
Get his’s country

select out(‘City’) from #34:22

Udine, Italy
#55:12

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 70
Get orders from that country

select in(‘Customer’) from #55:12

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 71
Let’s move like a
Spider
on the web

(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 72
Thanks!

www.orientechnologies.com
www.twitter.com/orientechno
(c) Luca Garulli

Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License

Page 73

More Related Content

Similar to Why relationships are cool but "join" sucks

Austin Data Geeks - Why relationships are cool but join sucks
Austin Data Geeks - Why relationships are cool but join sucksAustin Data Geeks - Why relationships are cool but join sucks
Austin Data Geeks - Why relationships are cool but join sucksOrient Technologies
 
Design your application using Persistent Graphs and OrientDB
Design your application using Persistent Graphs and OrientDBDesign your application using Persistent Graphs and OrientDB
Design your application using Persistent Graphs and OrientDBLuca Garulli
 
DIGITAL DISRUPTION: an open platform for digital economy between creative inn...
DIGITAL DISRUPTION: an open platform for digital economy between creative inn...DIGITAL DISRUPTION: an open platform for digital economy between creative inn...
DIGITAL DISRUPTION: an open platform for digital economy between creative inn...SpagoWorld
 
Open source from disruption to innovation - Can we measure and evaluate the o...
Open source from disruption to innovation - Can we measure and evaluate the o...Open source from disruption to innovation - Can we measure and evaluate the o...
Open source from disruption to innovation - Can we measure and evaluate the o...SpagoWorld
 
fOSSa 2013 - Building innovation momentum, getting things started from nexus ...
fOSSa 2013 - Building innovation momentum, getting things started from nexus ...fOSSa 2013 - Building innovation momentum, getting things started from nexus ...
fOSSa 2013 - Building innovation momentum, getting things started from nexus ...SpagoWorld
 
Open World Forum 2013 - What’s next for Open Source Communities?
Open World Forum 2013 - What’s next for Open Source Communities?Open World Forum 2013 - What’s next for Open Source Communities?
Open World Forum 2013 - What’s next for Open Source Communities?SpagoWorld
 
Blockchain Developer Geography 2023 by Electric Capital
Blockchain Developer Geography 2023 by Electric CapitalBlockchain Developer Geography 2023 by Electric Capital
Blockchain Developer Geography 2023 by Electric CapitalMariaShen2
 
EC Blockchain Dev Geo Report.pdf
EC Blockchain Dev Geo Report.pdfEC Blockchain Dev Geo Report.pdf
EC Blockchain Dev Geo Report.pdfMariaShen2
 
Crypto Developer Locations 2023 by Electric Capital
Crypto Developer Locations 2023 by Electric CapitalCrypto Developer Locations 2023 by Electric Capital
Crypto Developer Locations 2023 by Electric CapitalMariaShen2
 
OWF13 - What’s next for Open Source Communities?
OWF13 - What’s next for Open Source  Communities?OWF13 - What’s next for Open Source  Communities?
OWF13 - What’s next for Open Source Communities?Paris Open Source Summit
 
Blockchain Developer Geography 2023 by Electric Capital
Blockchain Developer Geography 2023 by Electric CapitalBlockchain Developer Geography 2023 by Electric Capital
Blockchain Developer Geography 2023 by Electric CapitalMariaShen2
 
O365Con18 - Create an Immersive Experience with Office365 Data and Mixed Real...
O365Con18 - Create an Immersive Experience with Office365 Data and Mixed Real...O365Con18 - Create an Immersive Experience with Office365 Data and Mixed Real...
O365Con18 - Create an Immersive Experience with Office365 Data and Mixed Real...NCCOMMS
 
O365 and SharePoint Connect - Create an immersive experience with office 365...
O365 and SharePoint Connect  - Create an immersive experience with office 365...O365 and SharePoint Connect  - Create an immersive experience with office 365...
O365 and SharePoint Connect - Create an immersive experience with office 365...Alexander Meijers
 
Dove sono i tuoi vertici e di cosa stanno parlando?
Dove sono i tuoi vertici e di cosa stanno parlando?Dove sono i tuoi vertici e di cosa stanno parlando?
Dove sono i tuoi vertici e di cosa stanno parlando?Codemotion
 
210 - Software Population Pyramids: The Current and the Future of OSS Develop...
210 - Software Population Pyramids: The Current and the Future of OSS Develop...210 - Software Population Pyramids: The Current and the Future of OSS Develop...
210 - Software Population Pyramids: The Current and the Future of OSS Develop...ESEM 2014
 
Know your R usage workflow to handle reproducibility challenges
Know your R usage workflow to handle reproducibility challengesKnow your R usage workflow to handle reproducibility challenges
Know your R usage workflow to handle reproducibility challengesWit Jakuczun
 
Social networks , Job Searching and Research - 1
Social networks , Job Searching and Research - 1Social networks , Job Searching and Research - 1
Social networks , Job Searching and Research - 1Carlo Vaccari
 
How to maximize the value of Big Data with SpagoBI suite through a comprehens...
How to maximize the value of Big Data with SpagoBI suite through a comprehens...How to maximize the value of Big Data with SpagoBI suite through a comprehens...
How to maximize the value of Big Data with SpagoBI suite through a comprehens...OW2
 
5/ GitHub Inner Source @ OPEN'16
5/ GitHub Inner Source @ OPEN'165/ GitHub Inner Source @ OPEN'16
5/ GitHub Inner Source @ OPEN'16Kangaroot
 

Similar to Why relationships are cool but "join" sucks (20)

Austin Data Geeks - Why relationships are cool but join sucks
Austin Data Geeks - Why relationships are cool but join sucksAustin Data Geeks - Why relationships are cool but join sucks
Austin Data Geeks - Why relationships are cool but join sucks
 
Design your application using Persistent Graphs and OrientDB
Design your application using Persistent Graphs and OrientDBDesign your application using Persistent Graphs and OrientDB
Design your application using Persistent Graphs and OrientDB
 
DIGITAL DISRUPTION: an open platform for digital economy between creative inn...
DIGITAL DISRUPTION: an open platform for digital economy between creative inn...DIGITAL DISRUPTION: an open platform for digital economy between creative inn...
DIGITAL DISRUPTION: an open platform for digital economy between creative inn...
 
Open source from disruption to innovation - Can we measure and evaluate the o...
Open source from disruption to innovation - Can we measure and evaluate the o...Open source from disruption to innovation - Can we measure and evaluate the o...
Open source from disruption to innovation - Can we measure and evaluate the o...
 
Innovation & Massive data
Innovation & Massive dataInnovation & Massive data
Innovation & Massive data
 
fOSSa 2013 - Building innovation momentum, getting things started from nexus ...
fOSSa 2013 - Building innovation momentum, getting things started from nexus ...fOSSa 2013 - Building innovation momentum, getting things started from nexus ...
fOSSa 2013 - Building innovation momentum, getting things started from nexus ...
 
Open World Forum 2013 - What’s next for Open Source Communities?
Open World Forum 2013 - What’s next for Open Source Communities?Open World Forum 2013 - What’s next for Open Source Communities?
Open World Forum 2013 - What’s next for Open Source Communities?
 
Blockchain Developer Geography 2023 by Electric Capital
Blockchain Developer Geography 2023 by Electric CapitalBlockchain Developer Geography 2023 by Electric Capital
Blockchain Developer Geography 2023 by Electric Capital
 
EC Blockchain Dev Geo Report.pdf
EC Blockchain Dev Geo Report.pdfEC Blockchain Dev Geo Report.pdf
EC Blockchain Dev Geo Report.pdf
 
Crypto Developer Locations 2023 by Electric Capital
Crypto Developer Locations 2023 by Electric CapitalCrypto Developer Locations 2023 by Electric Capital
Crypto Developer Locations 2023 by Electric Capital
 
OWF13 - What’s next for Open Source Communities?
OWF13 - What’s next for Open Source  Communities?OWF13 - What’s next for Open Source  Communities?
OWF13 - What’s next for Open Source Communities?
 
Blockchain Developer Geography 2023 by Electric Capital
Blockchain Developer Geography 2023 by Electric CapitalBlockchain Developer Geography 2023 by Electric Capital
Blockchain Developer Geography 2023 by Electric Capital
 
O365Con18 - Create an Immersive Experience with Office365 Data and Mixed Real...
O365Con18 - Create an Immersive Experience with Office365 Data and Mixed Real...O365Con18 - Create an Immersive Experience with Office365 Data and Mixed Real...
O365Con18 - Create an Immersive Experience with Office365 Data and Mixed Real...
 
O365 and SharePoint Connect - Create an immersive experience with office 365...
O365 and SharePoint Connect  - Create an immersive experience with office 365...O365 and SharePoint Connect  - Create an immersive experience with office 365...
O365 and SharePoint Connect - Create an immersive experience with office 365...
 
Dove sono i tuoi vertici e di cosa stanno parlando?
Dove sono i tuoi vertici e di cosa stanno parlando?Dove sono i tuoi vertici e di cosa stanno parlando?
Dove sono i tuoi vertici e di cosa stanno parlando?
 
210 - Software Population Pyramids: The Current and the Future of OSS Develop...
210 - Software Population Pyramids: The Current and the Future of OSS Develop...210 - Software Population Pyramids: The Current and the Future of OSS Develop...
210 - Software Population Pyramids: The Current and the Future of OSS Develop...
 
Know your R usage workflow to handle reproducibility challenges
Know your R usage workflow to handle reproducibility challengesKnow your R usage workflow to handle reproducibility challenges
Know your R usage workflow to handle reproducibility challenges
 
Social networks , Job Searching and Research - 1
Social networks , Job Searching and Research - 1Social networks , Job Searching and Research - 1
Social networks , Job Searching and Research - 1
 
How to maximize the value of Big Data with SpagoBI suite through a comprehens...
How to maximize the value of Big Data with SpagoBI suite through a comprehens...How to maximize the value of Big Data with SpagoBI suite through a comprehens...
How to maximize the value of Big Data with SpagoBI suite through a comprehens...
 
5/ GitHub Inner Source @ OPEN'16
5/ GitHub Inner Source @ OPEN'165/ GitHub Inner Source @ OPEN'16
5/ GitHub Inner Source @ OPEN'16
 

More from Luca Garulli

Scale Out Your Graph Across Servers and Clouds with OrientDB
Scale Out Your Graph Across Servers and Clouds  with OrientDBScale Out Your Graph Across Servers and Clouds  with OrientDB
Scale Out Your Graph Across Servers and Clouds with OrientDBLuca Garulli
 
Polyglot Persistence vs Multi-Model Databases
Polyglot Persistence vs Multi-Model DatabasesPolyglot Persistence vs Multi-Model Databases
Polyglot Persistence vs Multi-Model DatabasesLuca Garulli
 
How Graph Databases started the Multi Model revolution
How Graph Databases started the Multi Model revolutionHow Graph Databases started the Multi Model revolution
How Graph Databases started the Multi Model revolutionLuca Garulli
 
OrientDB and Hazelcast
OrientDB and HazelcastOrientDB and Hazelcast
OrientDB and HazelcastLuca Garulli
 
OrientDB document or graph? Select the right model (old presentation)
OrientDB document or graph? Select the right model (old presentation)OrientDB document or graph? Select the right model (old presentation)
OrientDB document or graph? Select the right model (old presentation)Luca Garulli
 
OrientDB distributed architecture 1.1
OrientDB distributed architecture 1.1OrientDB distributed architecture 1.1
OrientDB distributed architecture 1.1Luca Garulli
 
OrientDB for real & Web App development
OrientDB for real & Web App developmentOrientDB for real & Web App development
OrientDB for real & Web App developmentLuca Garulli
 
OrientDB the database for the web 1.1
OrientDB the database for the web 1.1OrientDB the database for the web 1.1
OrientDB the database for the web 1.1Luca Garulli
 
Roma introduction and concepts
Roma introduction and conceptsRoma introduction and concepts
Roma introduction and conceptsLuca Garulli
 
OrientDB introduction - NoSQL
OrientDB introduction - NoSQLOrientDB introduction - NoSQL
OrientDB introduction - NoSQLLuca Garulli
 
RomaFramework Tutorial Basics
RomaFramework Tutorial BasicsRomaFramework Tutorial Basics
RomaFramework Tutorial BasicsLuca Garulli
 
Roma Meta Framework Concepts @JavaDay Rome 2007
Roma Meta Framework Concepts @JavaDay Rome 2007Roma Meta Framework Concepts @JavaDay Rome 2007
Roma Meta Framework Concepts @JavaDay Rome 2007Luca Garulli
 

More from Luca Garulli (12)

Scale Out Your Graph Across Servers and Clouds with OrientDB
Scale Out Your Graph Across Servers and Clouds  with OrientDBScale Out Your Graph Across Servers and Clouds  with OrientDB
Scale Out Your Graph Across Servers and Clouds with OrientDB
 
Polyglot Persistence vs Multi-Model Databases
Polyglot Persistence vs Multi-Model DatabasesPolyglot Persistence vs Multi-Model Databases
Polyglot Persistence vs Multi-Model Databases
 
How Graph Databases started the Multi Model revolution
How Graph Databases started the Multi Model revolutionHow Graph Databases started the Multi Model revolution
How Graph Databases started the Multi Model revolution
 
OrientDB and Hazelcast
OrientDB and HazelcastOrientDB and Hazelcast
OrientDB and Hazelcast
 
OrientDB document or graph? Select the right model (old presentation)
OrientDB document or graph? Select the right model (old presentation)OrientDB document or graph? Select the right model (old presentation)
OrientDB document or graph? Select the right model (old presentation)
 
OrientDB distributed architecture 1.1
OrientDB distributed architecture 1.1OrientDB distributed architecture 1.1
OrientDB distributed architecture 1.1
 
OrientDB for real & Web App development
OrientDB for real & Web App developmentOrientDB for real & Web App development
OrientDB for real & Web App development
 
OrientDB the database for the web 1.1
OrientDB the database for the web 1.1OrientDB the database for the web 1.1
OrientDB the database for the web 1.1
 
Roma introduction and concepts
Roma introduction and conceptsRoma introduction and concepts
Roma introduction and concepts
 
OrientDB introduction - NoSQL
OrientDB introduction - NoSQLOrientDB introduction - NoSQL
OrientDB introduction - NoSQL
 
RomaFramework Tutorial Basics
RomaFramework Tutorial BasicsRomaFramework Tutorial Basics
RomaFramework Tutorial Basics
 
Roma Meta Framework Concepts @JavaDay Rome 2007
Roma Meta Framework Concepts @JavaDay Rome 2007Roma Meta Framework Concepts @JavaDay Rome 2007
Roma Meta Framework Concepts @JavaDay Rome 2007
 

Recently uploaded

The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 

Recently uploaded (20)

The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 

Why relationships are cool but "join" sucks

  • 1. Why Relationships are cool but the “JOIN” sucks Luca Garulli – Founder and CEO @Orient Technologies Ltd Author of OrientDB www.twitter.com/lgarulli (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 1 www.orientechnologies.com
  • 2. 1979 First Relational DBMS available as product 2009 NoSQL movement (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 2
  • 3. 1979 First Relational DBMS available as product Hey, 30 years in the IT field is so huge! 2009 NoSQL movement (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 3
  • 4. Before 2009 teams of developers always fought to select: Operative System Programming Language Middleware (App-Servers) What about the Database? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 4
  • 5. One of the main resistances of RDBMS users to pass to a NoSQL product are related to the complexity of the model: Ok, NoSQL products are super for BigData and BigScale but... (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 5
  • 6. ...what about the model? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 6
  • 7. What is the NoSQL answer about managing complex domains? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License No Relationships support Key-Value stores ? Column-Based ? Document database ? Graph database ! Page 7
  • 8. Why most of NoSQL products don’t support Relationship Between entities? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 8
  • 9. To understand why, let’s see how Relational DBMS managed them (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 9
  • 10. Domain: the super minimal “Selling App” Customer Customer Address Address Registry system Order system Order Order (c) Luca Garulli Stock Stock Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 10
  • 11. Domain: the super minimal “Selling App” Customer Customer Address Address How does Relational DBMS manage relationships? Registry system Order system Order Order (c) Luca Garulli Stock Stock Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 11
  • 12. Relational World: 1-1 Relationships Primary key Primary key Customer Id Name Address Address 10 Luca 34 11 Jill Foreign key Id Location 34 Rome 44 44 London 34 John 54 54 Moscow 56 Mark 66 66 New Mexico 88 Steve 68 68 Palo Alto JOIN Customer.Address -> Address.Id (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 12
  • 13. Relational World: 1-N Relationships Customer Id Address Name Id Customer Location 10 Luca 24 10 Rome 11 Jill 33 10 London 34 John 44 34 Moscow 56 Mark 66 56 Cologne 88 Steve 68 88 Palo Alto Inverse JOIN Address.Customer -> Customer.Id (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 13
  • 14. Relational World: N-M Relationships Customer Id Name CustomerAddress Id Address Address Id Location 10 Luca 10 24 24 Rome 11 Jill 10 33 33 London 34 John 34 44 44 Moscow 56 Mark 66 Cologne 88 Steve 68 Palo Alto Additional table with 2 JOINs (1) CustomerAddress.Id -> Customer.Id and (2) CustomerAddress.Address -> Address.Id (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 14
  • 15. What’s wrong with the Relational Model? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 15
  • 16. The JOIN is the evil! Customer Id CustomerAddress Name Id Address Address Id Location 10 Luca 10 24 24 Rome 11 Jill 10 33 33 London 34 John 34 24 44 Moscow 56 Mark 66 Cologne 88 Steve 68 Palo Alto These are all JOINs executed everytime you traverse a relationship! relationship (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 16
  • 17. A JOIN means searching for a key in another table The first rule to improve performance is indexing all the keys Index speeds up searches, but slows down insert, updates and deletes (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 17
  • 18. So in the best case a JOIN is a lookup into an index This is done per single join! If you traverse hundreds of relationships you’re executing hundreds of JOINs (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 18
  • 19. Index Lookup is it really that fast? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 19
  • 20. Index Lookup: how does it works? A-Z A-L M-Z Think to an Address Book where we have to find the Luca’s phone number (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 20
  • 21. Index Lookup: how does it works? A-Z A-L M-Z A-L A-D M-Z E-L M-R S-Z Index algorithms are all similar and based on balanced trees (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 21
  • 22. Index Lookup: how does it works? A-Z A-L M-Z A-L A-D M-Z E-L M-R A-D A-B (c) Luca Garulli S-Z E-L C-D E-G H-L Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 22
  • 23. Index Lookup: how does it works? A-Z A-L M-Z A-L A-D M-Z E-L M-R A-D A-B E-L C-D E-G H-L E-G E-F (c) Luca Garulli S-Z H-L G H-J K-L Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 23
  • 24. Index Lookup: how does it works? A-Z A-L M-Z A-L A-D M-Z E-L A-D A-B Found! M-R S-Z This lookup took 5 steps and grows up with the index size! E-L C-D E-G H-L E-G E-F H-L G H-J K-L Luca (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 24
  • 25. Can you imagine how many steps a Lookup operation does into an Index with Millions or Billions of records? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 25
  • 26. And this JOIN is executed foreach involved table, multiplied foreach scanned records ! (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 26
  • 27. Querying more tables can easily produce millions of JOINs/Lookups! Here the rule: more entries = more lookup steps = slower JOIN (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 27
  • 28. Oh! This is why performance of my database drops down when it becomes bigger, and bigger, and bigger! (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 28
  • 29. What about Document Databases like MongoDB? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 29
  • 30. How MongoDB manages relationships: { “_id” : “292846512”, “type” : “Order”, “number” : 1223, “customer” : “123456789” } (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 30
  • 31. MongoDB uses the same approach: it stores the _id of the connected documents. At run-time it lookups up for the _id by using an index. (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 31
  • 32. Is there a better way to manage relationships? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 32
  • 33. “A graph database is any storage system that provides index-free adjacency” - Marko Rodriguez (author of TinkerPop Blueprints) (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 33
  • 34. How does GraphDB manage index-free relationships? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 34
  • 35. Every developer knows the Relational Model, but who knows the Graph one? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 35
  • 36. Back to school: Graph Theory crash course (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 36
  • 37. Basic Graph Luca Luca (c) Luca Garulli Likes NoSQL NoSQL Day Day Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 37
  • 38. Property Graph Model* Vertices are directed Luca Luca Likes name: Luca name: Luca surname: Garulli surname: Garulli company: Orient Tech company: Orient Tech since: 2013 NoSQL NoSQL Day Day date: Nov 15° 2013 date: Nov 15° 2013 Vertices and Edges can have properties * https://github.com/tinkerpop/blueprints/wiki/Property-Graph-Model (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 38
  • 39. Property Graph Model Likes 2 since: Luca Luca 013 Speak s NoSQL NoSQL Day Day ti abstra tle: «Switch in ct: «Th is talk g...» presen ts...» An Edge connects 2 vertices: use multiple edges to represents 1-N and N-M relationships (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 39
  • 40. Property Graph Model Studies Udine Udine Luca Luca located Likes FriendOf Daniel Daniel (c) Luca Garulli ganizes Or Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License NoSQL NoSQL Day Day Page 40
  • 41. Compliments, this is your diploma in «Graph Theory» (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 41
  • 42. The Graph theory is so simple to be so powerful (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 42
  • 43. Let’s go back to the Graph Stuff How does OrientDB manage relationships? (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 43
  • 44. OrientDB: traverse a relationship The Record ID (RID) is the physical position RID = #13:35 RID = #13:35 RID = #13:100 RID = #13:100 Luca Luca Rome Rome (vertex) (vertex) label : :‘Customer’ label ‘Customer’ name : :‘Luca’ name ‘Luca’ (c) Luca Garulli (vertex) (vertex) label = ‘Address’ label = ‘Address’ name = ‘Rome’ name = ‘Rome’ Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 44
  • 45. OrientDB: traverse a relationship The Edge’s RID is saved inside both vertices, as «out» and «in» RID = #13:35 RID = #13:35 RID = #13:100 RID = #13:100 RID = #14:54 RID = #14:54 Luca Luca (vertex) (vertex) out ::[#14:54] out [#14:54] label : :‘Customer’ label ‘Customer’ name : :‘Luca’ name ‘Luca’ (c) Luca Garulli Lives out: [#13:35] out: [#13:35] in: [#13:100] in: [#13:100] Label : :‘Lives’ Label ‘Lives’ Rome Rome (vertex) (vertex) in: [#14:54] in: [#14:54] label = ‘Address’ label = ‘Address’ name = ‘Rome’ name = ‘Rome’ Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 45
  • 46. OrientDB: traverse -> outgoing RID = #13:35 RID = #13:35 RID = #13:100 RID = #13:100 RID = #14:54 RID = #14:54 Luca Luca out ::[#14:54] out [#14:54] label : :‘Customer’ label ‘Customer’ name : :‘Luca’ name ‘Luca’ (c) Luca Garulli Lives out: [#13:35] out: [#13:35] in: [#13:100] in: [#13:100] Label : :‘Lives’ Label ‘Lives’ Rome Rome in: [#14:54] in: [#14:54] label = ‘Address’ label = ‘Address’ name = ‘Rome’ name = ‘Rome’ Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 46
  • 47. OrientDB: traverse <- incoming RID = #13:35 RID = #13:35 RID = #13:100 RID = #13:100 RID = #14:54 RID = #14:54 Luca Luca out ::[#14:54] out [#14:54] label : :‘Customer’ label ‘Customer’ name : :‘Luca’ name ‘Luca’ (c) Luca Garulli Lives out: [#13:35] out: [#13:35] in: [#13:100] in: [#13:100] Label : :‘Lives’ Label ‘Lives’ Rome Rome in: [#14:54] in: [#14:54] label = ‘Address’ label = ‘Address’ name = ‘Rome’ name = ‘Rome’ Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 47
  • 48. GraphDB handles relationships as a physical LINK to the record assigned when the edge is created on the other side RDBMS computes the relationship every time you query a database Is not that crazy?! (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 48
  • 49. This means jumping from a O(log N) algorithm to a near O(1) traversing cost is not more affected by database size! This is huge in the BigData age (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 49
  • 50. an Open Source (Apache licensed) document-graph NoSQL dbms (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 50
  • 51. OrientDB in the Blueprints micro-benchmark, on common hw, with a hot cache, traverses 29,6 Millions of records in less than 5 seconds about 6 Millions of nodes traversed per sec! Do not try this at home with a RDBMS*! *unless you live in the Google’s server farm (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 51
  • 52. Create the graph in SQL $luca> cd bin $luca> ./console.sh OrientDB console v.1.6.1 (www.orientdb.org) Type 'help' to display all the commands supported. orientdb> create vertex Customer set name = ‘Luca’ Created vertex #13:35 in 0.03 secs orientdb> create vertex Address set name = ‘Rome’ Created vertex #13:100 in 0.02 secs orientdb> create edge Lives from #13:35 to #13:100 Created edge #14:54 in 0.02 secs (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 52
  • 53. Create the graph in Java Graph graph = new OrientGraph("local:/tmp/db/graph”); Vertex luca = graph.addVertex( “class:Customer” ); luca.setProperty( “name", “Luca” ); Vertex rome = graph.addVertex ( “class:Address” ); rome.setProperty( “name", “Rome” ); Edge edge = luca.addEdge( “Lives”, rome ); graph.shutdown(); (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 53
  • 54. Query the graph in SQL orientdb> select in(‘Lives’) from Address where name = ‘Rome’ ---+------+---------|--------------------+--------------------+--------+   #| RID  |@class   |label               |out_Lives           |in      | ---+------+---------+--------------------+--------------------+--------+   0| 13:35|Customer |Luca                |[#14:54]            |        | ---+------+---------+--------------------+--------------------+--------+ 1 item(s) found. Query executed in 0.007 sec(s). Incoming vertices (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 54
  • 55. More on query power orientdb> select sum( out(‘Order’).total ) from Customer where name = ‘Luca’ orientdb> traverse both(‘Friend’) from Customer while $depth <= 7 orientdb> select from ( traverse both(‘Friend’) from Customer while $depth <= 7 ) where @class=‘Customer’ and city.name = ‘Udine’ (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 55
  • 56. Query vs traversal Once you’ve a well connected database in the form of a Super Graph you can cross records instead of query them! All you need is a few“Root Vertices” where to start traversing (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 56
  • 57. Query vs traversal Special Special Customers Customers Customers Customers Luca Luca This is a root vertex (c) Luca Garulli Mar Mar k k Stocks Stocks Jill Jill White White Soap Soap Order Order 2332 2332 Order Order 8834 8834 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 57
  • 58. Root Vertices can be enriched by Meta Graphs to decorate Graphs with additional information and make easier/faster the retrieval (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 58
  • 59. Temporal based Meta Graph Calendar Calendar Year Year 2013 2013 Month Month April 2013 April 2013 Day Day 9/4/2013 9/4/2013 Hour Hour 9/4/2013 9/4/2013 09:00 09:00 Order Order 2332 2332 (c) Luca Garulli Hour Hour 9/4/2013 9/4/2013 10:00 10:00 Order Order 2333 2333 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Order Order 2334 2334 Page 59
  • 60. Location based Meta Graph Location Location Country Country Italy Italy Region Region Lazio Lazio State State RM RM City City Fiumicino Fiumicino Order Order 2332 2332 (c) Luca Garulli City City Rome Rome Order Order 2333 2333 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Order Order 2334 2334 Page 60
  • 61. Mix & Merge graphs Region Region Lazio Lazio Country Country Italy Italy State State RM RM City City Rome Rome City City Fiumicino Fiumicino Location Location Order Order 2332 2332 Order Order 2333 2333 Order Order 2334 2334 Calendar Calendar Year Year 2013 2013 (c) Luca Garulli Hour Hour 9/4/2013 9/4/2013 09:00 09:00 Month Month April 2013 April 2013 Hour Hour 9/4/2013 9/4/2013 10:00 10:00 Day Day 9/4/2013 9/4/2013 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 61
  • 62. Region Region Lazio Lazio Get all the orders sold in “Fiumicino” city Order Order Order Order 2332 2333 2332 2333 on 9/4/2013 at 10:00 Country Country Italy Italy Location Location Calendar Calendar Year Year 2013 2013 (c) Luca Garulli State State RM RM City City Rome Rome City City Fiumicino Fiumicino Hour Hour 9/4/2013 9/4/2013 09:00 09:00 Month Month April 2013 April 2013 Hour Hour 9/4/2013 9/4/2013 10:00 10:00 Day Day 9/4/2013 9/4/2013 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 62 Order Order 2334 2334
  • 63. Start from Calendar, look for Hour 10:00 Region Region Lazio Lazio Country Country Italy Italy State State RM RM City City Rome Rome City City Fiumicino Fiumicino Location Location Order Order 2332 2332 Order Order 2333 2333 Order Order 2334 2334 Calendar Calendar Year Year 2013 2013 (c) Luca Garulli Hour Hour 9/4/2013 9/4/2013 09:00 09:00 Month Month April 2013 April 2013 Hour Hour 9/4/2013 9/4/2013 10:00 10:00 Day Day 9/4/2013 9/4/2013 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 63
  • 64. Start from Calendar, look for Hour 10:00 Found 2 Orders, filter by incoming now filter by City City incoming edges edges< Region Region Lazio Lazio Country Country Italy Italy State State RM RM City City Fiumicino Fiumicino Rome Rome Location Location Order Order 2332 2332 Order Order 2333 2333 Order Order 2334 2334 Calendar Calendar Year Year 2013 2013 (c) Luca Garulli Hour Hour 9/4/2013 9/4/2013 09:00 09:00 Month Month April 2013 April 2013 Hour Hour 9/4/2013 9/4/2013 10:00 10:00 Day Day 9/4/2013 9/4/2013 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 64
  • 65. Start from Calendar, look for Hour 10:00 Region Region Lazio Lazio Country Country Italy Italy State State RM RM City City Rome Rome City City Fiumicino Fiumicino Location Location Only “Order 2333” has incoming connections with “Fiumicino” Order Order 2332 2332 Order Order 2333 2333 Order Order 2334 2334 Calendar Calendar Year Year 2013 2013 (c) Luca Garulli Hour Hour 9/4/2013 9/4/2013 09:00 09:00 Month Month April 2013 April 2013 Hour Hour 9/4/2013 9/4/2013 10:00 10:00 Day Day 9/4/2013 9/4/2013 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 65
  • 66. Or start from Location, look for Fiumicino Region Region Lazio Lazio Country Country Italy Italy State State RM RM City City Rome Rome City City Fiumicino Fiumicino Location Location Order Order 2332 2332 Order Order 2333 2333 Order Order 2334 2334 Calendar Calendar Year Year 2013 2013 (c) Luca Garulli Hour Hour 9/4/2013 9/4/2013 09:00 09:00 Month Month April 2013 April 2013 Hour Hour 9/4/2013 9/4/2013 10:00 10:00 Day Day 9/4/2013 9/4/2013 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 66
  • 67. Start from Location, look for Fiumicino Region Region Lazio Lazio Country Country Italy Italy State State RM RM City City Rome Rome City City Fiumicino Fiumicino Location Location Order Order 2332 2332 Order Order 2333 2333 Order Order 2334 2334 Calendar Calendar Year Year 2013 2013 (c) Luca Garulli Hour Hour 9/4/2013 9/4/2013 09:00 09:00 Month Month April 2013 April 2013 Hour Hour 9/4/2013 9/4/2013 10:00 10:00 Day Day 9/4/2013 9/4/2013 Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 67
  • 68. This is your database (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 68
  • 69. Get last customer bought ‘Barolo’ select last(out(‘Order’).in(‘Customer)) from Stock where name = ‘Barolo’ #34:22 (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 69
  • 70. Get his’s country select out(‘City’) from #34:22 Udine, Italy #55:12 (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 70
  • 71. Get orders from that country select in(‘Customer’) from #55:12 (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 71
  • 72. Let’s move like a Spider on the web (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 72
  • 73. Thanks! www.orientechnologies.com www.twitter.com/orientechno (c) Luca Garulli Licensed under a Creative Commons Attribution-NoDerivs 3.0 Unported License Page 73

Editor's Notes

  1. Good afternoon! Today I’d like to show you a new way to design a database. In 1970 Relational DBMS