Fetching strategies in Grails documentation

36 views
Skip to first unread message

Vincent Frison

unread,
Jan 27, 2016, 9:52:43 AM1/27/16
to Grails Dev Discuss
Hello,

In the section 6.3.4 of the official documentation, which speaks about" Eager and Lazy Fetching", it's written that using lazy:false (int the flights association of Airport) can avoid the N+1 queries issue. 

But IMHO that is not true, setting the association to eager doesn't solve the problem by itself. 

Eager/Lazy just mean *when* the association mut be loaded: 'eager' means that the association must be loaded instantly as 'lazy' means it will be loaded only when it will be required. But what could really avoid the N+1 problem is the *how* it must be loaded, not the *when*. By default the *how* is set to 'select' which means another SELECT SQL statement must be executed in order to fetch the associated entities. To avoid the N+1 problem the *how* must be changed to either 'join' or 'batch' or 'subselect' (apparently the last one is not possible in Grails).

I think the documentation should be corrected to avoid confusion altough it's not easy to explain Hibernate fetching strategies in a few lines...

In fact the used example deals with 3 entities: Airport, Flight and Location (it could be simpler with 2 entities only). If the flights association of Airport is set to eager, there are still N+1 queries to be executed in order to fetch relative locations ! The problem can be avoived by setting join:'fetch' on the location association of Flight.

I'm also confused with the next section about "Batch fetching". The batch mode is usefull when you load mulitple parent instances because associated entities can be fetched in one shoot for many parents (SELECT ... IN (multiple ParentIds)). But If you have only one parent entity, which is the case of the example, it doesn't make sense for me. 

Thanks, Vincent.




Graeme Rocher

unread,
Jan 28, 2016, 10:10:16 AM1/28/16
to grails-de...@googlegroups.com
Yes it seems there is some erroneous information regarding the different between fetchMode (select or join) and lazy (proxy or not). Please raise an issue and point out the errors of concern that you have found and we can improve on this.

Thanks
Graeme

--
You received this message because you are subscribed to the Google Groups "Grails Dev Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to grails-dev-disc...@googlegroups.com.
To post to this group, send email to grails-de...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/grails-dev-discuss/4545d1f9-dbdd-42bf-b137-de3c84f93e4b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Vincent Frison

unread,
Jan 28, 2016, 4:10:16 PM1/28/16
to grails-de...@googlegroups.com
Ok I've created an issue in the grails-doc project: https://github.com/grails/grails-doc/issues/424

Thanks, Vincent.

Reply all
Reply to author
Forward
0 new messages