up vote 238 down vote favorite
89
share [g+] share [fb]

The problem is often mentioned in O/R-mapping discussions, and I understand that it has something do to with having to make a lot of database queries for something that seems simple in the object world.

Does anybody have a more detailed (but simple!) explanation of the problem?

link|improve this question

21  
all I wanted to know about select(n+1) problem but was afraid to ask – chester89 Apr 1 '10 at 22:35
feedback

9 Answers

up vote 172 down vote accepted

I'm not an expert, and the best guide is Java Persistence with Hibernate, chapter 13. But I can try to give a short example.

Let's say you have a collection of Car objects (database rows), and each Car has a collection of Wheel objects (database rows). In other words, Car:Wheel is a 1-to-many relationship.

Now, let's say you need to iterate through all the cars, and for each one, print out a list of the wheels. The naive O/R implementation would do the following:

SELECT * FROM Cars;

/* for each car */
SELECT * FROM Wheel WHERE CarId = ?

In other words, you have one select for the Cars, and then N additional selects, where N is the total number of cars.

This is bad :-). Hibernate (I'm not familiar with the other ORM frameworks) gives you several ways to handle it.

link|improve this answer
31  
To clarify on the "This is bad" - you could get all the wheels with 1 select (SELECT * from Wheel;), instead of N+1. With a large N, the performance hit can be very significant. – tucuxi Aug 30 '10 at 10:43
1  
The explanation was indeed simple and clear – Barry Oct 20 '11 at 13:34
1  
@tucuxi I'm surprised you got so many upvotes for being wrong. A database is very good about indexes, doing the query for a specific CarID would return very fast. But if you got all the Wheels are once, you would have to search for CarID in your application, which is not indexed, this is slower. Unless you have major latency issues reaching your database going n + 1 is actually faster - and yes, I benchmarked it with a large variety of real world code. – Ariel Oct 30 '11 at 20:32
@ariel The 'correct' way is to get all the wheels, ordered by CarId (1 select), and if more details than the CarId are required, make a second query for all cars (2 queries total). Printing things out is now optimal, and no indexes or secondary storage were required (you can iterate over results, no need to download them all). You benchmarked the wrong thing. If you are still confident of your benchmarks, would you mind posting a longer comment (or a full answer) explaining your experiment and results? – tucuxi Nov 1 '11 at 12:36
1  
"Hibernate (I'm not familiar with the other ORM frameworks) gives you several ways to handle it." and these way are? – Mur Votema Jan 12 at 14:17
show 5 more comments
feedback
SELECT 
table1.*
, table2.*
INNER JOIN table2 ON table2.SomeFkId = table1.SomeId

That gets you a result set where child rows in table2 cause duplication by returning the table1 results for each child row in table2. O/R mappers should differentiate table1 instances based on a unique key field, then use all the table2 columns to populate child instances.

SELECT table1.*

SELECT table2.* WHERE SomeFkId = #

The N+1 is where the first query populates the primary object and the second query populates all the child objects for each of the unique primary objects returned.

Consider:

class House
{
    int Id { get; set; }
    string Address { get; set; }
    Person[] Inhabitants { get; set; }
}

class Person
{
    string Name { get; set; }
    int HouseId { get; set; }
}

and tables with a similar structure. A single query for the address "22 Valley St" may return:

Id Address      Name HouseId
1  22 Valley St Dave 1
1  22 Valley St John 1
1  22 Valley St Mike 1

The O/RM should fill an instance of Home with ID=1, Address="22 Valley St" and then populate the Inhabitants array with People instances for Dave, John, and Mike with just one query.

A N+1 query for the same address used above would result in:

Id Address
1  22 Valley St

with a separate query like

SELECT * FROM Person WHERE HouseId = 1

and resulting in a separate data set like

Name    HouseId
Dave    1
John    1
Mike    1

and the final result being the same as above with the single query.

The advantages to single select is that you get all the data up front which may be what you ultimately desire. The advantages to N+1 is query complexity is reduced and you can use lazy loading where the child result sets are only loaded upon first request.

link|improve this answer
The other advantage of n + 1 is that it's faster because the database can return the results directly from an index. Doing the join and then sorting requires a temp table, which is slower. The only reason to avoid n + 1 is if you have a lot of latency talking to your database. – Ariel Oct 30 '11 at 20:34
1  
Joining and sorting can be quite fast (because you will be joining on indexed-and-possibly-sorted fields). How big is your 'n+1'? Do you seriously believe that the n+1 problem only applies to high-latency database connections? – tucuxi Nov 1 '11 at 12:46
@tucuxi Joining and sorting is slow because you need to sort on columns from two different tables, and MySQL at least doesn't support such an index, so it sorts it in a temporary table - this is slow. (Some database do have a composite index from two tables, that would help a lot.) – Ariel Nov 1 '11 at 19:42
@tucuxi You also end up retrieving the data from table1 over and over unnecessarily, and if you are getting a lot of data from it you waste bandwidth, and worse your temporary table is so big it has to be sorted on disk, and then doing one query is millions of times slower than n + 1. In my case I was getting so much data from table1, and table2 had many many rows, but very little data that I actually ran out of disk space on the temp table because the cartesian produce was enormous. Switching to n+1 solved the problem completely. – Ariel Nov 1 '11 at 19:43
@tucuxi In a different comment you told me to get all the data from table2 in one query. In this case table2 is extremely large, and I am only using a subset of the data, just whatever data matches what I get from table1. But for table1 I have a very large and complex where condition to get just the data I need. Replicating that where for the table2 query would be slow. I could I suppose collect all the IDs from table1 in advance, then send them using IN(), but if there are a lot of IDs I wind up going over the limit to a length of a query. – Ariel Nov 1 '11 at 19:47
feedback

Supplier with a one-to-many relationship with Product. One Supplier has (supplies) many Products.

***** Table: Supplier *****
+-----+-------------------+
| ID  |       NAME        |
+-----+-------------------+
|  1  |  Supplier Name 1  |
|  2  |  Supplier Name 2  |
|  3  |  Supplier Name 3  |
|  4  |  Supplier Name 4  |
+-----+-------------------+

***** Table: Product *****
+-----+-----------+--------------------+-------+------------+
| ID  |   NAME    |     DESCRIPTION    | PRICE | SUPPLIERID |
+-----+-----------+--------------------+-------+------------+
|1    | Product 1 | Name for Product 1 |  2.0  |     1      |
|2    | Product 2 | Name for Product 2 | 22.0  |     1      |
|3    | Product 3 | Name for Product 3 | 30.0  |     2      |
|4    | Product 4 | Name for Product 4 |  7.0  |     3      |
+-----+-----------+--------------------+-------+------------+

Factors:

  • Lazy mode for Supplier set to “true” (default)

  • Fetch mode used for querying on Product is Select

  • Fetch mode (default): Supplier information is accessed

  • Caching does not play a role for the first time the

  • Supplier is accessed

Fetch mode is Select Fetch (default)

// It takes Select fetch mode as a default
Query query = session.createQuery( "from Product p");
List list = query.list();
// Supplier is being accessed
displayProductsListWithSupplierName(results);

// It takes Select fetch mode as a default
Query query = session.createQuery( "from Product p");
List list = query.list();
// Supplier is being accessed
displayProductsListWithSupplierName(results);

select ... various field names ... from PRODUCT
select ... various field names ... from SUPPLIER where SUPPLIER.id=?
select ... various field names ... from SUPPLIER where SUPPLIER.id=?
select ... various field names ... from SUPPLIER where SUPPLIER.id=?

Result:

  • 1 select statement for Product
  • N select statements for Supplier

This is N+1 select problem!

link|improve this answer
3  
The code block is repeated, is that intentional? – Abhijeet Kashnia Sep 30 '10 at 15:18
feedback

Here's a good description of the problem - http://www.realsolve.co.uk/site/tech/hib-tip-pitfall.php?name=why-lazy

Now that you understand the problem it can typically be avoided by doing a join fetch in your query. This basically forces the fetch of the lazy loaded object so the data is retrieved in one query instead of n+1 queries. Hope this helps.

link|improve this answer
feedback

In my opinion the article written in Hibernate Pitfall: Why Relationships Should Be Lazy is exactly opposite of real N+1 issue is.

If you need correct explanation please refer Hibernate - Chapter 19: Improving Performance - Fetching Strategies

Select fetching (the default) is extremely vulnerable to N+1 selects problems, so we might want to enable join fetching

link|improve this answer
i read the hibernate page. It doesn't say what the N+1 selects problem actually is. But it says you can use joins to fix it. – Ian Boyd Aug 26 '10 at 11:25
feedback

Suppose you have COMPANY and EMPLOYEE. COMPANY has many EMPLOYEES (i.e. EMPLOYEE has a field COMPANY_ID).

In some O/R configurations, when you have a mapped Company object and go to access its Employee objects, the O/R tool will do one select for every employee, wheras if you were just doing things in straight SQL, you could select * from employees where company_id = XX. Thus N (# of employees) plus 1 (company)

This is how the initial versions of EJB Entity Beans worked. I believe things like Hibernate have done away with this, but I'm not too sure. Most tools usually include info as to their strategy for mapping.

link|improve this answer
feedback

This problem doesn't just exist in ORMs. It can certainly be found in plenty of applications that don't use them. There is an explanation of one way to get around the issue in Scott Rudy's HP blog.

link|improve this answer
feedback

We moved away from the ORM in Django because of this problem. Basically, if you try and do

for p in person:
    print p.car.colour

The ORM will happily return all people (typically as instances of a Person object), but then it will need to query the car table for each Person.

A simple and very effective approach to this is something I call "fanfolding", which avoids the nonsensical idea that query results from a relational database should map back to the original tables from which the query is composed.

Step 1: Wide select

  select * from people_car_colour; # this is a view or sql function

This will return something like

  p.id | p.name | p.telno | car.id | car.type | car.colour
  -----+--------+---------+--------+----------+-----------
  2    | jones  | 2145    | 77     | ford     | red
  2    | jones  | 2145    | 1012   | toyota   | blue
  16   | ashby  | 124     | 99     | bmw      | yellow

Step 2: Objectify

Suck the results into a generic object creator with an argument to split after the third item. This means that "jones" object won't be made more than once.

Step 3: Render

for p in people:
    print p.car.colour # no more car queries

See this web page for an implementation of fanfolding for python.

link|improve this answer
i'm so glad i stumbled on your post, because i thought i was going crazy. when i found out about the N+1 problem, my immediate thought was- well, why don't you just create a view that contains all the information you need, and pull from that view? you have validated my position. thank you sir. – generalt Sep 16 '11 at 15:07
feedback

The supplied link has a very simply example of the n + 1 problem. If you apply it to Hibernate it's basically talking about the same thing. When you query for an object, the entity is loaded but any associations (unless configured otherwise) will be lazy loaded. Hence one query for the root objects and another query to load the associations for each of these. 100 objects returned means one initial query and then 100 additional queries to get the association for each, n + 1.

http://pramatr.com/2009/02/05/sql-n-1-selects-explained/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.