SlideShare a Scribd company logo
1 of 68
Download to read offline
09:00-09:30
09:30-10:15
10:15-11:00
11:00-11:30
11:30-12:30
12:30-13:30
13:30-17:00
Breakfast and Registration
The Connected Data Imperative: Why
Graphs
Transform Your Data: A Worked Example
Break
Enterprise Ready: A Look at
Neo4j in Production
Lunch
Hands-On Training Session
Agenda
APRIL 26, 2017
SANTA CLARA
Key Takeaways
1. Neo4j architecture basics… to help you match up
Neo4j with the right technical problem
2. Some guidelines for success in production
3. Where Neo4j fits into your enterprise architecture
The Right Data Technology
For the Right Job
Part I:
(Technology
Selection)
(Cruising)->(:TO)->
First	Step:
Align	Technology	with	Need
First	Step:
Align	Technology	with	Need
First	Step:
Align	Technology	with	Need
Hordes of Data Hoardes of Data
One	Perspective	on	“Big	Data”
Trending & Aggregation Finding Needles in Haystacks
One	Perspective	on	“Big	Data”
Commodity	Server	Farms Cheap	&	Abundant
Storage
One	Perspective	on	“Big	Data”
One	Perspective	on	“Big	Data”
End	Users	=
Data	
Specialists
End	Users	=
Systems	of	
Interaction
Latency	&	
Freshness	=
Batch
Latency	&	
Freshness	=
Real-Time
One	Perspective	on	“Big	Data”
Other	Side	of	the	Coin
End	Users	=
Data	
Specialists
End	Users	=
Systems	of	
Interaction
Latency	&	
Freshness	=
Batch
Latency	&	
Freshness	=
Real-Time
Discrete	Data
Minimally	
connected data
Other	NoSQL Relational	DBMS Neo4j	Graph	DB
Connected Data
Focused	on
Data	Relationships
DBMSs
Another	Perspective	on	“Big	Data”
Graph
Graph Database
Five Key Sub-Patterns (Including SQL)
RDBMS
TabularAggregate Oriented (3)
Key-Value, Column-Family,
Document Database
Source: Martin Fowler NoSQL Distilled
Database	Management	Systems
Illustration by David Somerville based on the original by Hugh McLeod (@gapingvoid)
Connectedness
Latency &
Freshness
Batch-
Precompute
Real-Time
Important	Dimensions	in
Technology	Selection
Illustration by David Somerville based on the original by Hugh McLeod (@gapingvoid)
RDBMS
&
Aggregate-
Oriented	NoSQL
Hadoop	/
MapReduce
|<———————- Graph	Database	&	———————>|
Graph	Compute	Engine
A	View	of	the	Data	Management	Portfolio
Latency &
Freshness Batch-
Precompute
Real-Time
Connectedness
Illustration by David Somerville based on the original by Hugh McLeod (@gapingvoid)
Neo4j Solves Connected, Real-Time Problems
End	Users	=
Data	
Specialists
End	Users	=
Systems	of	
Interaction
Latency	&	
Freshness	=
Batch
Latency	&	
Freshness	=
Real-Time
A	View	of	the	Data	Management	Portfolio
Recommendations
based on activity
from yesterday
Overnight/Intermittent
Loading and Calculations
Results in lag between activity
& knowledge response
System-wide local pre-calculations
are computationally inefficient
Real-Time Writes &
Writes
Up-to-the-moment freshness
“Just-in-time” processing
most efficient for “local” queries
Recommendations
that reflects your
latest activity
Batch Processing Real-Time Processing
Discrete	Data
Minimally	
connected data
Hadoop
Other	NoSQL
Relational	DBMS Graph	Database
Connected Data
Focused	on
Data	Relationships
Architectures for Leveraging Connectedness
Designed for
Discrete Lookups &
Aggregation
Designed for Causality &
Pattern-Based Queries
Architecture tradeoffs:
- Data Model Richness for Volume
- Performant Insight Into Connections
- Data Trustability (ACID)
Architecture tradeoffs:
- Aggregation performance for
arbitrary hop performance
- “Infinite scale” for large scale index-
free relationship performance
Distinguishing Features of a
Native Graph Database
Part II:
Intuitiveness
Speed
Agility
Top Benefits
25
A	unified	view	for	
ultimate	agility
• Easily	understood
• Easily	evolved
• Easy	collaboration	
between	business	
and	IT
#1	Benefit:	Project	Agility
The	Whiteboard	Model	Is the	Physical	Model
Connectedness and Size of Data Set
ResponseTime
Relational and
Other NoSQL
Databases
0 to 2 hops
0 to 3 degrees
Thousands of connections
1000x
Advantage
Tens to hundreds of hops
Thousands of degrees
Billions of connections
Neo4j
“Minutes to
milliseconds”
#2	Benefit:
“Minutes	to	Milliseconds”	Real-Time	Query	Performance
27
Example HR Query in SQL The Same Query using Cypher
MATCH (boss)-[:MANAGES*0..3]->(sub),
(sub)-[:MANAGES*1..3]->(report)
WHERE boss.name = “John Doe”
RETURN sub.name AS Subordinate,
count(report) AS Total
Project Impact
Less time writing queries
• More	time	understanding	the	answers
• Leaving	time	to	ask	the	next	question
Less time debugging queries:
• More	time	writing	the	next	piece	of	code
• Improved	quality	of	overall	code	base
Code that’s easier to read:
• Faster	ramp-up	for	new	project	members
• Improved	maintainability	&	troubleshooting
Benefit	#3 of	3: Query	Productivity
Where’s the Magic?
At Write Time:
data is connected
as it is stored
At Read Time:
Lightning-fast retrieval of data and relationships
via pointer chasing
Index free adjacency
Key	Ingredient	#1	of	3:
Graph	Optimized	Memory	&	Storage
MATCH	(:Person	{	name:“Dan”}	) -[:MARRIED_TO]->	(spouse)
MARRIED_TO
Dan Ann
NODE RELATIONSHIP	TYPE
LABEL PROPERTY VARIABLE
Key	Ingredient	#2	of	3:
A	Productive	and	Powerful	Graph	Query	Language
Graph	Transactions	Over
ACID	Consistency
31
Maintains	Integrity	Over	Time
Graph	Transactions	Over
Non-ACID	DBMSs
Becomes	Corrupt	Over	Time
Key	Ingredient	#3	of	3:
ACID	Graph	Writes
“Why	Neo4j”:	What	We	Hear	From	Users
ACID	Transactions
• ACID	transactions	with	causal	
consistency
• Neo4j	Security	Foundation	delivers	
enterprise-class	security	and	control
Performance
• Index-free	adjacency	delivers	millions	
of	hops	per	second
• In-memory	pointer	chasing	for	fast	
query	results
Agility
• Native	property	graph	model
• Modify	schema	as	business	changes	
without	disrupting	existing	data
Developer	Productivity
• Easy	to	learn, declarative	openCypher	
graph	query	language
• Procedural	language	extensions	
• Open	library	of	procedures	and	
functions		APOC
• Neo4j	support	and	training	
• Worldwide	developer	community
…	all	backed	by	Neo’s	track	record	of	
leadership	and	product	roadmap
Hardware	Efficiency
• Native	graph	query	processing	and	storage	
requires	10x	less	hardware
• Index-free	adjacency	requires	10x	less	CPU
Recipes for Success
with Neo4j
Part III:
Confidential - Neo Technology, Inc.
#1:	Get	to	know	the
“Whole	Product”
Cloud
IaaS,	PaaSm,	DBaaS
Marketplace
Companion	Service
Education
Documents
Online	Training
Classroom
Custom	Onsite
34
OSS
Community
Foundations
LDBS,	openCypher
Events
Forums
Add-Ons
Tech
Ecosystem
Tech	Partners
Graph	Solutions
Data	Science
Architecture
Data	Models
Partners
System	Integrators
Trainers
OEMs
Commercial
Support
Technical	Support
Packaged	Services
Custom	Services
#2: Don’t be afraid to ask for help
#3: Use the technology for what it’s good for
…not as a stashing ground for all data
OLTP
Relationships	in	
Data
Concrete
Use	Case
#4: Use the various APIs and components
to your advantage
Procedures
- More	complex	
imperative	code
- Extreme	performance
- APOC	is	your	friend
Cypher
- Filtering	&	Pattern	
Matching
- Most	convenient
Querying
Bulk
“neo4j-admin	import”
(1M	rec/sec)
Transactional
- LOAD	CSV
- Community	adapters	&	
procedures
- Roll-your-own
Importing Data
Community	
Edition
- Learning
- Simple	projects
Enterprise	
Edition
- 24x7
- Large	scale
- Secure
Product Edition
Deploying for 24x7
An Overview of Key Enterprise Features
Part IV:
Real-time	Package	Routing
• Large	postal	service	with	over	
500k	employees
• Neo4j	routes	7M+	packages	daily	
at	peak,	with	peaks	of	5,000+	
routing	operations	per	second.
Real-time	promotion	recommendations
• Record	“Cyber	Monday”	sales
• About	35M	daily	transactions
• Each	transaction	is	3-22	hops
• Queries	executed	in	4ms	or	less
• Replaced	IBM	Websphere	commerce
Real-time	pricing	engine
• 300M	pricing	operations	per	day
• 10x	transaction	throughput	on	half	
the	hardware	compared	to	Oracle
• Presentation	at	
http://graphconnect.com/gc2016-sf/
• Replaced	Oracle	database
What’s Possible
Neo4j	3.1
Security	and	Clustering	Architecture
Build	and	deploy	graph	applications	across
an	entire	enterprise
• Compliance with	internal	and	external	
enterprise	Information	Security	needs
• Robust	and	flexible	new	clustering	
architecture for	diverse	operational	
scenarios	and	application	needs
A	foundation that	enables	mainstream	
enterprise	solutions	on-premises	and	
in	the	cloud
ENTERPRISE	GRAPH	FOUNDATION
Operational,	Analytic,	and	Transactional	Uses
Security Clustering Operability
Enterprise
Graph	Applications
40
The	Graph	Foundation	for	the	Enterprise
Raft-based	architecture	
• Continuously	available
• Consensus	commits
• Third-generation	cluster	architecture
Cluster-aware	stack
• Seamless	integration	among	drivers,	
Bolt	protocol	and	cluster
• Eliminates	need	for	external	load	balancer
• Stateful,	cluster-aware	sessions	with	
encrypted	connections
Streamlined	development
• Relieves	developers	from	complex	infrastructure	concerns
• Faster	and	easier	to	develop	distributed	graph	applications
Neo4j	Causal	Clustering	Architecture
Resilient,	Modern,	Fault-Tolerant.	Guarantees	Graph	Safety.
41 ENTERPRISE	EDITION
How	Causal	Clustering	Works
42
Replica	Servers
Query,	View
Core	Servers
Synced	Cluster
Read
Replica
Read-
Write
Read
Replica
Read-
WriteRead
Replica
Read	Replica
Reporting
and	Analysis
Graph
App
Driver
BOLT
Write
Read
Read
Replica
Read
Replica
Read
Replica
Built-in	load	balancing
• Spreads	reads	to	core	and	replica	servers
• Spreads	writes	across	core	servers
Causal	consistency
• Always-consistent	view	of	data	at	any	scale
• Stronger	than	eventual	consistency
• Supports	varying	app	SLAs
• Best	model	for	graph	transactions
Large	heterogeneous	clusters
• 1000+	instance	clusters
• No	dependence	on	master
avoids	bottleneck
• Mix	and	match	instance	types
App	servers,	reporting	servers,
IoT	devices…
ENTERPRISE	EDITION
R	E	P	L	I	C	A			Q	U	E	R	I	E	S C O R E			Q	U	E	R	I	E	S
Causal	Clustering	Architecture	Optimizes	for
Cost-Consistency	at	Query	Time
Read
Any
43
Read
Your Own	
Writes
Read
Any
Read
Your Own	
Writes
Linearizable
(Future	3.x)
QUORATE
The	Holy	Grail	
of	Distributed
Systems
Q	U	E	R	Y			C	O	S	T
ENTERPRISE	EDITION
How	Causally	Consistent	Reads	Work
App	Server
Driver
3:	Review	
Profile 4:	Create	
an	order
Async
Replication
Raft
Replication
1:	Read	
Product	
Catalog
Core	ServerCore	ServerReplica	Server
App	Server
Driver
App	Server
Driver
ENTERPRISE	EDITION
2.	Create
Account
5:	Review	
orders How	it	Works:
• Application	chooses	a	consistency	level	
“Read	Any”	vs	“Read	your	own	writes”
• Cluster	chooses	appropriate	members
Default	optimizes	for	scalability
(i.e.	read	replica	server	for	reads)
Causal	Clustering	Enables:
• Application-driven	SLAs
• Optimizing	for	freshness	vs.	cost
• Tunability within	an	application
On	an	application	&	session	basis
1:	Read	any	replica	|	2:	Write		à[Tx 101] |	3:	RYOW*[Tx 101] |	4:	Write	à[Tx 102] |	5:	RYOW	[Tx 102]
Consistency	with	Causal	Clustering
45
Expected	Consistency	Behavior
Eventual	
Consistency
Neo4j	Causal	
Consistency
Every	single	server	is	eventually	updated ✔ ✔
View	of	related	data	is	always	consistent
✔
Users	reading and	re-reading data always	see	the	same	data
Unless	there	have	been	intervening	updates	by	others ✔
Users	writing	and updating data always	see	the	latest	data
Unless there	have	been intervening	updates	by	others ✔
Eventual	consistency	is	not	good	enough	for	graphs
ENTERPRISE	EDITION
Satisfy	enterprise	admin	and	database	
security	requirements	
• Flexible	authentication	options
ActiveDirectory/LDAP	or	Native	users
• Role-based	Authorization
• List	and	kill	running	queries
• Access	controls	for	User-Defined	Procedures
Enables	subgraph access	control
• Query	logging	and	Security	event	logging
Passes	through	originating	end	user
• Extendable	Auth plugin	Architecture	
Kerberos	support	coming	soon!
46
Enables
Sarbanes-Oxley,	
HIPAA,	PCI-DSS,	et	al
Neo4j	Security	Foundation
Enterprise-Class	Security	and	Control
P	R	E	D	E	F	I	N	E	D			R	O	L	E	S
Privileges Reader Publisher Architect Admin
Change	own	password • • • •
Read	data • • • •
View	own	details • • • •
Terminate	own	query • • • •
Write/update/delete	data • • •
Manage	index/constraints • •
Terminate	others’	queries •
ENTERPRISE	EDITION
Neo4j	Deployment	Success	Program
End-to-end	Neo4j	support	throughout	the	project	lifecycle
• Tailored	expert	advice	to	guide	you all	the	way	through	to	
deployment
• Ensures	you	are	successful	with	Neo4j
Dedicated	Neo4j	
Expert
• Design	&	Product	Manager	advice	to	avoid	common	mistakes
• Topology	advice	to	get	you	to	production
• Provide	expert	best	practice	guidance
Deployment	Success	
Engagement
• Proactive	solution	review	throughout	the	project’s	lifetime
• Continuous	delivery	of	knowledge	as	we progress
Sustained	Customer	
Success
Admin	Query	Monitoring
48
List	all	running	
queries	with :qs
(soon	to	be	:queries)
List	query	string	with	
parameters	and	
transaction	metadata
Users	can	only	see	and	
terminate	their	own	queries
Terminate	
selected	query
Admins	can	view	and	terminate	all	
running	queries	across	the	cluster
Track	elapsed	time	
for	queries
Coming	Soon!
Neo4j	3.2
• Multi	Data	Center
• Even	Faster	Reads	&	Writes
• More	Schema	Constraints
• Add-on	for	Kerberos
• Query	Monitoring	Improvements
• And	more…!
Thanks!
Stay Connected
09:00-09:30
09:30-10:15
10:15-11:00
11:00-11:30
11:30-12:30
12:30-13:30
13:30-17:00
Breakfast and Registration
The Connected Data Imperative: Why
Graphs
Transform Your Data: A Worked Example
Break
Enterprise Ready: A Look at
Neo4j in Production
Lunch
Hands-On Training Session
Agenda
APRIL 26, 2017
SANTA CLARA
Some Perspective
We are
still here
Journeying
to here
THE PROPERTY GRAPH
DATA MODEL
A way of representing data
DATA DATA
Relational
Database
Good for:
• Well-understood data structures
that don’t change too frequently
A way of representing data
• Known problems involving
discrete parts of the data, or
minimal connectivity
DATA
Graph
Database
Relational
Database
A way of representing data
Good for:
• Dynamic systems: where the data
topology is difficult to predict
• Dynamic requirements:
the evolve with the business
• Problems where the relationships
in data contribute meaning & value
Good for:
• Well-understood data structures
that don’t change too frequently
• Known problems involving
discrete parts of the data, or
minimal connectivity
Access	to	Knowledge	BaseDirect	Line	to	Support
Graph	is	easy	to	learn,	hard	to	master
• Common	issues	your	team	will	hit
• Underestimate	graph	complexity
• Complaints	of	slow	queries
• Undersized	hardware,	especially	memory,	but	also	CPU
• Ambitious	number	of	future	nodes
• Bad	scaling	topology	/	architecture	assumptions
• Disappointing	‘Write’	speed
• Deep	analytics	mismatch
• You	still	need	your	10,000	hours	
• 8760	hours	in	a	year,	so	depending	on	how	long	you	sleep,	5-7	years.
World	Class	24/7	Support
Neo4j	Enterprise	Support
Access to	Knowledge	Base	&	User	Forums
Easy	Access	Support	Portal	and	Lifecycle	to	track	
and	manage	issues
Prioritized	Fixes	to	product	issues
Agreements designed	to	fit	any	project	demand
NET	PROMOTER
SCORE
92%
NPS	Source:	http://www.creandum.com/some-thoughts-on-why-creandum
-is-leading-neo-technologys-new-20million-series-c/
ENTERPRISE-CLASS	SUPPORT
Enterprise	Scale	for	Global	Internet	Applications
• Causal	Clustering	works	across	data	centers
• Cores	can	be	spread	out	across	DCs	
• 1	leader,	all	followers,	consensus	commits
• Read-follows-writes	still	ensured
• Subclusters for	speedier	local	activity
• Replica	can	hierarchically	map	to	local	replicas
• Cluster	API-level	control	for	developers
• Cloud	delivery	via	Azure	and	AWS	EC2
Reston	Data	Center
UK	Data	Center
Native	Performance	Improvements
• Label	Indexes	added	to	speed	inserts,	updates	and	deletes
• Compound	indexes	to	improve	operational	speeds
• Cypher’s	depth	query	in	“DISTINCT”	function	has	been	dramatically	
improved	by	eliminating	repetitious	traversals	through	deep	levels.	
• Common	Cypher	queries	can	be	compiled	to	improve	performance
• Improved	performance	of	Neo4j	browser	with	new	JavaScript	
framework
Production	Governance	Improvements
Neo4j	is	“Enterprise-Obedient”
• Node	Keys	are	now	available	as	schema	constraint	
• now	specify	keys	for	any	label	
• This	helps	assure	the	integrity	of	your	graph	by	enforcing	existence	and	
guaranteeing	uniqueness
• especially	useful	for	applications	exchanging	or	importing	data	from	across	
multiple	data	sources.
• Kerberos	encrypted	authentication	module	add-on
• Supports	3-tier	integration	with	client,	directory	and	database
• CAPI-Flash	hardware	from	IBM	Power8	add-on
• Role-based	control	of	queries	in	Query	Monitor
HDFS/MapReduce/Spark
(Storage & Aggregation)
Streaming
(Filtering & Aggregation)
Machine LearningGraph Computation
Software	for	“Big Data”
Interoperability
Extensible
Write	Scale
66
One	million writes	per	second!
Import 1.8	billion	highly	connected	relationships
Neo4j:	Optimized	for	Performance
Cost-based	optimizer
Optimizes	Cypher	queries	to	traverse	the	
graph	in	the	most	efficient	way
Computed	statistics
Exact	statistics	enable	efficient	costing,	
and	instant	query	responses	for	counts	
and	groupings
Binary	wire	protocol
High-performance	Bolt	protocol	used	by	
official	Neo4j	language	drivers
Native	graph	API
Enables	low-level	access	to	the	graph,	for	
hand-tuned	levels	of	performance
Neo4j Advantage – Developer productivity
Neo4j	Scalability
Dynamic	pointer	compression
Unlimited-sized	graphs	with	no	
performance	compromise
Index	partitioning
Auto-partitioning	of	indexes	into	
2GB	partitions
Causal	clustering	architecture
Enables	unlimited	read	scaling	
with	ACID	writes	and	a	choice	
of	consistency	levels
Efficient	processing
Native	graph	processing	and	storage	
often	requires	10x	less	hardware
Efficient	storage
One-tenth	the	disk	and	memory	
requirements	of	certain	alternatives
Neo4j Advantage – Massive Scalability

More Related Content

What's hot

IA Générative et Graphes Neo4j : RAG time !
IA Générative et Graphes Neo4j : RAG time !IA Générative et Graphes Neo4j : RAG time !
IA Générative et Graphes Neo4j : RAG time !Neo4j
 
Graph-Powered Digital Asset Management with Neo4j
Graph-Powered Digital Asset Management with Neo4jGraph-Powered Digital Asset Management with Neo4j
Graph-Powered Digital Asset Management with Neo4jNeo4j
 
Introduction to Knowledge Graphs: Data Summit 2020
Introduction to Knowledge Graphs: Data Summit 2020Introduction to Knowledge Graphs: Data Summit 2020
Introduction to Knowledge Graphs: Data Summit 2020Enterprise Knowledge
 
Introduction to Cypher
Introduction to Cypher Introduction to Cypher
Introduction to Cypher Neo4j
 
Neural Learning to Rank
Neural Learning to RankNeural Learning to Rank
Neural Learning to RankBhaskar Mitra
 
Graph-Based Customer Journey Analytics with Neo4j
Graph-Based Customer Journey Analytics with Neo4jGraph-Based Customer Journey Analytics with Neo4j
Graph-Based Customer Journey Analytics with Neo4jNeo4j
 
Supply Chain Twin Demo - Companion Deck
Supply Chain Twin Demo - Companion DeckSupply Chain Twin Demo - Companion Deck
Supply Chain Twin Demo - Companion DeckNeo4j
 
Graph R-CNN for Scene Graph Generation
Graph R-CNN for Scene Graph GenerationGraph R-CNN for Scene Graph Generation
Graph R-CNN for Scene Graph GenerationSangmin Woo
 
Cross language information retrieval (clir)slide
Cross language information retrieval (clir)slideCross language information retrieval (clir)slide
Cross language information retrieval (clir)slideMohd Iqbal Al-farabi
 
bag-of-words models
bag-of-words models bag-of-words models
bag-of-words models Xiaotao Zou
 
Representation Learning of Text for NLP
Representation Learning of Text for NLPRepresentation Learning of Text for NLP
Representation Learning of Text for NLPAnuj Gupta
 
Introduction to Knowledge Graphs and Semantic AI
Introduction to Knowledge Graphs and Semantic AIIntroduction to Knowledge Graphs and Semantic AI
Introduction to Knowledge Graphs and Semantic AISemantic Web Company
 
Human Pose Estimation by Deep Learning
Human Pose Estimation by Deep LearningHuman Pose Estimation by Deep Learning
Human Pose Estimation by Deep LearningWei Yang
 
Faster R-CNN - PR012
Faster R-CNN - PR012Faster R-CNN - PR012
Faster R-CNN - PR012Jinwon Lee
 
Building a Knowledge Graph using NLP and Ontologies
Building a Knowledge Graph using NLP and OntologiesBuilding a Knowledge Graph using NLP and Ontologies
Building a Knowledge Graph using NLP and OntologiesNeo4j
 
Debunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative FactsDebunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative FactsNeo4j
 
Neo4j y GenAI
Neo4j y GenAI Neo4j y GenAI
Neo4j y GenAI Neo4j
 

What's hot (20)

IA Générative et Graphes Neo4j : RAG time !
IA Générative et Graphes Neo4j : RAG time !IA Générative et Graphes Neo4j : RAG time !
IA Générative et Graphes Neo4j : RAG time !
 
Graph-Powered Digital Asset Management with Neo4j
Graph-Powered Digital Asset Management with Neo4jGraph-Powered Digital Asset Management with Neo4j
Graph-Powered Digital Asset Management with Neo4j
 
Introduction to Knowledge Graphs: Data Summit 2020
Introduction to Knowledge Graphs: Data Summit 2020Introduction to Knowledge Graphs: Data Summit 2020
Introduction to Knowledge Graphs: Data Summit 2020
 
Introduction to Cypher
Introduction to Cypher Introduction to Cypher
Introduction to Cypher
 
Neural Learning to Rank
Neural Learning to RankNeural Learning to Rank
Neural Learning to Rank
 
Graph-Based Customer Journey Analytics with Neo4j
Graph-Based Customer Journey Analytics with Neo4jGraph-Based Customer Journey Analytics with Neo4j
Graph-Based Customer Journey Analytics with Neo4j
 
Supply Chain Twin Demo - Companion Deck
Supply Chain Twin Demo - Companion DeckSupply Chain Twin Demo - Companion Deck
Supply Chain Twin Demo - Companion Deck
 
Graph R-CNN for Scene Graph Generation
Graph R-CNN for Scene Graph GenerationGraph R-CNN for Scene Graph Generation
Graph R-CNN for Scene Graph Generation
 
Cross language information retrieval (clir)slide
Cross language information retrieval (clir)slideCross language information retrieval (clir)slide
Cross language information retrieval (clir)slide
 
bag-of-words models
bag-of-words models bag-of-words models
bag-of-words models
 
Representation Learning of Text for NLP
Representation Learning of Text for NLPRepresentation Learning of Text for NLP
Representation Learning of Text for NLP
 
Deep Learning for Video: Action Recognition (UPC 2018)
Deep Learning for Video: Action Recognition (UPC 2018)Deep Learning for Video: Action Recognition (UPC 2018)
Deep Learning for Video: Action Recognition (UPC 2018)
 
Introduction to Knowledge Graphs and Semantic AI
Introduction to Knowledge Graphs and Semantic AIIntroduction to Knowledge Graphs and Semantic AI
Introduction to Knowledge Graphs and Semantic AI
 
Human Pose Estimation by Deep Learning
Human Pose Estimation by Deep LearningHuman Pose Estimation by Deep Learning
Human Pose Estimation by Deep Learning
 
Faster R-CNN - PR012
Faster R-CNN - PR012Faster R-CNN - PR012
Faster R-CNN - PR012
 
Building a Knowledge Graph using NLP and Ontologies
Building a Knowledge Graph using NLP and OntologiesBuilding a Knowledge Graph using NLP and Ontologies
Building a Knowledge Graph using NLP and Ontologies
 
Debunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative FactsDebunking some “RDF vs. Property Graph” Alternative Facts
Debunking some “RDF vs. Property Graph” Alternative Facts
 
What is word2vec?
What is word2vec?What is word2vec?
What is word2vec?
 
Neo4j in Depth
Neo4j in DepthNeo4j in Depth
Neo4j in Depth
 
Neo4j y GenAI
Neo4j y GenAI Neo4j y GenAI
Neo4j y GenAI
 

Similar to Enterprise Ready: A Look at Neo4j in Production

What's New in Neo4j
What's New in Neo4j What's New in Neo4j
What's New in Neo4j Neo4j
 
The Connected Data Imperative: Why Graphs? at Neo4j GraphDay New York City
The Connected Data Imperative: Why Graphs? at Neo4j GraphDay New York CityThe Connected Data Imperative: Why Graphs? at Neo4j GraphDay New York City
The Connected Data Imperative: Why Graphs? at Neo4j GraphDay New York CityNeo4j
 
Data Culture Series - Keynote - 3rd Dec
Data Culture Series - Keynote - 3rd DecData Culture Series - Keynote - 3rd Dec
Data Culture Series - Keynote - 3rd DecJonathan Woodward
 
The Connected Data Imperative: An Introduction to Neo4j
The Connected Data Imperative: An Introduction to Neo4jThe Connected Data Imperative: An Introduction to Neo4j
The Connected Data Imperative: An Introduction to Neo4jNeo4j
 
High-performance database technology for rock-solid IoT solutions
High-performance database technology for rock-solid IoT solutionsHigh-performance database technology for rock-solid IoT solutions
High-performance database technology for rock-solid IoT solutionsClusterpoint
 
Neo4j GraphDay Munich - How to make your GraphDB project successful
Neo4j GraphDay Munich - How to make your GraphDB project successfulNeo4j GraphDay Munich - How to make your GraphDB project successful
Neo4j GraphDay Munich - How to make your GraphDB project successfulNeo4j
 
Data Culture Series - Keynote & Panel - 19h May - London
Data Culture Series  - Keynote & Panel - 19h May - LondonData Culture Series  - Keynote & Panel - 19h May - London
Data Culture Series - Keynote & Panel - 19h May - LondonJonathan Woodward
 
Webinar: Introducing the MongoDB Connector for BI 2.0 with Tableau
Webinar: Introducing the MongoDB Connector for BI 2.0 with TableauWebinar: Introducing the MongoDB Connector for BI 2.0 with Tableau
Webinar: Introducing the MongoDB Connector for BI 2.0 with TableauMongoDB
 
What's an SRE at Criteo - Meetup SRE Paris
What's an SRE at Criteo - Meetup SRE ParisWhat's an SRE at Criteo - Meetup SRE Paris
What's an SRE at Criteo - Meetup SRE ParisClément Michaud
 
Neo4j: What's Under the Hood & How Knowing This Can Help You
Neo4j: What's Under the Hood & How Knowing This Can Help You Neo4j: What's Under the Hood & How Knowing This Can Help You
Neo4j: What's Under the Hood & How Knowing This Can Help You Neo4j
 
Big Data Expo 2015 - Barnsten Why Data Modelling is Essential
Big Data Expo 2015 - Barnsten Why Data Modelling is EssentialBig Data Expo 2015 - Barnsten Why Data Modelling is Essential
Big Data Expo 2015 - Barnsten Why Data Modelling is EssentialBigDataExpo
 
Lean Enterprise, Microservices and Big Data
Lean Enterprise, Microservices and Big DataLean Enterprise, Microservices and Big Data
Lean Enterprise, Microservices and Big DataStylight
 
Introducing Neo4j
Introducing Neo4jIntroducing Neo4j
Introducing Neo4jNeo4j
 
IOUG Collaborate 18 - Get the Oracle Performance Diagnostics Capabilities You...
IOUG Collaborate 18 - Get the Oracle Performance Diagnostics Capabilities You...IOUG Collaborate 18 - Get the Oracle Performance Diagnostics Capabilities You...
IOUG Collaborate 18 - Get the Oracle Performance Diagnostics Capabilities You...Pini Dibask
 
Essential Data Engineering for Data Scientist
Essential Data Engineering for Data Scientist Essential Data Engineering for Data Scientist
Essential Data Engineering for Data Scientist SoftServe
 
Introduction: Relational to Graphs
Introduction: Relational to GraphsIntroduction: Relational to Graphs
Introduction: Relational to GraphsNeo4j
 
Data Treatment MongoDB
Data Treatment MongoDBData Treatment MongoDB
Data Treatment MongoDBNorberto Leite
 
Webinar: NoSQL as the New Normal
Webinar: NoSQL as the New NormalWebinar: NoSQL as the New Normal
Webinar: NoSQL as the New NormalMongoDB
 
World of Watson - DB2 for Linux, UNIX and Windows Roadmap
World of Watson - DB2 for Linux, UNIX and Windows RoadmapWorld of Watson - DB2 for Linux, UNIX and Windows Roadmap
World of Watson - DB2 for Linux, UNIX and Windows RoadmapIBM_Info_Management
 

Similar to Enterprise Ready: A Look at Neo4j in Production (20)

What's New in Neo4j
What's New in Neo4j What's New in Neo4j
What's New in Neo4j
 
The Connected Data Imperative: Why Graphs? at Neo4j GraphDay New York City
The Connected Data Imperative: Why Graphs? at Neo4j GraphDay New York CityThe Connected Data Imperative: Why Graphs? at Neo4j GraphDay New York City
The Connected Data Imperative: Why Graphs? at Neo4j GraphDay New York City
 
Data Culture Series - Keynote - 3rd Dec
Data Culture Series - Keynote - 3rd DecData Culture Series - Keynote - 3rd Dec
Data Culture Series - Keynote - 3rd Dec
 
The Connected Data Imperative: An Introduction to Neo4j
The Connected Data Imperative: An Introduction to Neo4jThe Connected Data Imperative: An Introduction to Neo4j
The Connected Data Imperative: An Introduction to Neo4j
 
High-performance database technology for rock-solid IoT solutions
High-performance database technology for rock-solid IoT solutionsHigh-performance database technology for rock-solid IoT solutions
High-performance database technology for rock-solid IoT solutions
 
Neo4j GraphDay Munich - How to make your GraphDB project successful
Neo4j GraphDay Munich - How to make your GraphDB project successfulNeo4j GraphDay Munich - How to make your GraphDB project successful
Neo4j GraphDay Munich - How to make your GraphDB project successful
 
Data Culture Series - Keynote & Panel - 19h May - London
Data Culture Series  - Keynote & Panel - 19h May - LondonData Culture Series  - Keynote & Panel - 19h May - London
Data Culture Series - Keynote & Panel - 19h May - London
 
Webinar: Introducing the MongoDB Connector for BI 2.0 with Tableau
Webinar: Introducing the MongoDB Connector for BI 2.0 with TableauWebinar: Introducing the MongoDB Connector for BI 2.0 with Tableau
Webinar: Introducing the MongoDB Connector for BI 2.0 with Tableau
 
What's an SRE at Criteo - Meetup SRE Paris
What's an SRE at Criteo - Meetup SRE ParisWhat's an SRE at Criteo - Meetup SRE Paris
What's an SRE at Criteo - Meetup SRE Paris
 
Neo4j: What's Under the Hood & How Knowing This Can Help You
Neo4j: What's Under the Hood & How Knowing This Can Help You Neo4j: What's Under the Hood & How Knowing This Can Help You
Neo4j: What's Under the Hood & How Knowing This Can Help You
 
Big Data Expo 2015 - Barnsten Why Data Modelling is Essential
Big Data Expo 2015 - Barnsten Why Data Modelling is EssentialBig Data Expo 2015 - Barnsten Why Data Modelling is Essential
Big Data Expo 2015 - Barnsten Why Data Modelling is Essential
 
Lean Enterprise, Microservices and Big Data
Lean Enterprise, Microservices and Big DataLean Enterprise, Microservices and Big Data
Lean Enterprise, Microservices and Big Data
 
Introducing Neo4j
Introducing Neo4jIntroducing Neo4j
Introducing Neo4j
 
IOUG Collaborate 18 - Get the Oracle Performance Diagnostics Capabilities You...
IOUG Collaborate 18 - Get the Oracle Performance Diagnostics Capabilities You...IOUG Collaborate 18 - Get the Oracle Performance Diagnostics Capabilities You...
IOUG Collaborate 18 - Get the Oracle Performance Diagnostics Capabilities You...
 
Data mining (Part I)
Data mining (Part I)Data mining (Part I)
Data mining (Part I)
 
Essential Data Engineering for Data Scientist
Essential Data Engineering for Data Scientist Essential Data Engineering for Data Scientist
Essential Data Engineering for Data Scientist
 
Introduction: Relational to Graphs
Introduction: Relational to GraphsIntroduction: Relational to Graphs
Introduction: Relational to Graphs
 
Data Treatment MongoDB
Data Treatment MongoDBData Treatment MongoDB
Data Treatment MongoDB
 
Webinar: NoSQL as the New Normal
Webinar: NoSQL as the New NormalWebinar: NoSQL as the New Normal
Webinar: NoSQL as the New Normal
 
World of Watson - DB2 for Linux, UNIX and Windows Roadmap
World of Watson - DB2 for Linux, UNIX and Windows RoadmapWorld of Watson - DB2 for Linux, UNIX and Windows Roadmap
World of Watson - DB2 for Linux, UNIX and Windows Roadmap
 

More from Neo4j

Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansQIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansNeo4j
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...Neo4j
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosNeo4j
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Neo4j
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jNeo4j
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j
 
Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Neo4j
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeNeo4j
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j
 
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j
 
Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsNeo4j
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j
 

More from Neo4j (20)

Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and BioinformaticiansQIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
QIAGEN: Biomedical Knowledge Graphs for Data Scientists and Bioinformaticians
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
ISDEFE - GraphSummit Madrid - ARETA: Aviation Real-Time Emissions Token Accre...
 
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafosBBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
BBVA - GraphSummit Madrid - Caso de éxito en BBVA: Optimizando con grafos
 
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
Graph Everywhere - Josep Taruella - Por qué Graph Data Science en tus modelos...
 
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4jGraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
GraphSummit Madrid - Product Vision and Roadmap - Luis Salvador Neo4j
 
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdfNeo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
Neo4j_Exploring the Impact of Graph Technology on Financial Services.pdf
 
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdfRabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
Rabobank_Exploring the Impact of Graph Technology on Financial Services.pdf
 
Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!Webinar - IA generativa e grafi Neo4j: RAG time!
Webinar - IA generativa e grafi Neo4j: RAG time!
 
IA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG timeIA Generativa y Grafos de Neo4j: RAG time
IA Generativa y Grafos de Neo4j: RAG time
 
Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)Neo4j: Data Engineering for RAG (retrieval augmented generation)
Neo4j: Data Engineering for RAG (retrieval augmented generation)
 
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdfNeo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
Neo4j Graph Summit 2024 Workshop - EMEA - Breda_and_Munchen.pdf
 
Enabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge GraphsEnabling GenAI Breakthroughs with Knowledge Graphs
Enabling GenAI Breakthroughs with Knowledge Graphs
 
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdfNeo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
Neo4j_Anurag Tandon_Product Vision and Roadmap.Benelux.pptx.pdf
 
Neo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with GraphNeo4j Jesus Barrasa The Art of the Possible with Graph
Neo4j Jesus Barrasa The Art of the Possible with Graph
 

Recently uploaded

presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 

Recently uploaded (20)

presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 

Enterprise Ready: A Look at Neo4j in Production