solves this by splitting a large logical table into smaller physical pieces. This chapter emphasizes that partitioning is not a silver bullet; it is a last-resort optimization strategy after indexing and query tuning have been exhausted.
@Entity public class Order @OneToMany(fetch = FetchType.EAGER) List<OrderLine> lines;
