SlideShare une entreprise Scribd logo
1  sur  66
Télécharger pour lire hors ligne
Lazy	vs.	Eager	Loading	Strategies	
for	JPA	2.1		
Patrycja	Wegrzynowicz	
Java	Day	Kiev	2015
About	Me	
•  15+	professional	experience		
–  SoGware	engineer,	architect,	head	of	soGware	R&D		
•  Author	and	speaker		
–  JavaOne,	Devoxx,	JavaZone,	TheServerSide	Java	
Symposium,	Jazoon,	OOPSLA,	ASE,	others		
•  Finalizing	PhD	in	Computer	Science		
•  Founder	and	CTO	of	Yonita		
–  Bridge	the	gap	between	the	industry	and	the	academia		
–  Automated	detecUon	and	refactoring	of	soGware	defects	
–  Security,	performance,	concurrency,	databases		
•  TwiVer:	@yonlabs
Outline	
•  MoUvaUon	
•  Why?	
–  Expect	unexpected!	
•  What?	
–  Use	cases	and	corner	cases	
–  Hints	on	strategies	
•  How?	
–  JPA	2.1	
•  Conclusion
Database
Database	
The	Mordor	of	Java	Devs
Hibernate JPA Provider
Heads of Hydra
@Entity
public class Hydra {
private Long id;
private List<Head> heads = new ArrayList<Head>();
@Id @GeneratedValue
public Long getId() {...}
protected void setId() {...}
@OneToMany(cascade=CascadeType.ALL)
public List<Head> getHeads() {
return Collections.unmodifiableList(heads);
}
protected void setHeads() {...}
}
// new EntityManager and new transaction: creates and persists the hydra with 3 heads
// new EntityManager and new transaction
Hydra found = em.find(Hydra.class, hydra.getId());
How Many Queries in 2nd Tx?
@Entity
public class Hydra {
private Long id;
private List<Head> heads = new ArrayList<Head>();
@Id @GeneratedValue
public Long getId() {...}
protected void setId() {...}
@OneToMany(cascade=CascadeType.ALL)
public List<Head> getHeads() {
return Collections.unmodifiableList(heads);
}
protected void setHeads() {...}
}
// new EntityManager and new transaction: creates and persists the hydra with 3 heads
// new EntityManager and new transaction
Hydra found = em.find(Hydra.class, hydra.getId());
(a) 1 select
(b) 2 selects
(c) 1+3 selects
(d) 2 selects, 1 delete, 3
inserts
(e) None of the above
How Many Queries in 2nd Tx?
(a) 1 select
(b) 2 selects
(c) 1+3 selects
(d) 2 selects, 1 delete, 3 inserts
(e) None of the above
During commit hibernate checks whether the
collection property is dirty (needs to be re-created)
by comparing Java identities (object references).
Another Look
@Entity
public class Hydra {
private Long id;
private List<Head> heads = new ArrayList<Head>();
@Id @GeneratedValue
public Long getId() {...}
protected void setId() {...}
@OneToMany(cascade=CascadeType.ALL)
public List<Head> getHeads() {
return Collections.unmodifiableList(heads);
}
protected void setHeads() {...}
}
// new EntityManager and new transaction: creates and persists the hydra with 3 heads
// new EntityManager and new transaction
// during find only 1 select (hydra)
Hydra found = em.find(Hydra.class, hydra.getId());
// during commit 1 select (heads),1 delete (heads),3 inserts (heads)
Lessons Learned
• Expect unexpected ;-)
• Prefer field access mappings
• Operate on collection objects returned by
hibernate
–Don’t change collection references unless you know
what you’re doing
Lessons Learned
• Expect unexpected ;-)
• Prefer field access mappings
• Operate on collection objects returned by
hibernate
–Don’t change collection references unless you know
what you’re doing
List<Head> newHeads = new List<>(hydra.getHeads());
Hydra.setHeads(newHeads);
Other Providers?
• EcpliseLink
– 1 select
• Datanucleus
– 1 select
• „A Performance Comparison of JPA Providers”
Lessons Learned
• A lot of depends on a JPA Provider!
• JPA is a spec
– A great spec, but only a spec
– It says what to implement, not how to implement
• You need to tune an application in a concrete
environment
I do love JPA!
I do love JPA!
But as in every relationship we have
our ups and downs.
My Dear JPA and Its Providers 
My Dear JPA and Its Providers 
My Dear JPA and Its Providers 
LisUng	and	ReporUng
LisUng	and	ReporUng	AnU-PaVerns	
•  Different	contexts	
•  Direct	usage	of	an	object-oriented	domain	
model	
•  Too	much	data	loaded	
•  Heavy	processing	on	the	Java	side
ReporUng	AnU-PaVerns	
Example
ReporUng	AnU-PaVerns	
Employee	EnUty	
@Entity
public class Employee {
@Id @GeneratedValue
private Long id;
private String firstName;
private String lastName;
private BigDecimal salary;
private BigDecimal bonus;
@Temporal(TemporalType.DATE)
private Date startDate;
@Temporal(TemporalType.DATE)
private Date endDate;
@ManyToOne @JoinColumn(name = "manager_id")
private Employee manager;
@OneToOne @JoinColumn(name = "address_id")
private Address address;
private String country;
@OneToMany(mappedBy = "owner")
private Collection<Phone> phones;
@ManyToMany(mappedBy = "employees”)
private Collection<Project> projects;
…
}
Sum	of	Salaries	By	Country	
Select	All	(1)	
TypedQuery<Employee> query = em.createQuery(
"SELECT e FROM Employee e", Employee.class);
List<Employee> list = query.getResultList();
// calculate sum of salaries by country
// map: country->sum
Map<String, BigDecimal> results = new HashMap<>();
for (Employee e : list) {
String country = e.getAddress().getCountry();
BigDecimal total = results.get(country);
if (total == null) total = BigDecimal.ZERO;
total = total.add(e.getSalary());
results.put(country, total);
}
Sum	of	Salaries	by	Country	
Select	Join	Fetch	(2)	
TypedQuery<Employee> query = em.createQuery(
"SELECT e FROM Employee e
JOIN FETCH e.address", Employee.class);
List<Employee> list = query.getResultList();
// calculate sum of salaries by country
// map: country->sum
Map<String, BigDecimal> results = new HashMap<>();
for (Employee e : list) {
String country = e.getAddress().getCountry();
BigDecimal total = results.get(country);
if (total == null) total = BigDecimal.ZERO;
total = total.add(e.getSalary());
results.put(country, total);
}
ReporUng	AnU-PaVerns	
ProjecUon	(3)	
Query query = em.createQuery(
"SELECT e.salary, e.address.country
FROM Employee e”);
List<Object[]> list = query.getResultList();
// calculate sum of salaries by country
// map: country->sum
Map<String, BigDecimal> results = new HashMap<>();
for (Object[] e : list) {
String country = (String) e[1];
BigDecimal total = results.get(country);
if (total == null) total = BigDecimal.ZERO;
total = total.add((BigDecimal) e[0]);
results.put(country, total);
}
ReporUng	AnU-PaVerns	
AggregaUon	JPQL	(4)	
Query query = em.createQuery(
"SELECT SUM(e.salary), e.address.country
FROM Employee e
GROUP BY e.address.country”);
List<Object[]> list = query.getResultList();
// already calculated!
ReporUng	AnU-PaVerns	
AggregaUon	SQL	(5)	
Query query = em.createNativeQuery(
"SELECT SUM(e.salary), a.country
FROM employee e
JOIN address a ON e.address_id = a.id
GROUP BY a.country");
List list = query.getResultList();
// already calculated!
Comparison	1-5	
100	000	employees,	EclipseLink	
MySQL	 PostgreSQL	
(1)	Select	all	(N+1)	 25704ms	 18120ms	
(2)	Select	join	fetch	 6211ms	 3954ms	
(3)	ProjecUon	 533ms	 569ms	
(4)	Aggreg.	JPQL	 410ms	 380ms	
(5)	Aggreg.	SQL	 380ms	 409ms
ProjecUon	
JPQL	->	Value	Object	
Query query = em.createQuery(
"SELECT new com.yonita.jpa.vo.EmployeeVO(
e.salary, e.address.country)
FROM Employee e”);
// List<EmployeeVO>
List list = query.getResultList();
ProjecUon	
JPQL	->	Value	Object	
Query query = em.createQuery(
"SELECT new com.yonita.jpa.CountryStatVO(
sum(e.salary), e.address.country)
FROM Employee e
GROUP BY e.address.country"”);
// List<CountryStatVO>
List list = query.getResultList();
ProjecUon	
SQL	->	Value	Object	
@SqlResultSetMapping(
name = "countryStatVO",
classes = {
@ConstructorResult(
targetClass = CountryStatVO.class,
columns = {
@ColumnResult(name = "ssum", type = BigDecimal.class),
@ColumnResult(name = "country", type = String.class)
})
})
ProjecUon	
SQL	->	Value	Object	
Query query = em.createNativeQuery(
"SELECT SUM(e.salary), a.country
FROM employee e
JOIN address a ON e.address_id = a.id
GROUP BY a.country", "countryStatVO");
// List<CountryStatVO>
List list = query.getResultList();
ProjecUon		
Wrap-up	
•  JPA	2.0		
–  Only	JPQL	query	to	directly	produce	a	value	object!	
•  JPA	2.1	
–  JPQL	and	naUve	queries	to	directly	produce	a	value	object!	
•  Managed	object	
–  Sync	with	database	
–  L1/L2	cache	
•  Use	cases	for	Direct	Value	Object	
–  ReporUng,	staUsUcs,	history	
–  Read-only	data,	GUI	data	
–  Performance:	
•  No	need	for	managed	objects	
•  Rich	(or	fat)	managed	objects	
•  Subset	of	aVributes	required	
•  Gain	speed	
•  Offload	an	app	server
AggregaUon	
Wrap-up	
•  JPA	2.0		
–  Selected	aggregaUon	funcUons:	COUNT,	SUM,	AVG,	MIN,	MAX	
•  JPA	2.1	
–  All	funcUon	as	supported	by	a	database	
–  Call	any	database	funcUon	with	new	FUNCTION	keyword	
•  Database-specific	aggregate	funcUons	
–  MS	SQL:	STDEV,	STDEVP,	VAR,	VARP,…	
–  MySQL:	BIT_AND,	BIT_OR,	BIT_XOR,…	
–  Oracle:	MEDIAN,	PERCENTILE,…	
–  More…	
•  Use	cases	
–  ReporUng,	staUsUcs	
–  Performance	
•  Gain	speed	
•  Offload	an	app	server	to	a	database!
Loading Strategy: EAGER for sure!
• We know what we want
– Known range of required data in a future
execution path
• We want a little
– A relatively small entity, no need to divide it into
tiny pieces
Loading strategy: Usually Better
EAGER!
• Network latency to a database
– Lower number of round-trips to a database with
EAGER loading
Loading Strategy: LAZY for sure!
• We don’t know what we want
– Load only required data
– „I’ll think about that tomorrow”
• We want a lot
– Divide and conquer
– Load what’s needed in the first place
Large Objects
• Lazy Property Fetching
• @Basic(fetch = FetchType.LAZY)
• Recommended usage
– Blobs
– Clobs
– Formulas
• Remember about byte-code instrumentation,
– Otherwise will not work
– Silently ignores
Large Objects
• Lazy Property Fetching
• @Basic(fetch = FetchType.LAZY)
• Recommended usage
– Blobs
– Clobs
– Formulas
• Remember about byte-code instrumentation,
– Otherwise will not work
– Silently ignores
Large Objects
• Something smells here
• Do you really need them?
Large Objects
• Something smells here
• Do you really need them?
• But do you really need them?
Large Objects
• Something smells here
• Do you really need them?
• But do you really need them?
• Ponder on your object model and use cases,
otherwise it’s not gonna work
Large Collections
• Divide and conquer!
• Definitely lazy
• You don’t want a really large collection in the
memory
• Batch size
– JPA Provider specific configuration
Hibernate: Plant a Tree
@Entity
public class Forest {
@Id @GeneratedValue
private Long id;
@OneToMany
private Collection<Tree> trees = new HashSet<Tree>();
public void plantTree(Tree tree) {
return trees.add(tree);
}
}
// new EntityManager and new transaction: creates and persists a forest with 10.000 trees
// new EntityManager and new transaction
Tree tree = new Tree(“oak”);
em.persist(tree);
Forest forest = em.find(Forest.class, id);
forest.plantTree(tree);
How Many Queries in 2nd Tx?
@Entity
public class Forest {
@Id @GeneratedValue
private Long id;
@OneToMany
private Collection<Tree> trees = new HashSet<Tree>();
public void plantTree(Tree tree) {
return trees.add(tree);
}
}
// new EntityManager and new transaction: creates and persists a forest with 10.000 trees
// new EntityManager and new transaction
Tree tree = new Tree(“oak”);
em.persist(tree);
Forest forest = em.find(Forest.class, id);
forest.plantTree(tree);
(a) 1 select, 2 inserts
(b) 2 selects, 2 inserts
(c) 2 selects, 1 delete,
10.000+2 inserts
(d) 2 selects, 10.000
deletes, 10.000+2 inserts
(e) Even more ;-)
How Many Queries in 2nd Tx?
(a) 1 select, 2 inserts
(b) 2 selects, 2 inserts
(c) 2 selects, 1 delete, 10.000+2 inserts
(d) 2 selects, 10.000 deletes, 10.000+2 inserts
(e) Even more ;-)
The combination of OneToMany and Collection
enables a bag semantic. That’s why the collection is
re-created.
Plant a Tree Revisited
@Entity
public class Orchard {
@Id @GeneratedValue
private Long id;
@OneToMany
private List<Tree> trees = new ArrayList<Tree>();
public void plantTree(Tree tree) {
return trees.add(tree);
}
}
// creates and persists a forest with 10.000 trees
// new EntityManager and new transaction
Tree tree = new Tree(“apple tree”);
em.persist(tree);
Orchard orchard = em.find(Orchard.class, id);
orchard.plantTree(tree);
STILL BAG SEMANTIC
Use OrderColumn or
IndexColumn for list
semantic.
Plant a Tree
@Entity
public class Forest {
@Id @GeneratedValue
private Long id;
@OneToMany
private Set<Tree> trees = new HashSet<Tree>();
public void plantTree(Tree tree) {
return trees.add(tree);
}
}
// new EntityManager and new transaction: creates and persists a forest with 10.000 trees
// new EntityManager and new transaction
Tree tree = new Tree(“oak”);
em.persist(tree);
Forest forest = em.find(Forest.class, id);
forest.plantTree(tree);
1. Collection elements
loaded into memory
2. Possibly unnecessary
queries
3. Transaction and locking
schema problems:
version, optimistic
locking
Plant a Tree
@Entity public class Forest {
@Id @GeneratedValue
private Long id;
@OneToMany(mappedBy = „forest”)
private Set<Tree> trees = new HashSet<Tree>();
public void plantTree(Tree tree) {
return trees.add(tree);
}
}
@Entity public class Tree {
@Id @GeneratedValue
private Long id;
private String name;
@ManyToOne
private Forest forest;
public void setForest(Forest forest) {
this.forest = forest;
Forest.plantTree(this);
}
}
Set semantic on the
inverse side forces of
loading all trees.
Other Providers?
• EclipseLink
– 2 selects/2 inserts
• OpenJPA
• 3 selects/1 update/2inserts
• Datanucleus
• 3 selects/1 update/2inserts
Loading strategy: It depends!
• You know what you want
– But it’s dynamic, depending on an execution path
and its parameters
Loading strategy: It depends!
• You know what you want
– But it’s dynamic, depending on runtime
parameters
• That was the problem in JPA 2.0
– Fetch queries
– Provider specific extensions
– Different mappings for different cases
• JPA 2.1 comes in handy
Entity Graphs in JPA 2.1
• „A template that captures the paths and
boundaries for an operation or query”
• Fetch plans for query or find operations
• Defined by annotations
• Created programmatically
Entity Graphs in JPA 2.1
• Defined by annotations
– @NamedEntityGraph, @NamedEntitySubgraph,
@NamedAttributeNode
• Created programmatically
– Interfaces EntityGraph, EntitySubgraph,
AttributeNode
Entity Graphs in Query or Find
• Default fetch graph
– Transitive closure of all its attributes specified or
defaulted as EAGER
• javax.persistence.fetchgraph
– Attributes specified by attribute nodes are EAGER,
others are LAZY
• javax.persistence.loadgraph
– Attributes specified by by attribute nodes are
EAGER, others as specified or defaulted
Entity Graphs in Query or Find
• Default fetch graph
– Transitive closure of all its attributes specified or
defaulted as EAGER
• javax.persistence.fetchgraph
– Attributes specified by attribute nodes are EAGER,
others are LAZY
• javax.persistence.loadgraph
– Attributes specified by by attribute nodes are
EAGER, others as specified or defaulted
Entity Graphs in Query or Find
• Default fetch graph
– Transitive closure of all its attributes specified or
defaulted as EAGER
• javax.persistence.fetchgraph
– Attributes specified by attribute nodes are EAGER,
others are LAZY
• javax.persistence.loadgraph
– Attributes specified by by attribute nodes are
EAGER, others as specified or defaulted
Entity Graphs Advantages
• Better hints to JPA providers
• Hibernate now generates smarter queries
– 1 select with joins on 3 tables
– 1 round-trip to a database instead of default N+1
• Dynamic modification of a fetch plan
There is that question...
JPA	2.1
Wrap-up	
•  Main	use	cases	
–  LisUng	and	reporUng	
•  JPA		
–  EnUty	graphs	(JPA	2.1)	
–  ProjecUons	(JPA	2.0/2.1)	
•  Performance	
–  Don’t	load	if	you	don’t	need	
–  Don’t	execute	many	small	queries	if	you	can	execute	one	big	query	
–  Don’t	calculate	if	a	database	can	
•  Tuning	
–  Tune	in	your	concrete	environment		
–  JPA	Providers	behave	differently!	
–  Databases	behave	differently!
ConUnuous	IntegraUon
ConUnuous	Refactoring
ConUnuous	Learning!
ConUnuous	Learning	Paradigm	
•  A	fool	with	a	tool	is	sUll	a	fool	
•  Let’s	educate	ourselves!	J
Q&A	
	
	
patrycja@yonita.com	
@yonlabs

Contenu connexe

Tendances

Building Your First App with MongoDB
Building Your First App with MongoDBBuilding Your First App with MongoDB
Building Your First App with MongoDB
MongoDB
 

Tendances (20)

Spring Security 5
Spring Security 5Spring Security 5
Spring Security 5
 
Secure your app with keycloak
Secure your app with keycloakSecure your app with keycloak
Secure your app with keycloak
 
API for Beginners
API for BeginnersAPI for Beginners
API for Beginners
 
Building secure applications with keycloak
Building secure applications with keycloak Building secure applications with keycloak
Building secure applications with keycloak
 
Cryptography for Java Developers: Nakov jProfessionals (Jan 2019)
Cryptography for Java Developers: Nakov jProfessionals (Jan 2019)Cryptography for Java Developers: Nakov jProfessionals (Jan 2019)
Cryptography for Java Developers: Nakov jProfessionals (Jan 2019)
 
React js
React jsReact js
React js
 
REST API 설계
REST API 설계REST API 설계
REST API 설계
 
Json Web Token - JWT
Json Web Token - JWTJson Web Token - JWT
Json Web Token - JWT
 
Building Your First App with MongoDB
Building Your First App with MongoDBBuilding Your First App with MongoDB
Building Your First App with MongoDB
 
Networking in Java with NIO and Netty
Networking in Java with NIO and NettyNetworking in Java with NIO and Netty
Networking in Java with NIO and Netty
 
Spring Framework - Core
Spring Framework - CoreSpring Framework - Core
Spring Framework - Core
 
Spring Boot in Action
Spring Boot in Action Spring Boot in Action
Spring Boot in Action
 
Spring JMS
Spring JMSSpring JMS
Spring JMS
 
How to Avoid Common Mistakes When Using Reactor Netty
How to Avoid Common Mistakes When Using Reactor NettyHow to Avoid Common Mistakes When Using Reactor Netty
How to Avoid Common Mistakes When Using Reactor Netty
 
Unique ID generation in distributed systems
Unique ID generation in distributed systemsUnique ID generation in distributed systems
Unique ID generation in distributed systems
 
Callback Function
Callback FunctionCallback Function
Callback Function
 
Socket.IO
Socket.IOSocket.IO
Socket.IO
 
OpenID Connect Explained
OpenID Connect ExplainedOpenID Connect Explained
OpenID Connect Explained
 
Pentesting jwt
Pentesting jwtPentesting jwt
Pentesting jwt
 
Introduction to OpenID Connect
Introduction to OpenID Connect Introduction to OpenID Connect
Introduction to OpenID Connect
 

En vedette

En vedette (20)

Second Level Cache in JPA Explained
Second Level Cache in JPA ExplainedSecond Level Cache in JPA Explained
Second Level Cache in JPA Explained
 
Thinking Beyond ORM in JPA
Thinking Beyond ORM in JPAThinking Beyond ORM in JPA
Thinking Beyond ORM in JPA
 
Hibernate using jpa
Hibernate using jpaHibernate using jpa
Hibernate using jpa
 
Colloquium Report
Colloquium ReportColloquium Report
Colloquium Report
 
Secure Authentication and Session Management in Java EE
Secure Authentication and Session Management in Java EESecure Authentication and Session Management in Java EE
Secure Authentication and Session Management in Java EE
 
Spring Boot. Boot up your development
Spring Boot. Boot up your developmentSpring Boot. Boot up your development
Spring Boot. Boot up your development
 
Micro ORM vs Entity Framework
Micro ORM vs Entity FrameworkMicro ORM vs Entity Framework
Micro ORM vs Entity Framework
 
Java persistence api 2.1
Java persistence api 2.1Java persistence api 2.1
Java persistence api 2.1
 
JPA For Beginner's
JPA For Beginner'sJPA For Beginner's
JPA For Beginner's
 
JPA - Beyond copy-paste
JPA - Beyond copy-pasteJPA - Beyond copy-paste
JPA - Beyond copy-paste
 
JDBC - JPA - Spring Data
JDBC - JPA - Spring DataJDBC - JPA - Spring Data
JDBC - JPA - Spring Data
 
Spring.Boot up your development
Spring.Boot up your developmentSpring.Boot up your development
Spring.Boot up your development
 
Spring
SpringSpring
Spring
 
Spring Data Jpa
Spring Data JpaSpring Data Jpa
Spring Data Jpa
 
Amazon Webservices for Java Developers - UCI Webinar
Amazon Webservices for Java Developers - UCI WebinarAmazon Webservices for Java Developers - UCI Webinar
Amazon Webservices for Java Developers - UCI Webinar
 
Junior,middle,senior?
Junior,middle,senior?Junior,middle,senior?
Junior,middle,senior?
 
Introduction to JPA Framework
Introduction to JPA FrameworkIntroduction to JPA Framework
Introduction to JPA Framework
 
Java Persistence API (JPA) - A Brief Overview
Java Persistence API (JPA) - A Brief OverviewJava Persistence API (JPA) - A Brief Overview
Java Persistence API (JPA) - A Brief Overview
 
Introduction to JPA and Hibernate including examples
Introduction to JPA and Hibernate including examplesIntroduction to JPA and Hibernate including examples
Introduction to JPA and Hibernate including examples
 
Lecture 9 - Java Persistence, JPA 2
Lecture 9 - Java Persistence, JPA 2Lecture 9 - Java Persistence, JPA 2
Lecture 9 - Java Persistence, JPA 2
 

Similaire à Lazy vs. Eager Loading Strategies in JPA 2.1

Salesforce Batch processing - Atlanta SFUG
Salesforce Batch processing - Atlanta SFUGSalesforce Batch processing - Atlanta SFUG
Salesforce Batch processing - Atlanta SFUG
vraopolisetti
 
AI與大數據數據處理 Spark實戰(20171216)
AI與大數據數據處理 Spark實戰(20171216)AI與大數據數據處理 Spark實戰(20171216)
AI與大數據數據處理 Spark實戰(20171216)
Paul Chao
 

Similaire à Lazy vs. Eager Loading Strategies in JPA 2.1 (20)

Spring data requery
Spring data requerySpring data requery
Spring data requery
 
Jdbc oracle
Jdbc oracleJdbc oracle
Jdbc oracle
 
Big data week presentation
Big data week presentationBig data week presentation
Big data week presentation
 
OGSA-DAI DQP: A Developer's View
OGSA-DAI DQP: A Developer's ViewOGSA-DAI DQP: A Developer's View
OGSA-DAI DQP: A Developer's View
 
Salesforce Batch processing - Atlanta SFUG
Salesforce Batch processing - Atlanta SFUGSalesforce Batch processing - Atlanta SFUG
Salesforce Batch processing - Atlanta SFUG
 
Green dao
Green daoGreen dao
Green dao
 
AI與大數據數據處理 Spark實戰(20171216)
AI與大數據數據處理 Spark實戰(20171216)AI與大數據數據處理 Spark實戰(20171216)
AI與大數據數據處理 Spark實戰(20171216)
 
Building Scalable Stateless Applications with RxJava
Building Scalable Stateless Applications with RxJavaBuilding Scalable Stateless Applications with RxJava
Building Scalable Stateless Applications with RxJava
 
Hadoop ecosystem
Hadoop ecosystemHadoop ecosystem
Hadoop ecosystem
 
Naver_alternative_to_jpa
Naver_alternative_to_jpaNaver_alternative_to_jpa
Naver_alternative_to_jpa
 
Java OOP Programming language (Part 8) - Java Database JDBC
Java OOP Programming language (Part 8) - Java Database JDBCJava OOP Programming language (Part 8) - Java Database JDBC
Java OOP Programming language (Part 8) - Java Database JDBC
 
Hadoop ecosystem
Hadoop ecosystemHadoop ecosystem
Hadoop ecosystem
 
Alternatives of JPA/Hibernate
Alternatives of JPA/HibernateAlternatives of JPA/Hibernate
Alternatives of JPA/Hibernate
 
Hadoop cluster performance profiler
Hadoop cluster performance profilerHadoop cluster performance profiler
Hadoop cluster performance profiler
 
Presto anatomy
Presto anatomyPresto anatomy
Presto anatomy
 
Building Deep Learning Workflows with DL4J
Building Deep Learning Workflows with DL4JBuilding Deep Learning Workflows with DL4J
Building Deep Learning Workflows with DL4J
 
Json generation
Json generationJson generation
Json generation
 
JS Essence
JS EssenceJS Essence
JS Essence
 
Dapper performance
Dapper performanceDapper performance
Dapper performance
 
Chapter 3.pptx Oracle SQL or local Android database setup SQL, SQL-Lite, codi...
Chapter 3.pptx Oracle SQL or local Android database setup SQL, SQL-Lite, codi...Chapter 3.pptx Oracle SQL or local Android database setup SQL, SQL-Lite, codi...
Chapter 3.pptx Oracle SQL or local Android database setup SQL, SQL-Lite, codi...
 

Plus de Patrycja Wegrzynowicz

Plus de Patrycja Wegrzynowicz (9)

The Hacker's Guide to Kubernetes: Reloaded
The Hacker's Guide to Kubernetes: ReloadedThe Hacker's Guide to Kubernetes: Reloaded
The Hacker's Guide to Kubernetes: Reloaded
 
The Hacker's Guide to Kubernetes
The Hacker's Guide to KubernetesThe Hacker's Guide to Kubernetes
The Hacker's Guide to Kubernetes
 
The Hacker's Guide to JWT Security
The Hacker's Guide to JWT SecurityThe Hacker's Guide to JWT Security
The Hacker's Guide to JWT Security
 
The Hacker's Guide to JWT Security
The Hacker's Guide to JWT SecurityThe Hacker's Guide to JWT Security
The Hacker's Guide to JWT Security
 
The Hacker's Guide to XSS
The Hacker's Guide to XSSThe Hacker's Guide to XSS
The Hacker's Guide to XSS
 
The Hacker's Guide to NoSQL Injection
The Hacker's Guide to NoSQL InjectionThe Hacker's Guide to NoSQL Injection
The Hacker's Guide to NoSQL Injection
 
The Hacker's Guide to Session Hijacking
The Hacker's Guide to Session Hijacking The Hacker's Guide to Session Hijacking
The Hacker's Guide to Session Hijacking
 
The Hacker's Guide To Session Hijacking
The Hacker's Guide To Session HijackingThe Hacker's Guide To Session Hijacking
The Hacker's Guide To Session Hijacking
 
Thinking Beyond ORM in JPA
Thinking Beyond ORM in JPAThinking Beyond ORM in JPA
Thinking Beyond ORM in JPA
 

Dernier

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Dernier (20)

Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 

Lazy vs. Eager Loading Strategies in JPA 2.1

  • 2. About Me •  15+ professional experience –  SoGware engineer, architect, head of soGware R&D •  Author and speaker –  JavaOne, Devoxx, JavaZone, TheServerSide Java Symposium, Jazoon, OOPSLA, ASE, others •  Finalizing PhD in Computer Science •  Founder and CTO of Yonita –  Bridge the gap between the industry and the academia –  Automated detecUon and refactoring of soGware defects –  Security, performance, concurrency, databases •  TwiVer: @yonlabs
  • 3. Outline •  MoUvaUon •  Why? –  Expect unexpected! •  What? –  Use cases and corner cases –  Hints on strategies •  How? –  JPA 2.1 •  Conclusion
  • 6. Hibernate JPA Provider Heads of Hydra @Entity public class Hydra { private Long id; private List<Head> heads = new ArrayList<Head>(); @Id @GeneratedValue public Long getId() {...} protected void setId() {...} @OneToMany(cascade=CascadeType.ALL) public List<Head> getHeads() { return Collections.unmodifiableList(heads); } protected void setHeads() {...} } // new EntityManager and new transaction: creates and persists the hydra with 3 heads // new EntityManager and new transaction Hydra found = em.find(Hydra.class, hydra.getId());
  • 7. How Many Queries in 2nd Tx? @Entity public class Hydra { private Long id; private List<Head> heads = new ArrayList<Head>(); @Id @GeneratedValue public Long getId() {...} protected void setId() {...} @OneToMany(cascade=CascadeType.ALL) public List<Head> getHeads() { return Collections.unmodifiableList(heads); } protected void setHeads() {...} } // new EntityManager and new transaction: creates and persists the hydra with 3 heads // new EntityManager and new transaction Hydra found = em.find(Hydra.class, hydra.getId()); (a) 1 select (b) 2 selects (c) 1+3 selects (d) 2 selects, 1 delete, 3 inserts (e) None of the above
  • 8. How Many Queries in 2nd Tx? (a) 1 select (b) 2 selects (c) 1+3 selects (d) 2 selects, 1 delete, 3 inserts (e) None of the above During commit hibernate checks whether the collection property is dirty (needs to be re-created) by comparing Java identities (object references).
  • 9. Another Look @Entity public class Hydra { private Long id; private List<Head> heads = new ArrayList<Head>(); @Id @GeneratedValue public Long getId() {...} protected void setId() {...} @OneToMany(cascade=CascadeType.ALL) public List<Head> getHeads() { return Collections.unmodifiableList(heads); } protected void setHeads() {...} } // new EntityManager and new transaction: creates and persists the hydra with 3 heads // new EntityManager and new transaction // during find only 1 select (hydra) Hydra found = em.find(Hydra.class, hydra.getId()); // during commit 1 select (heads),1 delete (heads),3 inserts (heads)
  • 10. Lessons Learned • Expect unexpected ;-) • Prefer field access mappings • Operate on collection objects returned by hibernate –Don’t change collection references unless you know what you’re doing
  • 11. Lessons Learned • Expect unexpected ;-) • Prefer field access mappings • Operate on collection objects returned by hibernate –Don’t change collection references unless you know what you’re doing List<Head> newHeads = new List<>(hydra.getHeads()); Hydra.setHeads(newHeads);
  • 12. Other Providers? • EcpliseLink – 1 select • Datanucleus – 1 select • „A Performance Comparison of JPA Providers”
  • 13. Lessons Learned • A lot of depends on a JPA Provider! • JPA is a spec – A great spec, but only a spec – It says what to implement, not how to implement • You need to tune an application in a concrete environment
  • 14. I do love JPA!
  • 15. I do love JPA! But as in every relationship we have our ups and downs.
  • 16. My Dear JPA and Its Providers 
  • 17. My Dear JPA and Its Providers 
  • 18. My Dear JPA and Its Providers 
  • 22. ReporUng AnU-PaVerns Employee EnUty @Entity public class Employee { @Id @GeneratedValue private Long id; private String firstName; private String lastName; private BigDecimal salary; private BigDecimal bonus; @Temporal(TemporalType.DATE) private Date startDate; @Temporal(TemporalType.DATE) private Date endDate; @ManyToOne @JoinColumn(name = "manager_id") private Employee manager; @OneToOne @JoinColumn(name = "address_id") private Address address; private String country; @OneToMany(mappedBy = "owner") private Collection<Phone> phones; @ManyToMany(mappedBy = "employees”) private Collection<Project> projects; … }
  • 23. Sum of Salaries By Country Select All (1) TypedQuery<Employee> query = em.createQuery( "SELECT e FROM Employee e", Employee.class); List<Employee> list = query.getResultList(); // calculate sum of salaries by country // map: country->sum Map<String, BigDecimal> results = new HashMap<>(); for (Employee e : list) { String country = e.getAddress().getCountry(); BigDecimal total = results.get(country); if (total == null) total = BigDecimal.ZERO; total = total.add(e.getSalary()); results.put(country, total); }
  • 24. Sum of Salaries by Country Select Join Fetch (2) TypedQuery<Employee> query = em.createQuery( "SELECT e FROM Employee e JOIN FETCH e.address", Employee.class); List<Employee> list = query.getResultList(); // calculate sum of salaries by country // map: country->sum Map<String, BigDecimal> results = new HashMap<>(); for (Employee e : list) { String country = e.getAddress().getCountry(); BigDecimal total = results.get(country); if (total == null) total = BigDecimal.ZERO; total = total.add(e.getSalary()); results.put(country, total); }
  • 25. ReporUng AnU-PaVerns ProjecUon (3) Query query = em.createQuery( "SELECT e.salary, e.address.country FROM Employee e”); List<Object[]> list = query.getResultList(); // calculate sum of salaries by country // map: country->sum Map<String, BigDecimal> results = new HashMap<>(); for (Object[] e : list) { String country = (String) e[1]; BigDecimal total = results.get(country); if (total == null) total = BigDecimal.ZERO; total = total.add((BigDecimal) e[0]); results.put(country, total); }
  • 26. ReporUng AnU-PaVerns AggregaUon JPQL (4) Query query = em.createQuery( "SELECT SUM(e.salary), e.address.country FROM Employee e GROUP BY e.address.country”); List<Object[]> list = query.getResultList(); // already calculated!
  • 27. ReporUng AnU-PaVerns AggregaUon SQL (5) Query query = em.createNativeQuery( "SELECT SUM(e.salary), a.country FROM employee e JOIN address a ON e.address_id = a.id GROUP BY a.country"); List list = query.getResultList(); // already calculated!
  • 28. Comparison 1-5 100 000 employees, EclipseLink MySQL PostgreSQL (1) Select all (N+1) 25704ms 18120ms (2) Select join fetch 6211ms 3954ms (3) ProjecUon 533ms 569ms (4) Aggreg. JPQL 410ms 380ms (5) Aggreg. SQL 380ms 409ms
  • 29. ProjecUon JPQL -> Value Object Query query = em.createQuery( "SELECT new com.yonita.jpa.vo.EmployeeVO( e.salary, e.address.country) FROM Employee e”); // List<EmployeeVO> List list = query.getResultList();
  • 30. ProjecUon JPQL -> Value Object Query query = em.createQuery( "SELECT new com.yonita.jpa.CountryStatVO( sum(e.salary), e.address.country) FROM Employee e GROUP BY e.address.country"”); // List<CountryStatVO> List list = query.getResultList();
  • 31. ProjecUon SQL -> Value Object @SqlResultSetMapping( name = "countryStatVO", classes = { @ConstructorResult( targetClass = CountryStatVO.class, columns = { @ColumnResult(name = "ssum", type = BigDecimal.class), @ColumnResult(name = "country", type = String.class) }) })
  • 32. ProjecUon SQL -> Value Object Query query = em.createNativeQuery( "SELECT SUM(e.salary), a.country FROM employee e JOIN address a ON e.address_id = a.id GROUP BY a.country", "countryStatVO"); // List<CountryStatVO> List list = query.getResultList();
  • 33. ProjecUon Wrap-up •  JPA 2.0 –  Only JPQL query to directly produce a value object! •  JPA 2.1 –  JPQL and naUve queries to directly produce a value object! •  Managed object –  Sync with database –  L1/L2 cache •  Use cases for Direct Value Object –  ReporUng, staUsUcs, history –  Read-only data, GUI data –  Performance: •  No need for managed objects •  Rich (or fat) managed objects •  Subset of aVributes required •  Gain speed •  Offload an app server
  • 34. AggregaUon Wrap-up •  JPA 2.0 –  Selected aggregaUon funcUons: COUNT, SUM, AVG, MIN, MAX •  JPA 2.1 –  All funcUon as supported by a database –  Call any database funcUon with new FUNCTION keyword •  Database-specific aggregate funcUons –  MS SQL: STDEV, STDEVP, VAR, VARP,… –  MySQL: BIT_AND, BIT_OR, BIT_XOR,… –  Oracle: MEDIAN, PERCENTILE,… –  More… •  Use cases –  ReporUng, staUsUcs –  Performance •  Gain speed •  Offload an app server to a database!
  • 35. Loading Strategy: EAGER for sure! • We know what we want – Known range of required data in a future execution path • We want a little – A relatively small entity, no need to divide it into tiny pieces
  • 36. Loading strategy: Usually Better EAGER! • Network latency to a database – Lower number of round-trips to a database with EAGER loading
  • 37. Loading Strategy: LAZY for sure! • We don’t know what we want – Load only required data – „I’ll think about that tomorrow” • We want a lot – Divide and conquer – Load what’s needed in the first place
  • 38. Large Objects • Lazy Property Fetching • @Basic(fetch = FetchType.LAZY) • Recommended usage – Blobs – Clobs – Formulas • Remember about byte-code instrumentation, – Otherwise will not work – Silently ignores
  • 39. Large Objects • Lazy Property Fetching • @Basic(fetch = FetchType.LAZY) • Recommended usage – Blobs – Clobs – Formulas • Remember about byte-code instrumentation, – Otherwise will not work – Silently ignores
  • 40. Large Objects • Something smells here • Do you really need them?
  • 41. Large Objects • Something smells here • Do you really need them? • But do you really need them?
  • 42. Large Objects • Something smells here • Do you really need them? • But do you really need them? • Ponder on your object model and use cases, otherwise it’s not gonna work
  • 43. Large Collections • Divide and conquer! • Definitely lazy • You don’t want a really large collection in the memory • Batch size – JPA Provider specific configuration
  • 44. Hibernate: Plant a Tree @Entity public class Forest { @Id @GeneratedValue private Long id; @OneToMany private Collection<Tree> trees = new HashSet<Tree>(); public void plantTree(Tree tree) { return trees.add(tree); } } // new EntityManager and new transaction: creates and persists a forest with 10.000 trees // new EntityManager and new transaction Tree tree = new Tree(“oak”); em.persist(tree); Forest forest = em.find(Forest.class, id); forest.plantTree(tree);
  • 45. How Many Queries in 2nd Tx? @Entity public class Forest { @Id @GeneratedValue private Long id; @OneToMany private Collection<Tree> trees = new HashSet<Tree>(); public void plantTree(Tree tree) { return trees.add(tree); } } // new EntityManager and new transaction: creates and persists a forest with 10.000 trees // new EntityManager and new transaction Tree tree = new Tree(“oak”); em.persist(tree); Forest forest = em.find(Forest.class, id); forest.plantTree(tree); (a) 1 select, 2 inserts (b) 2 selects, 2 inserts (c) 2 selects, 1 delete, 10.000+2 inserts (d) 2 selects, 10.000 deletes, 10.000+2 inserts (e) Even more ;-)
  • 46. How Many Queries in 2nd Tx? (a) 1 select, 2 inserts (b) 2 selects, 2 inserts (c) 2 selects, 1 delete, 10.000+2 inserts (d) 2 selects, 10.000 deletes, 10.000+2 inserts (e) Even more ;-) The combination of OneToMany and Collection enables a bag semantic. That’s why the collection is re-created.
  • 47. Plant a Tree Revisited @Entity public class Orchard { @Id @GeneratedValue private Long id; @OneToMany private List<Tree> trees = new ArrayList<Tree>(); public void plantTree(Tree tree) { return trees.add(tree); } } // creates and persists a forest with 10.000 trees // new EntityManager and new transaction Tree tree = new Tree(“apple tree”); em.persist(tree); Orchard orchard = em.find(Orchard.class, id); orchard.plantTree(tree); STILL BAG SEMANTIC Use OrderColumn or IndexColumn for list semantic.
  • 48. Plant a Tree @Entity public class Forest { @Id @GeneratedValue private Long id; @OneToMany private Set<Tree> trees = new HashSet<Tree>(); public void plantTree(Tree tree) { return trees.add(tree); } } // new EntityManager and new transaction: creates and persists a forest with 10.000 trees // new EntityManager and new transaction Tree tree = new Tree(“oak”); em.persist(tree); Forest forest = em.find(Forest.class, id); forest.plantTree(tree); 1. Collection elements loaded into memory 2. Possibly unnecessary queries 3. Transaction and locking schema problems: version, optimistic locking
  • 49. Plant a Tree @Entity public class Forest { @Id @GeneratedValue private Long id; @OneToMany(mappedBy = „forest”) private Set<Tree> trees = new HashSet<Tree>(); public void plantTree(Tree tree) { return trees.add(tree); } } @Entity public class Tree { @Id @GeneratedValue private Long id; private String name; @ManyToOne private Forest forest; public void setForest(Forest forest) { this.forest = forest; Forest.plantTree(this); } } Set semantic on the inverse side forces of loading all trees.
  • 50. Other Providers? • EclipseLink – 2 selects/2 inserts • OpenJPA • 3 selects/1 update/2inserts • Datanucleus • 3 selects/1 update/2inserts
  • 51. Loading strategy: It depends! • You know what you want – But it’s dynamic, depending on an execution path and its parameters
  • 52. Loading strategy: It depends! • You know what you want – But it’s dynamic, depending on runtime parameters • That was the problem in JPA 2.0 – Fetch queries – Provider specific extensions – Different mappings for different cases • JPA 2.1 comes in handy
  • 53. Entity Graphs in JPA 2.1 • „A template that captures the paths and boundaries for an operation or query” • Fetch plans for query or find operations • Defined by annotations • Created programmatically
  • 54. Entity Graphs in JPA 2.1 • Defined by annotations – @NamedEntityGraph, @NamedEntitySubgraph, @NamedAttributeNode • Created programmatically – Interfaces EntityGraph, EntitySubgraph, AttributeNode
  • 55. Entity Graphs in Query or Find • Default fetch graph – Transitive closure of all its attributes specified or defaulted as EAGER • javax.persistence.fetchgraph – Attributes specified by attribute nodes are EAGER, others are LAZY • javax.persistence.loadgraph – Attributes specified by by attribute nodes are EAGER, others as specified or defaulted
  • 56. Entity Graphs in Query or Find • Default fetch graph – Transitive closure of all its attributes specified or defaulted as EAGER • javax.persistence.fetchgraph – Attributes specified by attribute nodes are EAGER, others are LAZY • javax.persistence.loadgraph – Attributes specified by by attribute nodes are EAGER, others as specified or defaulted
  • 57. Entity Graphs in Query or Find • Default fetch graph – Transitive closure of all its attributes specified or defaulted as EAGER • javax.persistence.fetchgraph – Attributes specified by attribute nodes are EAGER, others are LAZY • javax.persistence.loadgraph – Attributes specified by by attribute nodes are EAGER, others as specified or defaulted
  • 58. Entity Graphs Advantages • Better hints to JPA providers • Hibernate now generates smarter queries – 1 select with joins on 3 tables – 1 round-trip to a database instead of default N+1 • Dynamic modification of a fetch plan
  • 59. There is that question...
  • 61. Wrap-up •  Main use cases –  LisUng and reporUng •  JPA –  EnUty graphs (JPA 2.1) –  ProjecUons (JPA 2.0/2.1) •  Performance –  Don’t load if you don’t need –  Don’t execute many small queries if you can execute one big query –  Don’t calculate if a database can •  Tuning –  Tune in your concrete environment –  JPA Providers behave differently! –  Databases behave differently!