Let's say we have:

@Entity public class Order {
  @Id private int id;
  @OneToMany(mappedBy="order") private List<Item> items;
  ...
}

and

@Entity public class Item {
  @Id private int id;
  @ManyToOne private Order order;
  ...
}

And let's say there is 10.000 orders with each having 20 items.

We need to iterate thought all order and all their items. What is the best way to do it in JPA?

My issue is, if I just iterate the elements like:

for (Order order: em.createTypeQuery("select o from Order o", Order.class).getResultList()) {
    report.printOrder(order);
    for (Item item: order.getItems()) {
        report.printOrderItem(item);
    }
}

it will result in 10.001 sql queries: 1 time: select * from order 10.000 times: select * from item where order_id = ?

Is there any way to optimize it? Two queries? One query?

(We are using EclipseLink)

Thanks.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You may also want to consider the EclipseLink query Hint "eclipselink.batch" with value "o.items". This results in two queries but can be more effecient than once large joined query.

link|improve this answer
Thank you. I just tested it and found out: 1) You can use more that one hint of this type like: q.setHint("eclipselink.batch", "t.testSurveys"); q.setHint("eclipselink.batch", "t.testDefects"); 2) EclipseLink uses this batches hint in a lazy manner. It sends the seconds query to get o.items, not right away, but after you call first order.getItems(). – iimuhin Aug 18 '10 at 7:51
feedback

You may use join fetch (this also requires distinct since join fetch have a join semantics):

select distinct o from Order o join fetch o.items
link|improve this answer
Thank you. This is also helpful. But, after i tested it: join fetch transforms this query into "select distinct o.*, i.* from Order o, Item i where o.id = i.orderId", which means for every item the result set will transmit all the fields of the order. This lead to big overhead in some cases. – iimuhin Aug 18 '10 at 8:05
feedback

Your Answer

 
or
required, but never shown

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