SlideShare a Scribd company logo
1 of 21
Download to read offline
A P I A RY : A C A S E F O R N E O 4 J ?
Anuj Mathur and Dhaval Dalal
{amathur, ddalal}@equalexperts.com
1
What is Apiary?	

 3
Typical Usecases	

 3
1) Modeling a Simple Organization (Phase 1)	

 3
2) Modeling a Group (Phase 2)	

 3
Screen Renditions and Flows	

 4
Analysis Model (Phase 1)	

 5
1) Neo4J Domain Model	

 5
2) SQL Domain Model	

 6
Queries	

 6
1) Gather Subordinates names till a visibility level from a current level	

 7
2) Gather Subordinates Aggregate data from current level	

 9
3) Gather Overall Aggregate Data for Dashboard	

 12
Indexes	

 12
Databases Compared	

 12
Measurement Tools and Codebase	

 12
Query Execution and Charts	

 13
Our Observations	

 18
Few Concluding Thoughts	

 20
Asking Questions For a Graph Solution	

 21
Acknowledgements	

 21
2
What is Apiary?
The application aims at graphically representing an organization that contains different
groups/units of employees. Metaphorically, a group/unit can be viewed as a beehive and an
employee as a bee and hence the whole organization becomes an apiary - hence the
application name.
Typical Usecases
1) Modeling a Simple Organization (Phase 1)
	

 Employees belong to single or multiple functional units lead by heads within an
organization. An employee can have different types of reporting, direct reporting to his/her
manager (can be conceptualized as a thick line relationship - in the figure below the direct
lines coming out of a node are colored as grey) and multiple indirect reporting to different
department heads/managers (can be conceptualized as a thin/dotted line relationship - in the
figure below as green and red colored lines).
	

 For example, in a IT Services company or a captive center, Adam may be reporting
directly to Jack Ass, but for his project work, he would be functionally reporting to Jennifer and
Harry as they are responsible for Cash Management and Corporate Banking.
	

 As the number of employees increase, so would the relationships and cross-functional
reporting, eventually developing into a complex model that is non-hierarchical.
2) Modeling a Group (Phase 2)
	

 Business Groups have many companies serving many sectors. For instance, The Tata
Group, BT Group, Reliance Group, BNP Paribas Group etc... would be serving many sectors
and have multiple companies in each sector and its sub-sector.
3
Once we do the above, we plan to add dynamic part to this graph, that is, the social
relationships in an organization, to understand - who is talking to whom the most, are the top-
level folks reaching out to the ones below and till what level is that effective, recommend
people for a project that requires certain set of skills etc, etc... and visualize them for mining
interesting organizational patterns.
Screen Renditions and Flows
	

We intend to render a UI that is similar to the Mindmap shown above, with ability to
navigate, expand etc... from current node to other nodes.
1. Login causes user to be fetched (an index hit) from Neo4j and render his/her
subordinates with count of people reporting to him/her until a pre-defined visibility
level.
2. Ability to navigate up/down the levels.
3. Ability to expand subordinates.
4. Ability to see hierarchy lineage.
5. Dashboard shows count of people at all levels as a summary data.
4
Analysis Model (Phase 1)
1) Neo4J Domain Model
Node Properties
Person name
type
level
Relationships Properties
DIRECTLY_MANAGES N/A
Note: For the purpose of establishing the case, we have modeled minimal relationships and
not all the relationships that would have been in the final application. Below is a list of
relationships that are yet pending to be modeled, but are not relevant for the purposes of
taking performance measurements.
Relationships Properties
INDIRECTLY_MANAGES N/A
DIRECTLY_REPORTS_TO N/A
INDIRECTLY_REPORTS_TO N/A
MEETS frequency, where
PREFERS_COMPANY_OF N/A
5
2) SQL Domain Model
Queries
Above screen-flow and modeling for organizations and groups use cases requires us to run
queries that do the following:
1) Gather Subordinates names till a visibility level from current level.
2) Gather Subordinates Aggregate Data from current level.
3) Gather Overall Aggregate Data for Dashboard
We have run these queries at different levels for various volumes of person-data ranging from
1000 people (needed by the organization use case) to 1 million people (needed by the
Group use case) in steps of multiples of 10, i.e 1K, 10K, 100K, 1M. We have additionally taken
readings for 2M and 3M organization at level 8.
Note: For Neo4j, we have restricted ourselves to Parametric Cypher queries (and not
included Traversal API) by executing them and noting the execution time programmatically.
This, we believe is a fair apple-to-apple comparison because just as what SQL is to RDBMS,
Cypher is to Neo4j. Also, we understand that the Traversal API is likely the fastest at the
moment; however, for the longer term as Neo4j intends to further the Cypher query planning
and optimization, we think its prudent to stick to it.
6
1) Gather Subordinates names till a visibility level from a current level
CURRENT
LEVEL
We have varied total hierarchy levels in the organization from 3 to 8 for different volumes of
people. Optimized generic Cypher query is:
start n = node:Person(name = "fName lName")
match p = n-[:DIRECTLY_MANAGES*1..visibilityLevel]->m
return nodes(p)
Where visibility level is a number that indicates the number of levels to show.
For SQL we have to recursively add joins for each level, a generic SQL can be written as:
SELECT manager.pid AS Bigboss,
manager.directly_manages AS Subordinate,
L1Reportees.directly_manages AS Reportee1,
L2Reportees.directly_manages AS Reportee2,
...
FROM person_reportee manager
LEFT JOIN person_reportee L1Reportees
ON manager.directly_manages = L1Reportees.pid
LEFT JOIN person_reportee L2Reportees
ON L1Reportees.directly_manages = L2Reportees.pid
...
...
WHERE manager.pid = (SELECT id
FROM person
WHERE name = "fName lName")
Visibility
Level
Database Queries
2 Neo4j start n = node:Person(name = "fName lName")
match n-[:DIRECTLY_MANAGES*1..2]->m
return nodes(p)
2
MySQL/
MSSQL
SELECT manager.pid AS Bigboss, manager.directly_manages AS
Subordinate, L1Reportees.directly_manages AS Reportee
FROM person_reportee manager
LEFT JOIN person_reportee L1Reportees
ON manager.directly_manages = L1Reportees.pid
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName")
7
Names
Visibility
Level
Database Queries
3 Neo4j start n = node:Person(name = "fName lName")
match n-[:DIRECTLY_MANAGES*1..3]->m
return nodes(p)
3
MySQL/
MSSQL
SELECT manager.pid AS Bigboss,
manager.directly_manages AS Subordinate,
L1Reportees.directly_manages AS Reportee1,
L2Reportees.directly_manages AS Reportee2
FROM person_reportee manager
LEFT JOIN person_reportee L1Reportees
ON manager.directly_manages = L1Reportees.pid
LEFT JOIN person_reportee L2Reportees
ON L1Reportees.directly_manages = L2Reportees.pid
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName")
4 Neo4j start n = node:Person(name = "fName lName")
match n-[:DIRECTLY_MANAGES*1..4]->m
return nodes(p)
4
MySQL/
MSSQL
SELECT manager.pid AS Bigboss,
manager.directly_manages AS Subordinate,
L1Reportees.directly_manages AS Reportee1,
L2Reportees.directly_manages AS Reportee2,
L3Reportees.directly_manages AS Reportee3
FROM person_reportee manager
LEFT JOIN person_reportee L1Reportees
ON manager.directly_manages = L1Reportees.pid
LEFT JOIN person_reportee L2Reportees
ON L1Reportees.directly_manages = L2Reportees.pid
LEFT JOIN person_reportee L3Reportees
ON L2Reportees.directly_manages = L3Reportees.pid
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName")
... ... ...
7 Neo4j start n = node:Person(name = "fName lName")
match n-[:DIRECTLY_MANAGES*1..7]->m
return nodes(p)
7
MySQL/
MSSQL
SELECT manager.pid AS Bigboss,
manager.directly_manages AS Subordinate,
L1Reportees.directly_manages AS Reportee1,
L2Reportees.directly_manages AS Reportee2,
L3Reportees.directly_manages AS Reportee3,
...,
L6Reportees.directly_manages AS Reportee6,
L7Reportees.directly_manages AS Reportee7
FROM person_reportee manager
LEFT JOIN person_reportee L1Reportees
ON manager.directly_manages = L1Reportees.pid
LEFT JOIN person_reportee L2Reportees
ON L1Reportees.directly_manages = L2Reportees.pid
LEFT JOIN person_reportee L3Reportees
ON L2Reportees.directly_manages = L3Reportees.pid
...
LEFT JOIN person_reportee L7Reportees
ON L6Reportees.directly_manages = L7Reportees.pid
WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName")
8
2) Gather Subordinates Aggregate data from current level
We have varied total hierarchy levels in the
organization from 3 to 8 for different volumes
of people.
Further, the optimized Generic Cypher query is:
start n = node:Person(name = "fName lName")
match n-[:DIRECTLY_MANAGES*0..(totalLevels -
n.level)]->m-[:DIRECTLY_MANAGES*1..(totalLevels
- n.level)]->o
where n.level + visibilityLevel >= m.level
return m.name as Subordinate, count(o) as Total
For SQL aggregate query, we not only have to recursively add joins but also perform inner
unions for each level till the last level to obtain the aggregate data for that level. Once we
obtain the data for a particular level (per person), we perform outer unions to get the final
result for all the levels. This results in a very big SQL query.
Here is a sample query that returns aggregate data for 3 levels below the current level. Say,
we have current level as 5 with a total of 8 levels, this means I need to aggregate data for each
person starting below level 5 until 8 as well as for the person in question (in the where
clause).
(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
9
Aggregate
Data
Current
Level
INNER
UNIONS
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
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
10
OUTER
UNIONS
(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")
)
If the current level is 1 and total levels are 8, we have these queries run into 500+ lines (and
hence we have not shown all of them here). Also, hand-creating them and maintaining them is
a painstaking task. Though programatic creation of these queries is possible using nested
recursion, it would also be difficult to produce and verify their correctness, we simply have to
trust the recursion. In all the above queries for both inner and outer union queries, the
maximum number of joins vary as:
max no. of joins = total level - current level - 1
For Neo4j, it is worth noting that the queries do not exhibit such a bloat as levels increase,
instead they remain constant for all levels and at the same time Cypher is more expressive
and declarative in nature.
For taking measurements, we have assumed full visibility and the person in question is always
at top level (n.level = 1) and viewing down the whole hierarchy. However, in the actual
application, visibility level would change at runtime. We simply vary the visibility level in the
where clause. Please note that Visibility level is to filter out the data to be shown to the user
and has no bearing on the aggregate data being calculated.
Visibility
Level
Total
Levels
Queries
2 3 start n = node:Person(name = "fName lName")
match n-[:DIRECTLY_MANAGES*0..2]->m-[:DIRECTLY_MANAGES*1..2]->o
where n.level + 2 >= m.level
return m.name as Subordinate, count(o) as Total
3 4 start n = node:Person(name = "fName lName")
match n-[:DIRECTLY_MANAGES*0..3]->m-[:DIRECTLY_MANAGES*1..3]->o
where n.level + 3 >= m.level
return m.name as Subordinate, count(o) as Total
4 5 start n = node:Person(name = "fName lName")
match n-[:DIRECTLY_MANAGES*0..4]->m-[:DIRECTLY_MANAGES*1..4]->o
where n.level + 4 >= m.level
return m.name as Subordinate, count(o) as Total
... ...
7 8 start n = node:Person(name = "fName lName")
match n-[:DIRECTLY_MANAGES*0..7]->m-[:DIRECTLY_MANAGES*1..7]->o
where n.level + 7 >= m.level
return m.name as Subordinate, count(o) as Total
11
3) Gather Overall Aggregate Data for Dashboard
We need to show distribution of people at various levels and For this to work we need the
following queries.
Neo4J MySQL/MSSQL
start n = node(*) return n.level as Level,
count(n) as Total
order by Level
SELECT level, count(id)
FROM person
GROUP BY level
Indexes
All the above queries were run with indexing enabled on the join columns for the MySQL and
MS-SQL databases and for Neo4j, a Person Index bearing the name field.
Databases Compared
All the Tests were performed on commodity grade laptop - Lenovo T430 with 4GB RAM,
running 64-bit Win7 on Intel i5 2.5Ghz with Java 1.7 update 7 was used. Following databases
were used to take measurements
• MySQL v5.6.12
• MS-SQL Server 2008 R2
• Neo4J v1.9 (Advanced)
Measurement Tools and Codebase
• For MS-SQL we have used the MS-SQL profiler.
• For MySQL we have noted the duration time (excluding the fetch time) from MySQL
Workbench.
• For Neo4j, we ran the parametric queries programmatically (in embedded mode) and
measured the time. We have not used Neo4j shell to take measurements as its intended to
be an Ops tool (and not a transactional tool).
Our code and scaffolding programs that we used are available on - https://github.com/
EqualExperts/Apiary-Neo4j-RDBMS-Comparison
12
Query Execution and Charts
Further, we have ensured the following across all the 3 databases:
1. Consistent data distribution for each level-cases for all the volumes across all the databases.
2. Functionally equivalent queries for the 3 databases returning same result set.
3. Cold-cache before each query execution for all the databases and re-executed the query
to make the cache warm. We have measured execution times for both, Cold and Warm
cache.
4. Databases and measurement tools running on same machine to avoid network transport
times being factored in.
5. We have done an out-of-box comparison for the all the databases without tweaking any
memory settings on any of them, apart from giving 3GB to the overall java process running
embedded Neo4j.
6. We have performed measurements against worst possible queries scenario being executed
by the application, that is, say if the top-boss logs in and wants to see all the levels (max.
visibility level), his/her query will take the most time.
13
Volume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People Org
MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j
Lvls Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm
3 78 0 109 0 93 0 226 0 49 0 6 0 679 164 3329 760 1538 269
4 94 15 94 16 78 16 114 82 133 61 35 0 670 178 2878 851 892 183
5 109 0 62 15 47 0 212 43 138 13 59 0 813 166 2848 763 1533 221
6 125 0 156 62 63 0 118 78 278 72 26 0 699 171 3607 1124 1387 319
7 109 16 94 47 62 0 151 90 420 71 13 0 728 177 3123 929 1457 357
8 110 0 141 31 78 0 231 46 621 84 18 0 721 164 2879 1040 906 207
0
50
100
150
200
3 4 5 6 7 8
164
178
166 171 177
164
1000 People - Gather Subordinate Names
QueryExecutionTime(ms)
Levels
375
750
1125
1500
3 4 5 6 7 8
760
851
763
1124
929
1040
1000 People - Gather Subordinate Aggregate
QueryExecutionTime(ms)
Levels
-100
0
100
200
300
400
3 4 5 6 7 8
269
183
221
319
357
207
1000 People - Overall Aggregate
QueryExecutionTime(ms)
Levels
14
Neo4jMSSQLMySQL
Warm Cache Plots
Volume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People Org
MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j
Lvls Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm
3 109 0 140 31 109 15 172 107 294 181 103 1 730 176 6129 898 2292 613
4 141 16 343 234 109 0 229 116 1267 156 102 1 776 178 5865 952 2073 455
5 94 15 640 561 94 15 270 164 403 188 327 1 727 184 5718 1194 2119 328
6 94 0 998 905 78 0 401 123 650 254 38 3 742 221 5692 1458 3182 453
7 93 0 1482 1326 78 0 303 177 870 374 68 1 705 185 5710 1188 1990 456
8 93 0 2745 2683 78 0 387 163 1146 573 71 1 713 171 6002 1271 1976 36
0
75
150
225
300
3 4 5 6 7 8
176 178 184
221
185
171
10K People - Gather Subordinate Names
QueryExecutionTime(ms)
Levels
0
750
1500
2250
3000
3 4 5 6 7 8
898 952
1194
1458
1188 1271
10K People - Gather Subordinate Aggregate
QueryExecutionTime(ms)
Levels
-175
0
175
350
525
700
3 4 5 6 7 8
613
455
328
453 456
36
10K People - Overall Aggregate
QueryExecutionTime(ms)
Levels
15
Warm Cache Plots
Neo4jMSSQLMySQL
Volume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People Org
MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j
Lvls Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm
3 124 0 1107 998 140 31 617 537 1201 608 168 12 736 166 13340 4404 5157 566
4 109 0 2231 2106 140 31 1224 650 1263 667 157 19 812 167 14686 4697 5396 594
5 124 16 5616 5460 125 31 1377 757 1830 913 194 12 713 167 15351 5516 5118 497
6 109 0 9734 9625 140 31 1006 811 3002 1274 159 12 756 175 17056 6145 4736 573
7 93 0 16271 16100 156 31 1125 784 2947 1566 158 14 700 177 17821 6915 4592 592
8 109 0 25334 25287 125 32 1285 951 4256 2171 510 14 691 183 19881 8304 4731 557
0
250
500
750
1000
3 4 5 6 7 8
166 167 167 175 177 183
100K People - Gather Subordinate Names
QueryExecutionTime(ms)
Levels
0
7500
15000
22500
30000
3 4 5 6 7 8
4404 4697 5516 6145 6915
8304
100K People - Gather Subordinate Aggregate
QueryExecutionTime(ms)
Levels
0
150
300
450
600
3 4 5 6 7 8
566
594
497
573 592
557
100K People - Overall Aggregate
QueryExecutionTime(ms)
Levels
16
Neo4JMSSQLMySQL
Warm Cache Plots
Volume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People Org
MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j
Lvls Gather
Subordin
ate
Names
Gather
Subordin
ate
Names
Gather Subordinate
Aggregate
Gather Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinat
e Names
Gather
Subordinat
e Names
Gather Subordinate
Aggregate
Gather Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Cold War
m
Cold Warm Cold War
m
Cold Warm Cold Warm Cold War
m
Cold War
m
Cold Warm Cold War
m
3 109 16 10998 10171 452 281 6337 4973 22703 20037 798 116 718 176 109432 44265 371902109
4 172 0 20467 19734 515 280 5677 5280 14888 7813 1245 114 740 182 115011 106260 360332194
5 172 16 60606 60653 531 281 7111 5959 12047 8293 1211 140 721 184 169123 77528 340682248
6 141 0 92789 92867 483 265 7278 6266 15226 7076 1251 140 709 173 255813 124810 330152107
7 218 0 160151 158793 499 280 11890 6724 15226 7076 1330 111 700 177 171607 125152 328131960
8 265 0 281301 280630 577 265 11300 8777 20560 14564 976 121 835 153 136432 73121 236731912
Warm Cache Plots
-2250
0
2250
4500
6750
9000
3 4 5 6 7 8
176 182 184 173 177 153
1M People - Gather Subordinate Names
QueryExecutionTime(ms)
Levels
0
75000
150000
225000
300000
3 4 5 6 7 8
44265
106260
77528
124810125152
73121
1M People - Gather Subordinate Aggregate
QueryExecutionTime(ms)
Levels
0
750
1500
2250
3000
3 4 5 6 7 8
2109 2194 2248
2107
1960 1912
1M People - Overall Aggregate
QueryExecutionTime(ms)
Levels
17
Neo4JMSSQLMySQL
For 2M org and 3M org we have taken measurements just for Level 8.
Volume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People Org
MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j
Lvl Gather
Subordina
te Names
Gather
Subordina
te Names
Gather Subordinate
Aggregate
Gather Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordina
te Names
Gather
Subordina
te Names
Gather Subordinate
Aggregate
Gather Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Cold War
m
Cold Warm Cold War
m
Cold Warm Cold Warm Cold War
m
Cold War
m
Cold Warm Cold War
m
8 281 0 683425 690664 1061 609 26349 21494 40561 30860 1676 203 822 149 437628 1423963 49019 4931
Volume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People Org
MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j
Lvl Gather
Subordi
nate
Names
Gather
Subordi
nate
Names
Gather Subordinate
Aggregate
Gather Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather
Subordinate
Aggregate
Gather
Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Gather
Subordinate
Names
Gather
Subordinate
Names
Gather Subordinate
Aggregate
Gather Subordinate
Aggregate
Overall
Aggregate
Overall
Aggregate
Cold Wa
rm
Cold Warm Cold Warm Cold Warm Cold Warm Cold War
m
Cold War
m
Cold Warm Cold War
m
8 234 0 1089355 1093457 1779 1030 44495 31326 84092 75980 2387 282 744 148 1252647 578434 69751 4682
Our Observations
1. For Gather Subordinate Names query running in Neo4j, we have observed significant
improvements in query execution times upon running different queries on the same
dataset when the cache is warm and hot typically executes within 1-5 ms. However, MS-
SQL does not seem to perform well (as we return large data-set), warm cache results are
marginally better than cold cache results. Looks like, the join explosion seems to have out-
grown the cache size, resulting in page faults. MySQL has out-performed here1.
2. For Gather Subordinate Aggregate queries, Neo4j’s performance is at par or in many cases
even better than MySQL. For MySQL, data suggests an exponential increase in execution
times with increasing levels, while MS-SQL seems to be still coping with this quite nicely and
performing better than all. But all in all, the query execution times for all the databases are
quite high as the volumes grow. This demands a different approach to gather such data.
3. For Overall Aggregate Query, it is clear that Neo4j takes quite some time as global graph
queries (node(*)) become expensive as the volume of data increases as they involve all
the nodes, similar to a table scan in RDBMS’. However, RDMBS’ are able to cope up quite
nicely for such queries, esp. involving aggregates. This is inline with Neo4j recommendation
that - it is not meant to do aggregation though it supports it, because its primarily meant for
graph traversals.
18
1 read this in light of point #4 of this section
4. One of the important observations that we have made is that LEFT join in MySQL is faster
as compared to INNER join (contrary to our thinking - LEFT join would be more expensive
as compared to INNER). As all the above queries are functionally equivalent, it would not
be fair to use INNER join for taking measurements. However, we could not resist the
curiosity to check out INNER join performance.
Executing the above queries using inner join on 1M (all levels), 2M and 3M (for level 8), we
found a significant increase in query execution time for MySQL. Below are the results of
removing the LEFT join from the Gather Subordinate Names query for 1M, 2M Level 8, and
3M Level 8.
What does this mean to us or any application? Say, if the situation demanded that we change
the LEFT join to INNER join, suddenly we would find ourselves in a bad position performance
wise. Whereas its important to note that Neo4j’s performance is almost constant time
execution for all data sizes.
For the above measurements, we did not factor-in INDIRECTLY_MANAGES relationship,
however, taken into consideration, it would translate to additional join for SQL, thus bloating
the already bloated query and increasing complexity. This will further degrade the
performance as join selection would now take more time.
19
-17500
0
17500
35000
52500
70000
1M-3 1M-5 1M-7 2M-8
LEFT Vs INNER Vs Neo4j
QueryExecutionTime(ms)
Org Size-Levels
MySQL - LEFT Join MySQL - INNER Neo4j
MySQLMySQLMySQLMySQL Neo4jNeo4j
Org
Size-
Levels
LEFT JOINLEFT JOIN INNER JOININNER JOIN
cold warm cold warm cold warm
1M-3 109 16 156 16 718 176
1M-4 172 0 140 0 740 182
1M-5 172 0 1154 874 721 184
1M-6 141 0 531 312 709 173
1M-7 218 0 3760 3432 700 177
1M-8 265 0 17145 15896 835 153
2M-8 281 0 40061 36301 822 149
3M-8 234 0 60466 61776 744 148
Warm Cache Plots
Few Concluding Thoughts
1. Performance of Neo4j queries is best when all the nodes and relationships are in object
cache. For that we need to make sure that we can accommodate the complete graph in
memory (esp. for the global graph queries) by throwing a good amount of memory to it. This
characteristic without doubt, applies to all other databases equally, whether its RDBMS or
NoSQL stores.
2. In order to take advantage of the cache, upon application start-up, we would make the
cache hot by issuing queries that bring in almost all the graph into memory, so that the queries
that return the sub-graph or the entire graph would be performant. This way the first request
serviced by the application is also responsive. If the first request is not that critical, then one
can fill the cache lazily.
3. It is better to run Neo4j in embedded mode to get max performance and use parameteric
Cypher queries that can take advantage of paying the parsing cost once and caching the
execution plan. Though in server mode the above is still valid, we would incur additional data
transfer time. An important point that Jim brought to our notice is - in embedded mode the
application itself can produce a lot of garbage thus keeping the GC busy (and making the app
unresponsive), where as in the server mode, Neo4j takes care of not aggravating JVM in such
a way.
4. We intend to model the application using Neo4j as not only the results for it look good
when coping with scale, but the kind of flexibility that we would get when adding additional
properties to a node/relationship or adding a different type of node/relationship all together,
thus giving Apiary the ability to cope with the evolving needs of the organization at different
times. With RDBMS’, it would be a pain to manage these varietal data needs.
5. We do not rule out the possibility of using a non-graph database alongside Neo4j to model
parts of the application best suited for each, esp. for Gather Subordinate Aggregate and
Overall Aggregate queries as the readings suggest. Again, we need to carefully plan this part
due to its OLAPish nature. One thought that crosses the mind is to use a separate thread
that runs on the data, calculating the aggregates after CUD operations are performed. This
can then be made available as a service for the application to consume. Second thought is to
use a separate mirrored database from where this need can be fulfilled. In either cases, the
aggregate data available to the application would be latent. As Jim points out Polyglot
persistence is already a new normal, and many implementations use Neo4j alongside non-
graph stores like RDBMS or NoSQL.
20
Asking Questions For a Graph Solution
Based on the experiments above, in order to determine whether Neo4j applies to a situation,
we have come up with few asking questions as a generic guideline to ascertain whether graph
solution would deem fit:
1. Is your data connected?
2. Or does your domain naturally gravitate towards lots of joins leading to explosion with
large data?
a. For example: Making Recommendations
3. Or are you finding yourself writing complex SQL queries?
a. For example: recursive joins or large number of joins.
If the answers to any of the above questions is yes, then its potentially a case for a graph
database like Neo4j.
Acknowledgements
We would like to thank Dr. Jim Webber from the Neo4j team for going through the report
carefully and giving us important feedback along the way.
21

More Related Content

What's hot

The Graph Database Universe: Neo4j Overview
The Graph Database Universe: Neo4j OverviewThe Graph Database Universe: Neo4j Overview
The Graph Database Universe: Neo4j OverviewNeo4j
 
Family tree of data – provenance and neo4j
Family tree of data – provenance and neo4jFamily tree of data – provenance and neo4j
Family tree of data – provenance and neo4jM. David Allen
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to GraphsNeo4j
 
The Five Graphs of Finance - Philip Rathle and Emil Eifrem @ GraphConnect NY ...
The Five Graphs of Finance - Philip Rathle and Emil Eifrem @ GraphConnect NY ...The Five Graphs of Finance - Philip Rathle and Emil Eifrem @ GraphConnect NY ...
The Five Graphs of Finance - Philip Rathle and Emil Eifrem @ GraphConnect NY ...Neo4j
 
NoSQL Graph Databases - Why, When and Where
NoSQL Graph Databases - Why, When and WhereNoSQL Graph Databases - Why, When and Where
NoSQL Graph Databases - Why, When and WhereEugene Hanikblum
 
An Introduction to NOSQL, Graph Databases and Neo4j
An Introduction to NOSQL, Graph Databases and Neo4jAn Introduction to NOSQL, Graph Databases and Neo4j
An Introduction to NOSQL, Graph Databases and Neo4jDebanjan Mahata
 
Intro to Graphs and Neo4j
Intro to Graphs and Neo4jIntro to Graphs and Neo4j
Intro to Graphs and Neo4jjexp
 
Introduction to Graph databases and Neo4j (by Stefan Armbruster)
Introduction to Graph databases and Neo4j (by Stefan Armbruster)Introduction to Graph databases and Neo4j (by Stefan Armbruster)
Introduction to Graph databases and Neo4j (by Stefan Armbruster)barcelonajug
 
Democratizing Data at Airbnb
Democratizing Data at AirbnbDemocratizing Data at Airbnb
Democratizing Data at AirbnbNeo4j
 
Graphs for Enterprise Architects
Graphs for Enterprise ArchitectsGraphs for Enterprise Architects
Graphs for Enterprise ArchitectsNeo4j
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to GraphsNeo4j
 
Network and IT Operations
Network and IT OperationsNetwork and IT Operations
Network and IT OperationsNeo4j
 
Relational to Big Graph
Relational to Big GraphRelational to Big Graph
Relational to Big GraphNeo4j
 
Building a Graph-based Analytics Platform
Building a Graph-based Analytics PlatformBuilding a Graph-based Analytics Platform
Building a Graph-based Analytics PlatformKenny Bastani
 
An Introduction to Graph: Database, Analytics, and Cloud Services
An Introduction to Graph:  Database, Analytics, and Cloud ServicesAn Introduction to Graph:  Database, Analytics, and Cloud Services
An Introduction to Graph: Database, Analytics, and Cloud ServicesJean Ihm
 
Introducing Neo4j
Introducing Neo4jIntroducing Neo4j
Introducing Neo4jNeo4j
 
Intro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesIntro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesNeo4j
 
Graph Analysis over JSON, Larus
Graph Analysis over JSON, LarusGraph Analysis over JSON, Larus
Graph Analysis over JSON, LarusNeo4j
 

What's hot (20)

The Graph Database Universe: Neo4j Overview
The Graph Database Universe: Neo4j OverviewThe Graph Database Universe: Neo4j Overview
The Graph Database Universe: Neo4j Overview
 
Family tree of data – provenance and neo4j
Family tree of data – provenance and neo4jFamily tree of data – provenance and neo4j
Family tree of data – provenance and neo4j
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to Graphs
 
The Five Graphs of Finance - Philip Rathle and Emil Eifrem @ GraphConnect NY ...
The Five Graphs of Finance - Philip Rathle and Emil Eifrem @ GraphConnect NY ...The Five Graphs of Finance - Philip Rathle and Emil Eifrem @ GraphConnect NY ...
The Five Graphs of Finance - Philip Rathle and Emil Eifrem @ GraphConnect NY ...
 
Graph db
Graph dbGraph db
Graph db
 
Graph based data models
Graph based data modelsGraph based data models
Graph based data models
 
NoSQL Graph Databases - Why, When and Where
NoSQL Graph Databases - Why, When and WhereNoSQL Graph Databases - Why, When and Where
NoSQL Graph Databases - Why, When and Where
 
An Introduction to NOSQL, Graph Databases and Neo4j
An Introduction to NOSQL, Graph Databases and Neo4jAn Introduction to NOSQL, Graph Databases and Neo4j
An Introduction to NOSQL, Graph Databases and Neo4j
 
Intro to Graphs and Neo4j
Intro to Graphs and Neo4jIntro to Graphs and Neo4j
Intro to Graphs and Neo4j
 
Introduction to Graph databases and Neo4j (by Stefan Armbruster)
Introduction to Graph databases and Neo4j (by Stefan Armbruster)Introduction to Graph databases and Neo4j (by Stefan Armbruster)
Introduction to Graph databases and Neo4j (by Stefan Armbruster)
 
Democratizing Data at Airbnb
Democratizing Data at AirbnbDemocratizing Data at Airbnb
Democratizing Data at Airbnb
 
Graphs for Enterprise Architects
Graphs for Enterprise ArchitectsGraphs for Enterprise Architects
Graphs for Enterprise Architects
 
RDBMS to Graphs
RDBMS to GraphsRDBMS to Graphs
RDBMS to Graphs
 
Network and IT Operations
Network and IT OperationsNetwork and IT Operations
Network and IT Operations
 
Relational to Big Graph
Relational to Big GraphRelational to Big Graph
Relational to Big Graph
 
Building a Graph-based Analytics Platform
Building a Graph-based Analytics PlatformBuilding a Graph-based Analytics Platform
Building a Graph-based Analytics Platform
 
An Introduction to Graph: Database, Analytics, and Cloud Services
An Introduction to Graph:  Database, Analytics, and Cloud ServicesAn Introduction to Graph:  Database, Analytics, and Cloud Services
An Introduction to Graph: Database, Analytics, and Cloud Services
 
Introducing Neo4j
Introducing Neo4jIntroducing Neo4j
Introducing Neo4j
 
Intro to Neo4j and Graph Databases
Intro to Neo4j and Graph DatabasesIntro to Neo4j and Graph Databases
Intro to Neo4j and Graph Databases
 
Graph Analysis over JSON, Larus
Graph Analysis over JSON, LarusGraph Analysis over JSON, Larus
Graph Analysis over JSON, Larus
 

Similar to Neo4j MySql MS-SQL comparison

Findability Day 2014 Neo4j how graph data boost your insights
Findability Day 2014 Neo4j how graph data boost your insightsFindability Day 2014 Neo4j how graph data boost your insights
Findability Day 2014 Neo4j how graph data boost your insightsFindwise
 
Socialize your ERP, and collaborate with him!
Socialize your ERP, and collaborate with him!Socialize your ERP, and collaborate with him!
Socialize your ERP, and collaborate with him!LetsConnect
 
SWE-401 - 6. Software Analysis and Design Tools
SWE-401 - 6. Software Analysis and Design ToolsSWE-401 - 6. Software Analysis and Design Tools
SWE-401 - 6. Software Analysis and Design Toolsghayour abbas
 
Mis jaiswal-chapter-09
Mis jaiswal-chapter-09Mis jaiswal-chapter-09
Mis jaiswal-chapter-09Amit Fogla
 
Lecture 07
Lecture 07Lecture 07
Lecture 07Rana Ali
 
REPORT IN PRODMAN Testing models and Examples
REPORT IN PRODMAN Testing models and Examples REPORT IN PRODMAN Testing models and Examples
REPORT IN PRODMAN Testing models and Examples Kevin Lime
 
Real-Time Operational Reporting for Oracle E-Business Suite with CS*Rapid
Real-Time Operational Reporting for Oracle E-Business Suite with CS*RapidReal-Time Operational Reporting for Oracle E-Business Suite with CS*Rapid
Real-Time Operational Reporting for Oracle E-Business Suite with CS*RapidCraig O'Neill
 
Integrated Business Processes with ERP Systems 1st Edition Magal Solutions Ma...
Integrated Business Processes with ERP Systems 1st Edition Magal Solutions Ma...Integrated Business Processes with ERP Systems 1st Edition Magal Solutions Ma...
Integrated Business Processes with ERP Systems 1st Edition Magal Solutions Ma...SydneyMorgans
 
CampusRecruitment Django.pptx
CampusRecruitment Django.pptxCampusRecruitment Django.pptx
CampusRecruitment Django.pptxPoojaG86
 
Mi0036 business intelligence & tools...
Mi0036  business intelligence & tools...Mi0036  business intelligence & tools...
Mi0036 business intelligence & tools...smumbahelp
 
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptxTITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptxTArmy1
 
Hrms industrial training report
Hrms industrial training reportHrms industrial training report
Hrms industrial training reportNitesh Dubey
 
Fundamentals of Database Systems Questions and Answers
Fundamentals of Database Systems Questions and AnswersFundamentals of Database Systems Questions and Answers
Fundamentals of Database Systems Questions and AnswersAbdul Rahman Sherzad
 
SOCIALIZE YOUR SAP ERP THROUGH INTEGRATE D DIGITAL EXPERIENCE PLATFORMS
SOCIALIZE YOUR SAP ERP THROUGH INTEGRATE D DIGITAL EXPERIENCE PLATFORMSSOCIALIZE YOUR SAP ERP THROUGH INTEGRATE D DIGITAL EXPERIENCE PLATFORMS
SOCIALIZE YOUR SAP ERP THROUGH INTEGRATE D DIGITAL EXPERIENCE PLATFORMSAndrea Fontana
 
Analysis modeling in software engineering
Analysis modeling in software engineeringAnalysis modeling in software engineering
Analysis modeling in software engineeringMuhammadTalha436
 

Similar to Neo4j MySql MS-SQL comparison (20)

Findability Day 2014 Neo4j how graph data boost your insights
Findability Day 2014 Neo4j how graph data boost your insightsFindability Day 2014 Neo4j how graph data boost your insights
Findability Day 2014 Neo4j how graph data boost your insights
 
Socialize your ERP, and collaborate with him!
Socialize your ERP, and collaborate with him!Socialize your ERP, and collaborate with him!
Socialize your ERP, and collaborate with him!
 
SWE-401 - 6. Software Analysis and Design Tools
SWE-401 - 6. Software Analysis and Design ToolsSWE-401 - 6. Software Analysis and Design Tools
SWE-401 - 6. Software Analysis and Design Tools
 
Sdlc
SdlcSdlc
Sdlc
 
Sdlc
SdlcSdlc
Sdlc
 
uml.pptx
uml.pptxuml.pptx
uml.pptx
 
Flow-ABriefExplanation
Flow-ABriefExplanationFlow-ABriefExplanation
Flow-ABriefExplanation
 
Mis jaiswal-chapter-09
Mis jaiswal-chapter-09Mis jaiswal-chapter-09
Mis jaiswal-chapter-09
 
Lecture 07
Lecture 07Lecture 07
Lecture 07
 
REPORT IN PRODMAN Testing models and Examples
REPORT IN PRODMAN Testing models and Examples REPORT IN PRODMAN Testing models and Examples
REPORT IN PRODMAN Testing models and Examples
 
Real-Time Operational Reporting for Oracle E-Business Suite with CS*Rapid
Real-Time Operational Reporting for Oracle E-Business Suite with CS*RapidReal-Time Operational Reporting for Oracle E-Business Suite with CS*Rapid
Real-Time Operational Reporting for Oracle E-Business Suite with CS*Rapid
 
Integrated Business Processes with ERP Systems 1st Edition Magal Solutions Ma...
Integrated Business Processes with ERP Systems 1st Edition Magal Solutions Ma...Integrated Business Processes with ERP Systems 1st Edition Magal Solutions Ma...
Integrated Business Processes with ERP Systems 1st Edition Magal Solutions Ma...
 
CampusRecruitment Django.pptx
CampusRecruitment Django.pptxCampusRecruitment Django.pptx
CampusRecruitment Django.pptx
 
Mi0036 business intelligence & tools...
Mi0036  business intelligence & tools...Mi0036  business intelligence & tools...
Mi0036 business intelligence & tools...
 
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptxTITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
TITLE_OF_THE_PROJECT_School_Management_S by SS gupta743.pptx
 
Hrms industrial training report
Hrms industrial training reportHrms industrial training report
Hrms industrial training report
 
Fundamentals of Database Systems Questions and Answers
Fundamentals of Database Systems Questions and AnswersFundamentals of Database Systems Questions and Answers
Fundamentals of Database Systems Questions and Answers
 
Building an Information System
Building an Information SystemBuilding an Information System
Building an Information System
 
SOCIALIZE YOUR SAP ERP THROUGH INTEGRATE D DIGITAL EXPERIENCE PLATFORMS
SOCIALIZE YOUR SAP ERP THROUGH INTEGRATE D DIGITAL EXPERIENCE PLATFORMSSOCIALIZE YOUR SAP ERP THROUGH INTEGRATE D DIGITAL EXPERIENCE PLATFORMS
SOCIALIZE YOUR SAP ERP THROUGH INTEGRATE D DIGITAL EXPERIENCE PLATFORMS
 
Analysis modeling in software engineering
Analysis modeling in software engineeringAnalysis modeling in software engineering
Analysis modeling in software engineering
 

More from Dhaval Dalal

Test Pyramid in Microservices Context
Test Pyramid in Microservices ContextTest Pyramid in Microservices Context
Test Pyramid in Microservices ContextDhaval Dalal
 
Booting into functional programming
Booting into functional programmingBooting into functional programming
Booting into functional programmingDhaval Dalal
 
Currying and Partial Function Application (PFA)
Currying and Partial Function Application (PFA)Currying and Partial Function Application (PFA)
Currying and Partial Function Application (PFA)Dhaval Dalal
 
Creating Lazy stream in CSharp
Creating Lazy stream in CSharpCreating Lazy stream in CSharp
Creating Lazy stream in CSharpDhaval Dalal
 
Json Viewer Stories
Json Viewer StoriesJson Viewer Stories
Json Viewer StoriesDhaval Dalal
 
Mars rover-extension
Mars rover-extensionMars rover-extension
Mars rover-extensionDhaval Dalal
 
How Is Homeopathy Near To Yoga?
How Is Homeopathy Near To Yoga?How Is Homeopathy Near To Yoga?
How Is Homeopathy Near To Yoga?Dhaval Dalal
 
Approaching ATDD/BDD
Approaching ATDD/BDDApproaching ATDD/BDD
Approaching ATDD/BDDDhaval Dalal
 
Paradigms Code jugalbandi
Paradigms Code jugalbandiParadigms Code jugalbandi
Paradigms Code jugalbandiDhaval Dalal
 
Data Reconciliation
Data ReconciliationData Reconciliation
Data ReconciliationDhaval Dalal
 
DRYing to Monad in Java8
DRYing to Monad in Java8DRYing to Monad in Java8
DRYing to Monad in Java8Dhaval Dalal
 
4-Code-Jugalbandi-destructuring-patternmatching-healthycode#apr2015
4-Code-Jugalbandi-destructuring-patternmatching-healthycode#apr20154-Code-Jugalbandi-destructuring-patternmatching-healthycode#apr2015
4-Code-Jugalbandi-destructuring-patternmatching-healthycode#apr2015Dhaval Dalal
 
Jumping-with-java8
Jumping-with-java8Jumping-with-java8
Jumping-with-java8Dhaval Dalal
 
3-CodeJugalbandi-currying-pfa-healthycodemagazine#mar2015
3-CodeJugalbandi-currying-pfa-healthycodemagazine#mar20153-CodeJugalbandi-currying-pfa-healthycodemagazine#mar2015
3-CodeJugalbandi-currying-pfa-healthycodemagazine#mar2015Dhaval Dalal
 
CodeJugalbandi-Sequencing-HealthyCode-Magazine-Feb-2015
CodeJugalbandi-Sequencing-HealthyCode-Magazine-Feb-2015CodeJugalbandi-Sequencing-HealthyCode-Magazine-Feb-2015
CodeJugalbandi-Sequencing-HealthyCode-Magazine-Feb-2015Dhaval Dalal
 
CodeJugalbandi-Expression-Problem-HealthyCode-Magazine#Jan-2015-Issue
CodeJugalbandi-Expression-Problem-HealthyCode-Magazine#Jan-2015-IssueCodeJugalbandi-Expression-Problem-HealthyCode-Magazine#Jan-2015-Issue
CodeJugalbandi-Expression-Problem-HealthyCode-Magazine#Jan-2015-IssueDhaval Dalal
 
The tao-of-transformation-workshop
The tao-of-transformation-workshopThe tao-of-transformation-workshop
The tao-of-transformation-workshopDhaval Dalal
 

More from Dhaval Dalal (20)

Test Pyramid in Microservices Context
Test Pyramid in Microservices ContextTest Pyramid in Microservices Context
Test Pyramid in Microservices Context
 
Code Retreat
Code RetreatCode Retreat
Code Retreat
 
Booting into functional programming
Booting into functional programmingBooting into functional programming
Booting into functional programming
 
Currying and Partial Function Application (PFA)
Currying and Partial Function Application (PFA)Currying and Partial Function Application (PFA)
Currying and Partial Function Application (PFA)
 
Creating Lazy stream in CSharp
Creating Lazy stream in CSharpCreating Lazy stream in CSharp
Creating Lazy stream in CSharp
 
Json Viewer Stories
Json Viewer StoriesJson Viewer Stories
Json Viewer Stories
 
Value Objects
Value ObjectsValue Objects
Value Objects
 
Mars rover-extension
Mars rover-extensionMars rover-extension
Mars rover-extension
 
How Is Homeopathy Near To Yoga?
How Is Homeopathy Near To Yoga?How Is Homeopathy Near To Yoga?
How Is Homeopathy Near To Yoga?
 
Approaching ATDD/BDD
Approaching ATDD/BDDApproaching ATDD/BDD
Approaching ATDD/BDD
 
Paradigms Code jugalbandi
Paradigms Code jugalbandiParadigms Code jugalbandi
Paradigms Code jugalbandi
 
Data Reconciliation
Data ReconciliationData Reconciliation
Data Reconciliation
 
DRYing to Monad in Java8
DRYing to Monad in Java8DRYing to Monad in Java8
DRYing to Monad in Java8
 
CodeRetreat
CodeRetreatCodeRetreat
CodeRetreat
 
4-Code-Jugalbandi-destructuring-patternmatching-healthycode#apr2015
4-Code-Jugalbandi-destructuring-patternmatching-healthycode#apr20154-Code-Jugalbandi-destructuring-patternmatching-healthycode#apr2015
4-Code-Jugalbandi-destructuring-patternmatching-healthycode#apr2015
 
Jumping-with-java8
Jumping-with-java8Jumping-with-java8
Jumping-with-java8
 
3-CodeJugalbandi-currying-pfa-healthycodemagazine#mar2015
3-CodeJugalbandi-currying-pfa-healthycodemagazine#mar20153-CodeJugalbandi-currying-pfa-healthycodemagazine#mar2015
3-CodeJugalbandi-currying-pfa-healthycodemagazine#mar2015
 
CodeJugalbandi-Sequencing-HealthyCode-Magazine-Feb-2015
CodeJugalbandi-Sequencing-HealthyCode-Magazine-Feb-2015CodeJugalbandi-Sequencing-HealthyCode-Magazine-Feb-2015
CodeJugalbandi-Sequencing-HealthyCode-Magazine-Feb-2015
 
CodeJugalbandi-Expression-Problem-HealthyCode-Magazine#Jan-2015-Issue
CodeJugalbandi-Expression-Problem-HealthyCode-Magazine#Jan-2015-IssueCodeJugalbandi-Expression-Problem-HealthyCode-Magazine#Jan-2015-Issue
CodeJugalbandi-Expression-Problem-HealthyCode-Magazine#Jan-2015-Issue
 
The tao-of-transformation-workshop
The tao-of-transformation-workshopThe tao-of-transformation-workshop
The tao-of-transformation-workshop
 

Recently uploaded

Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 

Recently uploaded (20)

Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 

Neo4j MySql MS-SQL comparison

  • 1. A P I A RY : A C A S E F O R N E O 4 J ? Anuj Mathur and Dhaval Dalal {amathur, ddalal}@equalexperts.com 1
  • 2. What is Apiary? 3 Typical Usecases 3 1) Modeling a Simple Organization (Phase 1) 3 2) Modeling a Group (Phase 2) 3 Screen Renditions and Flows 4 Analysis Model (Phase 1) 5 1) Neo4J Domain Model 5 2) SQL Domain Model 6 Queries 6 1) Gather Subordinates names till a visibility level from a current level 7 2) Gather Subordinates Aggregate data from current level 9 3) Gather Overall Aggregate Data for Dashboard 12 Indexes 12 Databases Compared 12 Measurement Tools and Codebase 12 Query Execution and Charts 13 Our Observations 18 Few Concluding Thoughts 20 Asking Questions For a Graph Solution 21 Acknowledgements 21 2
  • 3. What is Apiary? The application aims at graphically representing an organization that contains different groups/units of employees. Metaphorically, a group/unit can be viewed as a beehive and an employee as a bee and hence the whole organization becomes an apiary - hence the application name. Typical Usecases 1) Modeling a Simple Organization (Phase 1) Employees belong to single or multiple functional units lead by heads within an organization. An employee can have different types of reporting, direct reporting to his/her manager (can be conceptualized as a thick line relationship - in the figure below the direct lines coming out of a node are colored as grey) and multiple indirect reporting to different department heads/managers (can be conceptualized as a thin/dotted line relationship - in the figure below as green and red colored lines). For example, in a IT Services company or a captive center, Adam may be reporting directly to Jack Ass, but for his project work, he would be functionally reporting to Jennifer and Harry as they are responsible for Cash Management and Corporate Banking. As the number of employees increase, so would the relationships and cross-functional reporting, eventually developing into a complex model that is non-hierarchical. 2) Modeling a Group (Phase 2) Business Groups have many companies serving many sectors. For instance, The Tata Group, BT Group, Reliance Group, BNP Paribas Group etc... would be serving many sectors and have multiple companies in each sector and its sub-sector. 3
  • 4. Once we do the above, we plan to add dynamic part to this graph, that is, the social relationships in an organization, to understand - who is talking to whom the most, are the top- level folks reaching out to the ones below and till what level is that effective, recommend people for a project that requires certain set of skills etc, etc... and visualize them for mining interesting organizational patterns. Screen Renditions and Flows We intend to render a UI that is similar to the Mindmap shown above, with ability to navigate, expand etc... from current node to other nodes. 1. Login causes user to be fetched (an index hit) from Neo4j and render his/her subordinates with count of people reporting to him/her until a pre-defined visibility level. 2. Ability to navigate up/down the levels. 3. Ability to expand subordinates. 4. Ability to see hierarchy lineage. 5. Dashboard shows count of people at all levels as a summary data. 4
  • 5. Analysis Model (Phase 1) 1) Neo4J Domain Model Node Properties Person name type level Relationships Properties DIRECTLY_MANAGES N/A Note: For the purpose of establishing the case, we have modeled minimal relationships and not all the relationships that would have been in the final application. Below is a list of relationships that are yet pending to be modeled, but are not relevant for the purposes of taking performance measurements. Relationships Properties INDIRECTLY_MANAGES N/A DIRECTLY_REPORTS_TO N/A INDIRECTLY_REPORTS_TO N/A MEETS frequency, where PREFERS_COMPANY_OF N/A 5
  • 6. 2) SQL Domain Model Queries Above screen-flow and modeling for organizations and groups use cases requires us to run queries that do the following: 1) Gather Subordinates names till a visibility level from current level. 2) Gather Subordinates Aggregate Data from current level. 3) Gather Overall Aggregate Data for Dashboard We have run these queries at different levels for various volumes of person-data ranging from 1000 people (needed by the organization use case) to 1 million people (needed by the Group use case) in steps of multiples of 10, i.e 1K, 10K, 100K, 1M. We have additionally taken readings for 2M and 3M organization at level 8. Note: For Neo4j, we have restricted ourselves to Parametric Cypher queries (and not included Traversal API) by executing them and noting the execution time programmatically. This, we believe is a fair apple-to-apple comparison because just as what SQL is to RDBMS, Cypher is to Neo4j. Also, we understand that the Traversal API is likely the fastest at the moment; however, for the longer term as Neo4j intends to further the Cypher query planning and optimization, we think its prudent to stick to it. 6
  • 7. 1) Gather Subordinates names till a visibility level from a current level CURRENT LEVEL We have varied total hierarchy levels in the organization from 3 to 8 for different volumes of people. Optimized generic Cypher query is: start n = node:Person(name = "fName lName") match p = n-[:DIRECTLY_MANAGES*1..visibilityLevel]->m return nodes(p) Where visibility level is a number that indicates the number of levels to show. For SQL we have to recursively add joins for each level, a generic SQL can be written as: SELECT manager.pid AS Bigboss, manager.directly_manages AS Subordinate, L1Reportees.directly_manages AS Reportee1, L2Reportees.directly_manages AS Reportee2, ... FROM person_reportee manager LEFT JOIN person_reportee L1Reportees ON manager.directly_manages = L1Reportees.pid LEFT JOIN person_reportee L2Reportees ON L1Reportees.directly_manages = L2Reportees.pid ... ... WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") Visibility Level Database Queries 2 Neo4j start n = node:Person(name = "fName lName") match n-[:DIRECTLY_MANAGES*1..2]->m return nodes(p) 2 MySQL/ MSSQL SELECT manager.pid AS Bigboss, manager.directly_manages AS Subordinate, L1Reportees.directly_manages AS Reportee FROM person_reportee manager LEFT JOIN person_reportee L1Reportees ON manager.directly_manages = L1Reportees.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 7 Names
  • 8. Visibility Level Database Queries 3 Neo4j start n = node:Person(name = "fName lName") match n-[:DIRECTLY_MANAGES*1..3]->m return nodes(p) 3 MySQL/ MSSQL SELECT manager.pid AS Bigboss, manager.directly_manages AS Subordinate, L1Reportees.directly_manages AS Reportee1, L2Reportees.directly_manages AS Reportee2 FROM person_reportee manager LEFT JOIN person_reportee L1Reportees ON manager.directly_manages = L1Reportees.pid LEFT JOIN person_reportee L2Reportees ON L1Reportees.directly_manages = L2Reportees.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 4 Neo4j start n = node:Person(name = "fName lName") match n-[:DIRECTLY_MANAGES*1..4]->m return nodes(p) 4 MySQL/ MSSQL SELECT manager.pid AS Bigboss, manager.directly_manages AS Subordinate, L1Reportees.directly_manages AS Reportee1, L2Reportees.directly_manages AS Reportee2, L3Reportees.directly_manages AS Reportee3 FROM person_reportee manager LEFT JOIN person_reportee L1Reportees ON manager.directly_manages = L1Reportees.pid LEFT JOIN person_reportee L2Reportees ON L1Reportees.directly_manages = L2Reportees.pid LEFT JOIN person_reportee L3Reportees ON L2Reportees.directly_manages = L3Reportees.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") ... ... ... 7 Neo4j start n = node:Person(name = "fName lName") match n-[:DIRECTLY_MANAGES*1..7]->m return nodes(p) 7 MySQL/ MSSQL SELECT manager.pid AS Bigboss, manager.directly_manages AS Subordinate, L1Reportees.directly_manages AS Reportee1, L2Reportees.directly_manages AS Reportee2, L3Reportees.directly_manages AS Reportee3, ..., L6Reportees.directly_manages AS Reportee6, L7Reportees.directly_manages AS Reportee7 FROM person_reportee manager LEFT JOIN person_reportee L1Reportees ON manager.directly_manages = L1Reportees.pid LEFT JOIN person_reportee L2Reportees ON L1Reportees.directly_manages = L2Reportees.pid LEFT JOIN person_reportee L3Reportees ON L2Reportees.directly_manages = L3Reportees.pid ... LEFT JOIN person_reportee L7Reportees ON L6Reportees.directly_manages = L7Reportees.pid WHERE manager.pid = (SELECT id FROM person WHERE name = "fName lName") 8
  • 9. 2) Gather Subordinates Aggregate data from current level We have varied total hierarchy levels in the organization from 3 to 8 for different volumes of people. Further, the optimized Generic Cypher query is: start n = node:Person(name = "fName lName") match n-[:DIRECTLY_MANAGES*0..(totalLevels - n.level)]->m-[:DIRECTLY_MANAGES*1..(totalLevels - n.level)]->o where n.level + visibilityLevel >= m.level return m.name as Subordinate, count(o) as Total For SQL aggregate query, we not only have to recursively add joins but also perform inner unions for each level till the last level to obtain the aggregate data for that level. Once we obtain the data for a particular level (per person), we perform outer unions to get the final result for all the levels. This results in a very big SQL query. Here is a sample query that returns aggregate data for 3 levels below the current level. Say, we have current level as 5 with a total of 8 levels, this means I need to aggregate data for each person starting below level 5 until 8 as well as for the person in question (in the where clause). (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 9 Aggregate Data Current Level INNER UNIONS
  • 10. 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 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 10 OUTER UNIONS
  • 11. (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") ) If the current level is 1 and total levels are 8, we have these queries run into 500+ lines (and hence we have not shown all of them here). Also, hand-creating them and maintaining them is a painstaking task. Though programatic creation of these queries is possible using nested recursion, it would also be difficult to produce and verify their correctness, we simply have to trust the recursion. In all the above queries for both inner and outer union queries, the maximum number of joins vary as: max no. of joins = total level - current level - 1 For Neo4j, it is worth noting that the queries do not exhibit such a bloat as levels increase, instead they remain constant for all levels and at the same time Cypher is more expressive and declarative in nature. For taking measurements, we have assumed full visibility and the person in question is always at top level (n.level = 1) and viewing down the whole hierarchy. However, in the actual application, visibility level would change at runtime. We simply vary the visibility level in the where clause. Please note that Visibility level is to filter out the data to be shown to the user and has no bearing on the aggregate data being calculated. Visibility Level Total Levels Queries 2 3 start n = node:Person(name = "fName lName") match n-[:DIRECTLY_MANAGES*0..2]->m-[:DIRECTLY_MANAGES*1..2]->o where n.level + 2 >= m.level return m.name as Subordinate, count(o) as Total 3 4 start n = node:Person(name = "fName lName") match n-[:DIRECTLY_MANAGES*0..3]->m-[:DIRECTLY_MANAGES*1..3]->o where n.level + 3 >= m.level return m.name as Subordinate, count(o) as Total 4 5 start n = node:Person(name = "fName lName") match n-[:DIRECTLY_MANAGES*0..4]->m-[:DIRECTLY_MANAGES*1..4]->o where n.level + 4 >= m.level return m.name as Subordinate, count(o) as Total ... ... 7 8 start n = node:Person(name = "fName lName") match n-[:DIRECTLY_MANAGES*0..7]->m-[:DIRECTLY_MANAGES*1..7]->o where n.level + 7 >= m.level return m.name as Subordinate, count(o) as Total 11
  • 12. 3) Gather Overall Aggregate Data for Dashboard We need to show distribution of people at various levels and For this to work we need the following queries. Neo4J MySQL/MSSQL start n = node(*) return n.level as Level, count(n) as Total order by Level SELECT level, count(id) FROM person GROUP BY level Indexes All the above queries were run with indexing enabled on the join columns for the MySQL and MS-SQL databases and for Neo4j, a Person Index bearing the name field. Databases Compared All the Tests were performed on commodity grade laptop - Lenovo T430 with 4GB RAM, running 64-bit Win7 on Intel i5 2.5Ghz with Java 1.7 update 7 was used. Following databases were used to take measurements • MySQL v5.6.12 • MS-SQL Server 2008 R2 • Neo4J v1.9 (Advanced) Measurement Tools and Codebase • For MS-SQL we have used the MS-SQL profiler. • For MySQL we have noted the duration time (excluding the fetch time) from MySQL Workbench. • For Neo4j, we ran the parametric queries programmatically (in embedded mode) and measured the time. We have not used Neo4j shell to take measurements as its intended to be an Ops tool (and not a transactional tool). Our code and scaffolding programs that we used are available on - https://github.com/ EqualExperts/Apiary-Neo4j-RDBMS-Comparison 12
  • 13. Query Execution and Charts Further, we have ensured the following across all the 3 databases: 1. Consistent data distribution for each level-cases for all the volumes across all the databases. 2. Functionally equivalent queries for the 3 databases returning same result set. 3. Cold-cache before each query execution for all the databases and re-executed the query to make the cache warm. We have measured execution times for both, Cold and Warm cache. 4. Databases and measurement tools running on same machine to avoid network transport times being factored in. 5. We have done an out-of-box comparison for the all the databases without tweaking any memory settings on any of them, apart from giving 3GB to the overall java process running embedded Neo4j. 6. We have performed measurements against worst possible queries scenario being executed by the application, that is, say if the top-boss logs in and wants to see all the levels (max. visibility level), his/her query will take the most time. 13
  • 14. Volume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People OrgVolume 1000 People Org MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j Lvls Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm 3 78 0 109 0 93 0 226 0 49 0 6 0 679 164 3329 760 1538 269 4 94 15 94 16 78 16 114 82 133 61 35 0 670 178 2878 851 892 183 5 109 0 62 15 47 0 212 43 138 13 59 0 813 166 2848 763 1533 221 6 125 0 156 62 63 0 118 78 278 72 26 0 699 171 3607 1124 1387 319 7 109 16 94 47 62 0 151 90 420 71 13 0 728 177 3123 929 1457 357 8 110 0 141 31 78 0 231 46 621 84 18 0 721 164 2879 1040 906 207 0 50 100 150 200 3 4 5 6 7 8 164 178 166 171 177 164 1000 People - Gather Subordinate Names QueryExecutionTime(ms) Levels 375 750 1125 1500 3 4 5 6 7 8 760 851 763 1124 929 1040 1000 People - Gather Subordinate Aggregate QueryExecutionTime(ms) Levels -100 0 100 200 300 400 3 4 5 6 7 8 269 183 221 319 357 207 1000 People - Overall Aggregate QueryExecutionTime(ms) Levels 14 Neo4jMSSQLMySQL Warm Cache Plots
  • 15. Volume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People OrgVolume 10K People Org MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j Lvls Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm 3 109 0 140 31 109 15 172 107 294 181 103 1 730 176 6129 898 2292 613 4 141 16 343 234 109 0 229 116 1267 156 102 1 776 178 5865 952 2073 455 5 94 15 640 561 94 15 270 164 403 188 327 1 727 184 5718 1194 2119 328 6 94 0 998 905 78 0 401 123 650 254 38 3 742 221 5692 1458 3182 453 7 93 0 1482 1326 78 0 303 177 870 374 68 1 705 185 5710 1188 1990 456 8 93 0 2745 2683 78 0 387 163 1146 573 71 1 713 171 6002 1271 1976 36 0 75 150 225 300 3 4 5 6 7 8 176 178 184 221 185 171 10K People - Gather Subordinate Names QueryExecutionTime(ms) Levels 0 750 1500 2250 3000 3 4 5 6 7 8 898 952 1194 1458 1188 1271 10K People - Gather Subordinate Aggregate QueryExecutionTime(ms) Levels -175 0 175 350 525 700 3 4 5 6 7 8 613 455 328 453 456 36 10K People - Overall Aggregate QueryExecutionTime(ms) Levels 15 Warm Cache Plots Neo4jMSSQLMySQL
  • 16. Volume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People OrgVolume 100K People Org MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j Lvls Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm Cold Warm 3 124 0 1107 998 140 31 617 537 1201 608 168 12 736 166 13340 4404 5157 566 4 109 0 2231 2106 140 31 1224 650 1263 667 157 19 812 167 14686 4697 5396 594 5 124 16 5616 5460 125 31 1377 757 1830 913 194 12 713 167 15351 5516 5118 497 6 109 0 9734 9625 140 31 1006 811 3002 1274 159 12 756 175 17056 6145 4736 573 7 93 0 16271 16100 156 31 1125 784 2947 1566 158 14 700 177 17821 6915 4592 592 8 109 0 25334 25287 125 32 1285 951 4256 2171 510 14 691 183 19881 8304 4731 557 0 250 500 750 1000 3 4 5 6 7 8 166 167 167 175 177 183 100K People - Gather Subordinate Names QueryExecutionTime(ms) Levels 0 7500 15000 22500 30000 3 4 5 6 7 8 4404 4697 5516 6145 6915 8304 100K People - Gather Subordinate Aggregate QueryExecutionTime(ms) Levels 0 150 300 450 600 3 4 5 6 7 8 566 594 497 573 592 557 100K People - Overall Aggregate QueryExecutionTime(ms) Levels 16 Neo4JMSSQLMySQL Warm Cache Plots
  • 17. Volume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People OrgVolume 1M People Org MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j Lvls Gather Subordin ate Names Gather Subordin ate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinat e Names Gather Subordinat e Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Cold War m Cold Warm Cold War m Cold Warm Cold Warm Cold War m Cold War m Cold Warm Cold War m 3 109 16 10998 10171 452 281 6337 4973 22703 20037 798 116 718 176 109432 44265 371902109 4 172 0 20467 19734 515 280 5677 5280 14888 7813 1245 114 740 182 115011 106260 360332194 5 172 16 60606 60653 531 281 7111 5959 12047 8293 1211 140 721 184 169123 77528 340682248 6 141 0 92789 92867 483 265 7278 6266 15226 7076 1251 140 709 173 255813 124810 330152107 7 218 0 160151 158793 499 280 11890 6724 15226 7076 1330 111 700 177 171607 125152 328131960 8 265 0 281301 280630 577 265 11300 8777 20560 14564 976 121 835 153 136432 73121 236731912 Warm Cache Plots -2250 0 2250 4500 6750 9000 3 4 5 6 7 8 176 182 184 173 177 153 1M People - Gather Subordinate Names QueryExecutionTime(ms) Levels 0 75000 150000 225000 300000 3 4 5 6 7 8 44265 106260 77528 124810125152 73121 1M People - Gather Subordinate Aggregate QueryExecutionTime(ms) Levels 0 750 1500 2250 3000 3 4 5 6 7 8 2109 2194 2248 2107 1960 1912 1M People - Overall Aggregate QueryExecutionTime(ms) Levels 17 Neo4JMSSQLMySQL
  • 18. For 2M org and 3M org we have taken measurements just for Level 8. Volume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People OrgVolume 2M People Org MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j Lvl Gather Subordina te Names Gather Subordina te Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordina te Names Gather Subordina te Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Cold War m Cold Warm Cold War m Cold Warm Cold Warm Cold War m Cold War m Cold Warm Cold War m 8 281 0 683425 690664 1061 609 26349 21494 40561 30860 1676 203 822 149 437628 1423963 49019 4931 Volume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People OrgVolume 3M People Org MySQLMySQLMySQLMySQLMySQLMySQL MS-SQLMS-SQLMS-SQLMS-SQLMS-SQLMS-SQL Neo4jNeo4jNeo4jNeo4jNeo4jNeo4j Lvl Gather Subordi nate Names Gather Subordi nate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Gather Subordinate Names Gather Subordinate Names Gather Subordinate Aggregate Gather Subordinate Aggregate Overall Aggregate Overall Aggregate Cold Wa rm Cold Warm Cold Warm Cold Warm Cold Warm Cold War m Cold War m Cold Warm Cold War m 8 234 0 1089355 1093457 1779 1030 44495 31326 84092 75980 2387 282 744 148 1252647 578434 69751 4682 Our Observations 1. For Gather Subordinate Names query running in Neo4j, we have observed significant improvements in query execution times upon running different queries on the same dataset when the cache is warm and hot typically executes within 1-5 ms. However, MS- SQL does not seem to perform well (as we return large data-set), warm cache results are marginally better than cold cache results. Looks like, the join explosion seems to have out- grown the cache size, resulting in page faults. MySQL has out-performed here1. 2. For Gather Subordinate Aggregate queries, Neo4j’s performance is at par or in many cases even better than MySQL. For MySQL, data suggests an exponential increase in execution times with increasing levels, while MS-SQL seems to be still coping with this quite nicely and performing better than all. But all in all, the query execution times for all the databases are quite high as the volumes grow. This demands a different approach to gather such data. 3. For Overall Aggregate Query, it is clear that Neo4j takes quite some time as global graph queries (node(*)) become expensive as the volume of data increases as they involve all the nodes, similar to a table scan in RDBMS’. However, RDMBS’ are able to cope up quite nicely for such queries, esp. involving aggregates. This is inline with Neo4j recommendation that - it is not meant to do aggregation though it supports it, because its primarily meant for graph traversals. 18 1 read this in light of point #4 of this section
  • 19. 4. One of the important observations that we have made is that LEFT join in MySQL is faster as compared to INNER join (contrary to our thinking - LEFT join would be more expensive as compared to INNER). As all the above queries are functionally equivalent, it would not be fair to use INNER join for taking measurements. However, we could not resist the curiosity to check out INNER join performance. Executing the above queries using inner join on 1M (all levels), 2M and 3M (for level 8), we found a significant increase in query execution time for MySQL. Below are the results of removing the LEFT join from the Gather Subordinate Names query for 1M, 2M Level 8, and 3M Level 8. What does this mean to us or any application? Say, if the situation demanded that we change the LEFT join to INNER join, suddenly we would find ourselves in a bad position performance wise. Whereas its important to note that Neo4j’s performance is almost constant time execution for all data sizes. For the above measurements, we did not factor-in INDIRECTLY_MANAGES relationship, however, taken into consideration, it would translate to additional join for SQL, thus bloating the already bloated query and increasing complexity. This will further degrade the performance as join selection would now take more time. 19 -17500 0 17500 35000 52500 70000 1M-3 1M-5 1M-7 2M-8 LEFT Vs INNER Vs Neo4j QueryExecutionTime(ms) Org Size-Levels MySQL - LEFT Join MySQL - INNER Neo4j MySQLMySQLMySQLMySQL Neo4jNeo4j Org Size- Levels LEFT JOINLEFT JOIN INNER JOININNER JOIN cold warm cold warm cold warm 1M-3 109 16 156 16 718 176 1M-4 172 0 140 0 740 182 1M-5 172 0 1154 874 721 184 1M-6 141 0 531 312 709 173 1M-7 218 0 3760 3432 700 177 1M-8 265 0 17145 15896 835 153 2M-8 281 0 40061 36301 822 149 3M-8 234 0 60466 61776 744 148 Warm Cache Plots
  • 20. Few Concluding Thoughts 1. Performance of Neo4j queries is best when all the nodes and relationships are in object cache. For that we need to make sure that we can accommodate the complete graph in memory (esp. for the global graph queries) by throwing a good amount of memory to it. This characteristic without doubt, applies to all other databases equally, whether its RDBMS or NoSQL stores. 2. In order to take advantage of the cache, upon application start-up, we would make the cache hot by issuing queries that bring in almost all the graph into memory, so that the queries that return the sub-graph or the entire graph would be performant. This way the first request serviced by the application is also responsive. If the first request is not that critical, then one can fill the cache lazily. 3. It is better to run Neo4j in embedded mode to get max performance and use parameteric Cypher queries that can take advantage of paying the parsing cost once and caching the execution plan. Though in server mode the above is still valid, we would incur additional data transfer time. An important point that Jim brought to our notice is - in embedded mode the application itself can produce a lot of garbage thus keeping the GC busy (and making the app unresponsive), where as in the server mode, Neo4j takes care of not aggravating JVM in such a way. 4. We intend to model the application using Neo4j as not only the results for it look good when coping with scale, but the kind of flexibility that we would get when adding additional properties to a node/relationship or adding a different type of node/relationship all together, thus giving Apiary the ability to cope with the evolving needs of the organization at different times. With RDBMS’, it would be a pain to manage these varietal data needs. 5. We do not rule out the possibility of using a non-graph database alongside Neo4j to model parts of the application best suited for each, esp. for Gather Subordinate Aggregate and Overall Aggregate queries as the readings suggest. Again, we need to carefully plan this part due to its OLAPish nature. One thought that crosses the mind is to use a separate thread that runs on the data, calculating the aggregates after CUD operations are performed. This can then be made available as a service for the application to consume. Second thought is to use a separate mirrored database from where this need can be fulfilled. In either cases, the aggregate data available to the application would be latent. As Jim points out Polyglot persistence is already a new normal, and many implementations use Neo4j alongside non- graph stores like RDBMS or NoSQL. 20
  • 21. Asking Questions For a Graph Solution Based on the experiments above, in order to determine whether Neo4j applies to a situation, we have come up with few asking questions as a generic guideline to ascertain whether graph solution would deem fit: 1. Is your data connected? 2. Or does your domain naturally gravitate towards lots of joins leading to explosion with large data? a. For example: Making Recommendations 3. Or are you finding yourself writing complex SQL queries? a. For example: recursive joins or large number of joins. If the answers to any of the above questions is yes, then its potentially a case for a graph database like Neo4j. Acknowledgements We would like to thank Dr. Jim Webber from the Neo4j team for going through the report carefully and giving us important feedback along the way. 21