SlideShare a Scribd company logo
Scala SWAT
Artur Bańkowski
artur@evojam.com
@abankowski
TACKLING
A 1 BILLION MEMBER
SOCIAL NETWORK
This is a story about
our participation in
one of our customer’s
project
1
Previous Experience
~10 millions records
~60 millions documents
~60 million vertices graph (non-commercial)
Datasets I have previously worked on were much smaller!
This time we were about to deal with a much bigger social network, which
can easily be represented as a graph. We were going to join the team…
Graph structure
User
User
User
Foo Inc.
User
User
User
worked
worked
knows
knows
knows
knows
Bar Ltd.
worked
knows
2 types of vertices
2 types of relations
Companies and Users
User
User
User
Foo Inc.
User
User
User
worked
worked
knows
knows
knows
knows
The concept: provide graph subset
Bar Ltd.
worked
Foo Inc.
User
User
User
User
worked
worked
knows
knows
knows
knows
knows
Fulltext searchable,
sortable, filterable
result for Foo Inc.
1 billion challenge
835,272,759
835,272,759 vertices
751,857,081 users
83,415,678 companies
6,956,990,209 relations
Subsets from thousands to millions users
When we finally put
our hands on the data,
we have realized that
datasize is smaller
than expected
What more have we
found?
Existing app workflow
One Engineer-Evening
Multiple custom scripts
JSON files
extract subset
eg: 3m profiles
750m profiles
data duplication
only manually selected
60m incl. duplicates
Manual process,
takes few days from
user perspective
This was already used by final customers
PoC - The Goal
Handle 1 billion profiles automatically
Our primary goal
PoC - Definition of done
• Graph traversable on demand
• First results available under 1 minute
• Entire subset ready in few minutes
REST API with search
PoC - Concept
Graph DB
Document
DB
API
6,956,990,209 relations
751,857,081 profiles
Whole dataset
stored in two
engines
All relations
All profiles
Why graph DB?
•Fast graph traversal
•Easily extendable with new relations and vertices
•Convenient algorithm description
PoC - Flow
Graph DB
Document
DB
API
1. Generate subset
2. Tag documents
3. Perform search with
tag as a filter
Generate subset from
graph with users and
companies relations
Tag documents
with unique id in
database with all
profiles
Search with
unique id as a
primary filter
Weapon of choice
? ?Graph DB
Document
DB
API
Scala and Play were
natural choice for API app
Some research
required for
databases
First Steps: Extraction
Extract anonymized
profiles, companies
and relations
Cleanup data, sort
and generate input
files
few days to pull, streaming
with Akka and Slick
To make a research we had to put our hands on the real data
First Steps: Pushing forward
Push profiles for
searching purposes
Push vertices and
relations for traversal
Document
DB
Graph DB
two tools,
highly dependent on db engines
Fulltext Searchable Document DB
• Mature
• Horizontally scalable
• Fast indexing (~3k documents per second on the single node)
• Well documented
• With scala libraries:
• https://github.com/sksamuel/elastic4s
• https://github.com/evojam/play-elastic4s
We already had significant experience with scaling Elastic Search
for 80 millions
Which graph DB?
Considered three engines,
OrientDB and Neo4j in
community editions
Goodbye Titan
• Performed well in ~60M
tests
• fast traversing
• Development has been put
on hold?
• No batch insertion, slow initial
load
• Stalled writes after 200
millions of vertices with
relations
• Horror stories in the internet
Neo4j FTW
https://github.com/AnormCypher/AnormCypher
• Fast
• Already known
• Convenient in Scala with
AnormCypher
• Offline bulk loading
• Result streaming
Weapon of choice
Graph DB
Document
DB
API
Final stack :)
Final Setup on AWS
Neo4j
API
hr-1 hr-2
ES Cluster
i2.xlarge
4vCPU 30.5GB
i2.2xlarge
8vCPU 61GB
m4.large
2vCPU 8GB
• 2 nodes
• 2 indexes
• 10 shards each index
• 0 replicas
Step #1 - Bulk loading into Neo4j
Importing the contents of these files into data/graph.db.
[…]
IMPORT DONE in 3h 24m 58s 140ms. Imported:
 835273352 nodes
 6956990209 relationships
 0 properties
Importing the contents of these files into data/graph.db.
[…]
IMPORT DONE in 3h 24m 58s 140ms. Imported:
 835273352 nodes
 6956990209 relationships
 0 properties
Importing the contents of these files into data/graph.db.
[…]
IMPORT DONE in 3h 24m 58s 140ms. Imported:
 835273352 nodes
 6956990209 relationships
 0 properties
Importing the contents of these files into data/graph.db.
[…]
IMPORT DONE in 3h 24m 58s 140ms. Imported:
 835273352 nodes
 6956990209 relationships
 0 properties
It took 12 hours on 2 times smaller Amazon instance
Step #2 - Bulk loading into ES
grouped insert
1. Create Source from CSV file, frame by n
2. Decode id from ByteString, generate user json
3. Group by the bulk size (eg.: 4500)
4. Throttle
5. Execute bulk insert into the ElasticSearch
throttle
Akka advantage:
CPU utilization,
parallel data
enrichment,
human readable
Step #2 - Bulk loading into ES
FileIO.fromFile(new File(sourceOfUserIds))

.via(
Framing.delimiter(ByteString('n'),
maximumFrameLength = 1024,
allowTruncation = false))

.mapAsyncUnordered(16)(prepareUserJson)

.grouped(4500)

.throttle(

elements = 2,

per = 2 seconds,

maximumBurst = 2,

mode = ThrottleMode.Shaping)

.mapAsyncUnordered(2)(executeBulkInsert)

.runWith(Sink.ignore)
Flow description
with Akka
Streams
User
User
User
Foo Inc.
User
User
User
worked
worked
knows
knows
knows
knows
Step #3 - Tagging
Bar Ltd.
worked
Foo Inc.
User
User
User
User
worked
worked
knows
knows
knows
knows
knows
MATCH (c:Company)-[:worked]-(employees:User)-[:knows]-(aquitance:User)

WHERE ID(c)={foo-inc-id} AND NOT (aquitance)-[:worked]-(c)

RETURN DISTINCT ID(aquitance)
Neo4j traversal query in CYPHER
Akka Streams to the rescue
val idEnum : Enumeratee[CypherRow] = _
val src =
Source.fromPublisher(Streams.enumeratorToPublisher(idEnum))

.map(_.data.head.asInstanceOf[BigDecimal].toInt)

.via(new TimeoutOnEmptyBuffer())

.map(UserId(_))
.mapAsyncUnordered(parallelism = 1)(id =>
dao.tagProfiles(id, companyId))
Readable flow
Buffering to protect Neo4j when indexing is too slow
Timeout due to the bug in the underlying implementation
Bottleneck
1.5 hour for 3 million subset, that’s too long!
Bulk update with AkkaStream tuning
src
.grouped(20000)

.throttle(
elements = 2,
per = 6 second,
maximumBurst = 2,
mode = ThrottleMode.Shaping)
.mapAsyncUnordered(parallelism = 1)(ids =>
dao.bulkTag(ids, ...))
Bulk tagging,
few lines
Tagging Foo-Company
~14 seconds until first batch is tagged
~7 minutes 11 seconds until all tagged
reference implementation - few hours
2,222,840 profiles matching criteria
Sample subset :)
Step #5 - Search
Neo4j
API
hr-1 hr-2
ES Cluster
i2.xlarge
4vCPU 30.5GBi2.2xlarge
8vCPU 61GB
m4.large
2vCPU 8GB
With data ready in ES
search implementation was
pretty straightforward
Step #5 - Search benchmark
Fulltext search on 2 millions subset
GET /users?company=foo-company&phrase=John
2000 phrases for the benchmarking
Response JSON with 50 profiles
Searching in 750 millions database
Phrases based on
real names and
surnames, used
during profiles
enrichment
Random
requests ordering
Step #5 - Search under siege
Response time ~ 0.14s50 concurrent users
constant
latency
constant
search rate
Objective achieved
search response time from API ~0.14s
14 seconds until first batch is tagged
7 minutes until 2 millions ready
Summary
reference implementation PoC
manual automatic
few days 14 seconds
few days 7 minutes
~40 millions ~750 millions
no analytics GraphX ready
Tool ready for data scientists
W can implement core traversal modifications almost instantly
Summary
https://snap.stanford.edu/data/
http://neo4j.com/
https://playframework.com/
http://doc.akka.io/docs/akka-stream-and-http-experimental/2.0/scala/stream-index.html
Try at home! Sample graphs
ready to use
https://www.elastic.co/
Artur Bańkowski
artur@evojam.com
@abankowski

More Related Content

PDF
101 mistakes FINN.no has made with Kafka (Baksida meetup)
Henning Spjelkavik
 
PDF
Akka Streams in Action @ ScalaDays Berlin 2016
Konrad Malawski
 
PPTX
Developing Real-Time Data Pipelines with Apache Kafka
Joe Stein
 
PDF
2000 lines of java or 50 lines of sql the choice is yours - Lukas Eder
JAXLondon_Conference
 
PDF
初探 OpenTelemetry - 蒐集遙測數據的新標準
Marcus Tung
 
PDF
Developing Real-Time Data Pipelines with Apache Kafka
Joe Stein
 
PPTX
Testing Big Data in AWS - Sept 2021
Michael98364
 
PDF
How Spotify scales Apache Storm Pipelines
Kinshuk Mishra
 
101 mistakes FINN.no has made with Kafka (Baksida meetup)
Henning Spjelkavik
 
Akka Streams in Action @ ScalaDays Berlin 2016
Konrad Malawski
 
Developing Real-Time Data Pipelines with Apache Kafka
Joe Stein
 
2000 lines of java or 50 lines of sql the choice is yours - Lukas Eder
JAXLondon_Conference
 
初探 OpenTelemetry - 蒐集遙測數據的新標準
Marcus Tung
 
Developing Real-Time Data Pipelines with Apache Kafka
Joe Stein
 
Testing Big Data in AWS - Sept 2021
Michael98364
 
How Spotify scales Apache Storm Pipelines
Kinshuk Mishra
 

What's hot (20)

PDF
[Japanese] How Reactive Streams and Akka Streams change the JVM Ecosystem @ R...
Konrad Malawski
 
PDF
Kafka and Storm - event processing in realtime
Guido Schmutz
 
PDF
Managing your Black Friday Logs NDC Oslo
David Pilato
 
PDF
Testing at Stream-Scale
All Things Open
 
PDF
Managing your black friday logs Voxxed Luxembourg
David Pilato
 
PDF
Spark streaming + kafka 0.10
Joan Viladrosa Riera
 
PDF
End to End Akka Streams / Reactive Streams - from Business to Socket
Konrad Malawski
 
PDF
Genomic Computation at Scale with Serverless, StackStorm and Docker Swarm
Dmitri Zimine
 
PPTX
Real-Time Big Data at In-Memory Speed, Using Storm
Nati Shalom
 
PDF
[Spark Summit EU 2017] Apache spark streaming + kafka 0.10 an integration story
Joan Viladrosa Riera
 
PPTX
Serverless on OpenStack with Docker Swarm, Mistral, and StackStorm
Dmitri Zimine
 
PDF
Spark summit-east-dowling-feb2017-full
Jim Dowling
 
PDF
Apache Spark v3.0.0
Jean-Georges Perrin
 
PPTX
Have your cake and eat it too
Gwen (Chen) Shapira
 
PPTX
Introduction to Storm
Eugene Dvorkin
 
PPT
Distributed and Fault Tolerant Realtime Computation with Apache Storm, Apache...
Folio3 Software
 
PDF
Tutorial Kafka-Storm
Universidad de Santiago de Chile
 
PPTX
Real-time streaming and data pipelines with Apache Kafka
Joe Stein
 
PDF
How Reactive Streams & Akka Streams change the JVM Ecosystem
Konrad Malawski
 
PDF
Putting the 'I' in IoT - Building Digital Twins with Akka Microservices
Lightbend
 
[Japanese] How Reactive Streams and Akka Streams change the JVM Ecosystem @ R...
Konrad Malawski
 
Kafka and Storm - event processing in realtime
Guido Schmutz
 
Managing your Black Friday Logs NDC Oslo
David Pilato
 
Testing at Stream-Scale
All Things Open
 
Managing your black friday logs Voxxed Luxembourg
David Pilato
 
Spark streaming + kafka 0.10
Joan Viladrosa Riera
 
End to End Akka Streams / Reactive Streams - from Business to Socket
Konrad Malawski
 
Genomic Computation at Scale with Serverless, StackStorm and Docker Swarm
Dmitri Zimine
 
Real-Time Big Data at In-Memory Speed, Using Storm
Nati Shalom
 
[Spark Summit EU 2017] Apache spark streaming + kafka 0.10 an integration story
Joan Viladrosa Riera
 
Serverless on OpenStack with Docker Swarm, Mistral, and StackStorm
Dmitri Zimine
 
Spark summit-east-dowling-feb2017-full
Jim Dowling
 
Apache Spark v3.0.0
Jean-Georges Perrin
 
Have your cake and eat it too
Gwen (Chen) Shapira
 
Introduction to Storm
Eugene Dvorkin
 
Distributed and Fault Tolerant Realtime Computation with Apache Storm, Apache...
Folio3 Software
 
Tutorial Kafka-Storm
Universidad de Santiago de Chile
 
Real-time streaming and data pipelines with Apache Kafka
Joe Stein
 
How Reactive Streams & Akka Streams change the JVM Ecosystem
Konrad Malawski
 
Putting the 'I' in IoT - Building Digital Twins with Akka Microservices
Lightbend
 
Ad

Viewers also liked (10)

PDF
OrientDB & Lucene
wolf4ood
 
PDF
Aws cost optimization: lessons learned, strategies, tips and tools
Felipe
 
PDF
Cloudwatch: Monitoring your Services with Metrics and Alarms
Felipe
 
PDF
Cloudwatch: Monitoring your AWS services with Metrics and Alarms
Felipe
 
PPT
Benchmarking graph databases on the problem of community detection
Symeon Papadopoulos
 
PDF
Elasticsearch for Data Analytics
Felipe
 
PDF
Online Machine Learning: introduction and examples
Felipe
 
PDF
Scala Days NYC 2016
Martin Odersky
 
PDF
Reactive integrations with Akka Streams
Konrad Malawski
 
PPTX
OrientDB vs Neo4j - Comparison of query/speed/functionality
Curtis Mosters
 
OrientDB & Lucene
wolf4ood
 
Aws cost optimization: lessons learned, strategies, tips and tools
Felipe
 
Cloudwatch: Monitoring your Services with Metrics and Alarms
Felipe
 
Cloudwatch: Monitoring your AWS services with Metrics and Alarms
Felipe
 
Benchmarking graph databases on the problem of community detection
Symeon Papadopoulos
 
Elasticsearch for Data Analytics
Felipe
 
Online Machine Learning: introduction and examples
Felipe
 
Scala Days NYC 2016
Martin Odersky
 
Reactive integrations with Akka Streams
Konrad Malawski
 
OrientDB vs Neo4j - Comparison of query/speed/functionality
Curtis Mosters
 
Ad

Similar to Tackling a 1 billion member social network (20)

PPTX
Building an ETL pipeline for Elasticsearch using Spark
Itai Yaffe
 
PPT
Making sense of the Graph Revolution
InfiniteGraph
 
PDF
Scaling Up: How Switching to Apache Spark Improved Performance, Realizability...
Databricks
 
PDF
Scaling up data science applications
Kexin Xie
 
PPTX
Neo4j Introduction at Imperial College London
Michal Bachman
 
PDF
Introduction to Apache Spark
Anastasios Skarlatidis
 
PDF
No more struggles with Apache Spark workloads in production
Chetan Khatri
 
PPT
An overview of InfiniteGraph, the distributed graph database
InfiniteGraph
 
PPT
Graph Database and Neo4j
Sina Khorami
 
ODP
Spark Deep Dive
Corey Nolet
 
PPT
NOSQL Now! Presentation, August 24, 2011: Graph Databases: Connecting the Dot...
InfiniteGraph
 
PPTX
Spark and Shark: Lightning-Fast Analytics over Hadoop and Hive Data
Jetlore
 
PDF
Optimal Strategies for Large Scale Batch ETL Jobs with Emma Tang
Databricks
 
PDF
Ingesting streaming data into Graph Database
Guido Schmutz
 
PPTX
Optimal Strategies for Large-Scale Batch ETL Jobs
Emma Tang
 
PDF
Web-Scale Graph Analytics with Apache® Spark™
Databricks
 
PDF
GraphX: Graph Analytics in Apache Spark (AMPCamp 5, 2014-11-20)
Ankur Dave
 
PDF
Java/Scala Lab: Борис Трофимов - Обжигающая Big Data.
GeeksLab Odessa
 
PPTX
ETL with SPARK - First Spark London meetup
Rafal Kwasny
 
Building an ETL pipeline for Elasticsearch using Spark
Itai Yaffe
 
Making sense of the Graph Revolution
InfiniteGraph
 
Scaling Up: How Switching to Apache Spark Improved Performance, Realizability...
Databricks
 
Scaling up data science applications
Kexin Xie
 
Neo4j Introduction at Imperial College London
Michal Bachman
 
Introduction to Apache Spark
Anastasios Skarlatidis
 
No more struggles with Apache Spark workloads in production
Chetan Khatri
 
An overview of InfiniteGraph, the distributed graph database
InfiniteGraph
 
Graph Database and Neo4j
Sina Khorami
 
Spark Deep Dive
Corey Nolet
 
NOSQL Now! Presentation, August 24, 2011: Graph Databases: Connecting the Dot...
InfiniteGraph
 
Spark and Shark: Lightning-Fast Analytics over Hadoop and Hive Data
Jetlore
 
Optimal Strategies for Large Scale Batch ETL Jobs with Emma Tang
Databricks
 
Ingesting streaming data into Graph Database
Guido Schmutz
 
Optimal Strategies for Large-Scale Batch ETL Jobs
Emma Tang
 
Web-Scale Graph Analytics with Apache® Spark™
Databricks
 
GraphX: Graph Analytics in Apache Spark (AMPCamp 5, 2014-11-20)
Ankur Dave
 
Java/Scala Lab: Борис Трофимов - Обжигающая Big Data.
GeeksLab Odessa
 
ETL with SPARK - First Spark London meetup
Rafal Kwasny
 

Recently uploaded (20)

DOCX
SAR - EEEfdfdsdasdsdasdasdasdasdasdasdasda.docx
Kanimozhi676285
 
PDF
Traditional Exams vs Continuous Assessment in Boarding Schools.pdf
The Asian School
 
PDF
Chad Ayach - A Versatile Aerospace Professional
Chad Ayach
 
PPTX
Inventory management chapter in automation and robotics.
atisht0104
 
PDF
Biodegradable Plastics: Innovations and Market Potential (www.kiu.ac.ug)
publication11
 
PPTX
FUNDAMENTALS OF ELECTRIC VEHICLES UNIT-1
MikkiliSuresh
 
PDF
Introduction to Data Science: data science process
ShivarkarSandip
 
PPTX
easa module 3 funtamental electronics.pptx
tryanothert7
 
PDF
Unit I Part II.pdf : Security Fundamentals
Dr. Madhuri Jawale
 
PPTX
database slide on modern techniques for optimizing database queries.pptx
aky52024
 
PDF
flutter Launcher Icons, Splash Screens & Fonts
Ahmed Mohamed
 
PPTX
22PCOAM21 Session 2 Understanding Data Source.pptx
Guru Nanak Technical Institutions
 
PDF
Introduction to Ship Engine Room Systems.pdf
Mahmoud Moghtaderi
 
PPTX
business incubation centre aaaaaaaaaaaaaa
hodeeesite4
 
PDF
Zero carbon Building Design Guidelines V4
BassemOsman1
 
PDF
Natural_Language_processing_Unit_I_notes.pdf
sanguleumeshit
 
PPT
SCOPE_~1- technology of green house and poyhouse
bala464780
 
PPTX
IoT_Smart_Agriculture_Presentations.pptx
poojakumari696707
 
PDF
FLEX-LNG-Company-Presentation-Nov-2017.pdf
jbloggzs
 
PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
SAR - EEEfdfdsdasdsdasdasdasdasdasdasdasda.docx
Kanimozhi676285
 
Traditional Exams vs Continuous Assessment in Boarding Schools.pdf
The Asian School
 
Chad Ayach - A Versatile Aerospace Professional
Chad Ayach
 
Inventory management chapter in automation and robotics.
atisht0104
 
Biodegradable Plastics: Innovations and Market Potential (www.kiu.ac.ug)
publication11
 
FUNDAMENTALS OF ELECTRIC VEHICLES UNIT-1
MikkiliSuresh
 
Introduction to Data Science: data science process
ShivarkarSandip
 
easa module 3 funtamental electronics.pptx
tryanothert7
 
Unit I Part II.pdf : Security Fundamentals
Dr. Madhuri Jawale
 
database slide on modern techniques for optimizing database queries.pptx
aky52024
 
flutter Launcher Icons, Splash Screens & Fonts
Ahmed Mohamed
 
22PCOAM21 Session 2 Understanding Data Source.pptx
Guru Nanak Technical Institutions
 
Introduction to Ship Engine Room Systems.pdf
Mahmoud Moghtaderi
 
business incubation centre aaaaaaaaaaaaaa
hodeeesite4
 
Zero carbon Building Design Guidelines V4
BassemOsman1
 
Natural_Language_processing_Unit_I_notes.pdf
sanguleumeshit
 
SCOPE_~1- technology of green house and poyhouse
bala464780
 
IoT_Smart_Agriculture_Presentations.pptx
poojakumari696707
 
FLEX-LNG-Company-Presentation-Nov-2017.pdf
jbloggzs
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 

Tackling a 1 billion member social network

  • 1. Scala SWAT Artur Bańkowski [email protected] @abankowski TACKLING A 1 BILLION MEMBER SOCIAL NETWORK This is a story about our participation in one of our customer’s project 1
  • 2. Previous Experience ~10 millions records ~60 millions documents ~60 million vertices graph (non-commercial) Datasets I have previously worked on were much smaller! This time we were about to deal with a much bigger social network, which can easily be represented as a graph. We were going to join the team…
  • 3. Graph structure User User User Foo Inc. User User User worked worked knows knows knows knows Bar Ltd. worked knows 2 types of vertices 2 types of relations Companies and Users
  • 4. User User User Foo Inc. User User User worked worked knows knows knows knows The concept: provide graph subset Bar Ltd. worked Foo Inc. User User User User worked worked knows knows knows knows knows Fulltext searchable, sortable, filterable result for Foo Inc.
  • 5. 1 billion challenge 835,272,759 835,272,759 vertices 751,857,081 users 83,415,678 companies 6,956,990,209 relations Subsets from thousands to millions users When we finally put our hands on the data, we have realized that datasize is smaller than expected What more have we found?
  • 6. Existing app workflow One Engineer-Evening Multiple custom scripts JSON files extract subset eg: 3m profiles 750m profiles data duplication only manually selected 60m incl. duplicates Manual process, takes few days from user perspective This was already used by final customers
  • 7. PoC - The Goal Handle 1 billion profiles automatically Our primary goal
  • 8. PoC - Definition of done • Graph traversable on demand • First results available under 1 minute • Entire subset ready in few minutes REST API with search
  • 9. PoC - Concept Graph DB Document DB API 6,956,990,209 relations 751,857,081 profiles Whole dataset stored in two engines All relations All profiles
  • 10. Why graph DB? •Fast graph traversal •Easily extendable with new relations and vertices •Convenient algorithm description
  • 11. PoC - Flow Graph DB Document DB API 1. Generate subset 2. Tag documents 3. Perform search with tag as a filter Generate subset from graph with users and companies relations Tag documents with unique id in database with all profiles Search with unique id as a primary filter
  • 12. Weapon of choice ? ?Graph DB Document DB API Scala and Play were natural choice for API app Some research required for databases
  • 13. First Steps: Extraction Extract anonymized profiles, companies and relations Cleanup data, sort and generate input files few days to pull, streaming with Akka and Slick To make a research we had to put our hands on the real data
  • 14. First Steps: Pushing forward Push profiles for searching purposes Push vertices and relations for traversal Document DB Graph DB two tools, highly dependent on db engines
  • 15. Fulltext Searchable Document DB • Mature • Horizontally scalable • Fast indexing (~3k documents per second on the single node) • Well documented • With scala libraries: • https://github.com/sksamuel/elastic4s • https://github.com/evojam/play-elastic4s We already had significant experience with scaling Elastic Search for 80 millions
  • 16. Which graph DB? Considered three engines, OrientDB and Neo4j in community editions
  • 17. Goodbye Titan • Performed well in ~60M tests • fast traversing • Development has been put on hold?
  • 18. • No batch insertion, slow initial load • Stalled writes after 200 millions of vertices with relations • Horror stories in the internet
  • 19. Neo4j FTW https://github.com/AnormCypher/AnormCypher • Fast • Already known • Convenient in Scala with AnormCypher • Offline bulk loading • Result streaming
  • 20. Weapon of choice Graph DB Document DB API Final stack :)
  • 21. Final Setup on AWS Neo4j API hr-1 hr-2 ES Cluster i2.xlarge 4vCPU 30.5GB i2.2xlarge 8vCPU 61GB m4.large 2vCPU 8GB • 2 nodes • 2 indexes • 10 shards each index • 0 replicas
  • 22. Step #1 - Bulk loading into Neo4j Importing the contents of these files into data/graph.db. […] IMPORT DONE in 3h 24m 58s 140ms. Imported:  835273352 nodes  6956990209 relationships  0 properties Importing the contents of these files into data/graph.db. […] IMPORT DONE in 3h 24m 58s 140ms. Imported:  835273352 nodes  6956990209 relationships  0 properties Importing the contents of these files into data/graph.db. […] IMPORT DONE in 3h 24m 58s 140ms. Imported:  835273352 nodes  6956990209 relationships  0 properties Importing the contents of these files into data/graph.db. […] IMPORT DONE in 3h 24m 58s 140ms. Imported:  835273352 nodes  6956990209 relationships  0 properties It took 12 hours on 2 times smaller Amazon instance
  • 23. Step #2 - Bulk loading into ES grouped insert 1. Create Source from CSV file, frame by n 2. Decode id from ByteString, generate user json 3. Group by the bulk size (eg.: 4500) 4. Throttle 5. Execute bulk insert into the ElasticSearch throttle Akka advantage: CPU utilization, parallel data enrichment, human readable
  • 24. Step #2 - Bulk loading into ES FileIO.fromFile(new File(sourceOfUserIds))
 .via( Framing.delimiter(ByteString('n'), maximumFrameLength = 1024, allowTruncation = false))
 .mapAsyncUnordered(16)(prepareUserJson)
 .grouped(4500)
 .throttle(
 elements = 2,
 per = 2 seconds,
 maximumBurst = 2,
 mode = ThrottleMode.Shaping)
 .mapAsyncUnordered(2)(executeBulkInsert)
 .runWith(Sink.ignore) Flow description with Akka Streams
  • 25. User User User Foo Inc. User User User worked worked knows knows knows knows Step #3 - Tagging Bar Ltd. worked Foo Inc. User User User User worked worked knows knows knows knows knows MATCH (c:Company)-[:worked]-(employees:User)-[:knows]-(aquitance:User)
 WHERE ID(c)={foo-inc-id} AND NOT (aquitance)-[:worked]-(c)
 RETURN DISTINCT ID(aquitance) Neo4j traversal query in CYPHER
  • 26. Akka Streams to the rescue val idEnum : Enumeratee[CypherRow] = _ val src = Source.fromPublisher(Streams.enumeratorToPublisher(idEnum))
 .map(_.data.head.asInstanceOf[BigDecimal].toInt)
 .via(new TimeoutOnEmptyBuffer())
 .map(UserId(_)) .mapAsyncUnordered(parallelism = 1)(id => dao.tagProfiles(id, companyId)) Readable flow Buffering to protect Neo4j when indexing is too slow Timeout due to the bug in the underlying implementation
  • 27. Bottleneck 1.5 hour for 3 million subset, that’s too long!
  • 28. Bulk update with AkkaStream tuning src .grouped(20000)
 .throttle( elements = 2, per = 6 second, maximumBurst = 2, mode = ThrottleMode.Shaping) .mapAsyncUnordered(parallelism = 1)(ids => dao.bulkTag(ids, ...)) Bulk tagging, few lines
  • 29. Tagging Foo-Company ~14 seconds until first batch is tagged ~7 minutes 11 seconds until all tagged reference implementation - few hours 2,222,840 profiles matching criteria Sample subset :)
  • 30. Step #5 - Search Neo4j API hr-1 hr-2 ES Cluster i2.xlarge 4vCPU 30.5GBi2.2xlarge 8vCPU 61GB m4.large 2vCPU 8GB With data ready in ES search implementation was pretty straightforward
  • 31. Step #5 - Search benchmark Fulltext search on 2 millions subset GET /users?company=foo-company&phrase=John 2000 phrases for the benchmarking Response JSON with 50 profiles Searching in 750 millions database Phrases based on real names and surnames, used during profiles enrichment Random requests ordering
  • 32. Step #5 - Search under siege Response time ~ 0.14s50 concurrent users constant latency constant search rate
  • 33. Objective achieved search response time from API ~0.14s 14 seconds until first batch is tagged 7 minutes until 2 millions ready
  • 34. Summary reference implementation PoC manual automatic few days 14 seconds few days 7 minutes ~40 millions ~750 millions no analytics GraphX ready Tool ready for data scientists W can implement core traversal modifications almost instantly