Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/UserGuide/JPA/Advanced JPA Development/Performance/Fetch Groups"

m (New page: =Fetch Groups (Performance)=)
 
m
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=Fetch Groups (Performance)=
+
----
 +
 
 +
 
 +
'''[[Image:Elug_draft_icon.png|Warning]] This page is now obsolete. '''
 +
 
 +
For current information, please see "Fetch Groups" in the ''EclipseLink Concepts Guide'':
 +
http://www.eclipse.org/eclipselink/documentation/latest/concepts/descriptors002.htm#CHEJJCCG
 +
 
 +
 
 +
----
 +
 
 +
{{EclipseLink_UserGuide
 +
|info=y
 +
|toc=n
 +
|eclipselink=y
 +
|eclipselinktype=JPA
 +
|api=y
 +
|apis=
 +
*[[http://www.eclipse.org/eclipselink/api/2.2/org/eclipse/persistence/queries/FetchGroup.html FetchGroup]]
 +
|examples=y
 +
|example=
 +
*[[http://wiki.eclipse.org/EclipseLink/Examples/JPA/AttributeGroup Attribute Group]]}}
 +
=Fetch Groups=
 +
By default, when you execute an object-level read query for a particular object class, EclipseLink returns all the persistent attributes mapped in the object's descriptor. With this single query, all the object's persistent attributes are defined, and calling their <tt>get</tt> methods returns the value directly from the object.
 +
 
 +
When you are interested in only some of the attributes of an object, it may be more efficient to return only a subset of the object's attributes using a fetch group.
 +
 
 +
Using a fetch group, you can define a subset of an object's attributes and associate the fetch group with either a <tt>ReadObjectQuery</tt> or <tt>ReadAllQuery</tt> query. When you execute the query, EclipseLink retrieves only the attributes in the fetch group. EclipseLink automatically executes a query to fetch all the attributes excluded from this subset when and if you call a <tt>get</tt> method on any one of the excluded attributes.
 +
 
 +
You can define more than one fetch group for a class. You can optionally designate at most one such fetch group as the default fetch group. If you execute either a <tt>ReadObjectQuery</tt> or <tt>ReadAllQuery</tt> query without specifying a fetch group, EclipseLink will use the default fetch group, unless you configure the query otherwise).
 +
 
 +
You can use fetch groups in JPA projects for EJB objects, as well as for POJO classes. For POJO classes, use partial object querying).
 +
 
 +
Before using fetch groups, we recommend that you perform a careful analysis of system use. In many cases, the extra queries required to load attributes not in the fetch group could well offset the gain from the partial attribute loading.
 +
 
 +
Fetch groups can be used only with basic mappings configured with FetchType.LAZY (partial object queries).
 +
 
 +
In the 2.1.0, EclipseLink introduces the '''[[EclipseLink/Examples/JPA/AttributeGroup|AttributeGroup]]''' that can be used configure the use of partial entities in fetch, load, copy, and merge operations.
 +
 
 +
 
 +
{{EclipseLink_JPA
 +
|previous=[[EclipseLink/UserGuide/JPA/Advanced_JPA_Development/Performance/Weaving/Disabling Weaving with Persistence Unit Properties|Disabling Weaving with Persistence Unit Properties]]
 +
|next    =[[EclipseLink/UserGuide/JPA/Advanced_JPA_Development/Performance/Attribute_Group|Attribute Groups]]
 +
|up      =[[EclipseLink/UserGuide/JPA/Advanced_JPA_Development/Performance|Performance]]
 +
|version=2.2.0 DRAFT}}

Latest revision as of 07:55, 17 April 2013



Warning This page is now obsolete.

For current information, please see "Fetch Groups" in the EclipseLink Concepts Guide: http://www.eclipse.org/eclipselink/documentation/latest/concepts/descriptors002.htm#CHEJJCCG




EclipseLink JPA

Eclipselink-logo.gif
EclipseLink
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source

Elug api package icon.png Key API

Elug example icon.png Examples

Fetch Groups

By default, when you execute an object-level read query for a particular object class, EclipseLink returns all the persistent attributes mapped in the object's descriptor. With this single query, all the object's persistent attributes are defined, and calling their get methods returns the value directly from the object.

When you are interested in only some of the attributes of an object, it may be more efficient to return only a subset of the object's attributes using a fetch group.

Using a fetch group, you can define a subset of an object's attributes and associate the fetch group with either a ReadObjectQuery or ReadAllQuery query. When you execute the query, EclipseLink retrieves only the attributes in the fetch group. EclipseLink automatically executes a query to fetch all the attributes excluded from this subset when and if you call a get method on any one of the excluded attributes.

You can define more than one fetch group for a class. You can optionally designate at most one such fetch group as the default fetch group. If you execute either a ReadObjectQuery or ReadAllQuery query without specifying a fetch group, EclipseLink will use the default fetch group, unless you configure the query otherwise).

You can use fetch groups in JPA projects for EJB objects, as well as for POJO classes. For POJO classes, use partial object querying).

Before using fetch groups, we recommend that you perform a careful analysis of system use. In many cases, the extra queries required to load attributes not in the fetch group could well offset the gain from the partial attribute loading.

Fetch groups can be used only with basic mappings configured with FetchType.LAZY (partial object queries).

In the 2.1.0, EclipseLink introduces the AttributeGroup that can be used configure the use of partial entities in fetch, load, copy, and merge operations.


Eclipselink-logo.gif
Version: 2.2.0 DRAFT
Other versions...

Back to the top