Comparison of OpenJPA with Derby server vs Hibernate with H2 embedded
Each of the following tables focuses on a specific database operation, where the last table presents average results comparison.
Speed comparison of JPA database persistence operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded |
Basic Person Test | 3.1 | 18.1 | 2.7 | 9.0 | 2.9 | 13.5 |
Element Collection Test | 2.0 | 13.0 | 1.7 | 6.8 | 1.8 | 9.9 |
Inheritance Test | 3.0 | 21.0 | 2.3 | 9.4 | 2.6 | 15.2 |
Indexing Test | 4.7 | 29.9 | 4.1 | 18.4 | 4.4 | 24.1 |
Graph (Binary Tree) Test | 0.71 | 17.2 | 0.64 | 20.1 | 0.67 | 18.7 |
Multithreading Test | 6.0 | 36.9 | 3.8 | 11.5 | 4.9 | 24.2 |
All Tests | 3.3 | 22.6 | 2.5 | 12.5 | 2.9 | 17.6 |
The results above show that in general Hibernate with H2 embedded is much more efficient than OpenJPA with Derby server in persisting JPA entity objects to the database. Comparing the normalized speed of OpenJPA with Derby database server (2.9) to the normalized speed of Hibernate with H2 embedded database (17.6) reveals that in these tests, Hibernate with H2 embedded is 6.1 times faster than OpenJPA with Derby server.
A huge performance gap has been detected when using graphs of objects with large transaction size. Comparing the normalized speed of OpenJPA with Derby database server (0.64) to the normalized speed of Hibernate with H2 embedded database (20.1) reveals that in that case, Hibernate with H2 embedded is 31.4 times faster than OpenJPA with Derby server.
Speed comparison of JPA database retrieval operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded |
Basic Person Test | 0.78 | 16.6 | 11.6 | 13.3 | 6.2 | 15.0 |
Element Collection Test | 0.0024 | 4.3 | 1.1 | 4.0 | 0.54 | 4.1 |
Inheritance Test | 0.014 | 10.4 | 5.0 | 17.5 | 2.5 | 13.9 |
Indexing Test | 0.62 | 10.8 | 13.0 | 15.2 | 6.8 | 13.0 |
Graph (Binary Tree) Test | 0.065 | 2.5 | 0.39 | 4.0 | 0.23 | 3.3 |
Multithreading Test | 1.6 | 16.2 | 19.0 | 15.7 | 10.3 | 15.9 |
All Tests | 0.51 | 10.1 | 8.4 | 11.6 | 4.4 | 10.9 |
The results above show that in general Hibernate with H2 embedded is more efficient than OpenJPA with Derby server in retrieving JPA entity objects from the database. Comparing the normalized speed of OpenJPA with Derby database server (4.4) to the normalized speed of Hibernate with H2 embedded database (10.9) reveals that in these tests, Hibernate with H2 embedded is 2.5 times faster than OpenJPA with Derby server.
A huge performance gap has been detected when using JPA element collections with small retrieval size. Comparing the normalized speed of OpenJPA with Derby database server (0.0024) to the normalized speed of Hibernate with H2 embedded database (4.3) reveals that in that case, Hibernate with H2 embedded is 1,792 times faster than OpenJPA with Derby server.
Speed comparison of JPA database query operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded |
Basic Person Test | 29.2 | 4.5 | 5.5 | 1.2 | 17.3 | 2.8 |
Element Collection Test | 2.2 | 4.4 | 1.4 | 1.4 | 1.8 | 2.9 |
Inheritance Test | 2.2 | 3.1 | 1.0 | 1.5 | 1.6 | 2.3 |
Indexing Test | 2.2 | 6.6 | 11.7 | 10.5 | 7.0 | 8.6 |
Multithreading Test | 35.5 | 1.2 | 8.3 | 0.59 | 21.9 | 0.89 |
All Tests | 14.3 | 4.0 | 5.6 | 3.0 | 9.9 | 3.5 |
The results above show that in general OpenJPA with Derby server is more efficient than Hibernate with H2 embedded in executing the tested JPA queries. Comparing the normalized speed of Hibernate with H2 embedded database (3.5) to the normalized speed of OpenJPA with Derby database server (9.9) reveals that in these tests, OpenJPA with Derby server is 2.8 times faster than Hibernate with H2 embedded.
A huge performance gap has been detected when using multithreading with small retrieval size. Comparing the normalized speed of Hibernate with H2 embedded database (1.2) to the normalized speed of OpenJPA with Derby database server (35.5) reveals that in that case, OpenJPA with Derby server is 29.6 times faster than Hibernate with H2 embedded.
On the other hand, OpenJPA with Derby server is slower, for instance, when using database indexes with small retrieval size. Comparing the normalized speed of OpenJPA with Derby database server (2.2) to the normalized speed of Hibernate with H2 embedded database (6.6) reveals that in that case, OpenJPA with Derby server is 3.0 times slower than Hibernate with H2 embedded.
Speed comparison of JPA database update operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded |
Basic Person Test | 1.5 | 12.1 | 4.0 | 6.5 | 2.8 | 9.3 |
Element Collection Test | 0.0081 | 7.4 | 1.9 | 5.3 | 0.94 | 6.3 |
Inheritance Test | 0.043 | 10.8 | 3.8 | 8.5 | 1.9 | 9.6 |
Indexing Test | 1.8 | 10.0 | 6.8 | 7.5 | 4.3 | 8.8 |
Graph (Binary Tree) Test | 0.16 | 4.4 | 0.27 | 2.3 | 0.22 | 3.4 |
Multithreading Test | 6.9 | 16.2 | 5.0 | 4.0 | 5.9 | 10.1 |
All Tests | 1.7 | 10.1 | 3.6 | 5.7 | 2.7 | 7.9 |
The results above show that in general Hibernate with H2 embedded is more efficient than OpenJPA with Derby server in updating JPA entity objects in the database. Comparing the normalized speed of OpenJPA with Derby database server (2.7) to the normalized speed of Hibernate with H2 embedded database (7.9) reveals that in these tests, Hibernate with H2 embedded is 2.9 times faster than OpenJPA with Derby server.
A huge performance gap has been detected when using JPA element collections with small transaction size. Comparing the normalized speed of OpenJPA with Derby database server (0.0081) to the normalized speed of Hibernate with H2 embedded database (7.4) reveals that in that case, Hibernate with H2 embedded is 914 times faster than OpenJPA with Derby server.
Speed comparison of JPA database removal operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded |
Basic Person Test | 1.4 | 19.7 | 3.7 | 11.4 | 2.5 | 15.5 |
Element Collection Test | 0.0082 | 6.9 | 1.4 | 4.5 | 0.71 | 5.7 |
Inheritance Test | 0.035 | 15.6 | 2.5 | 12.9 | 1.3 | 14.2 |
Indexing Test | 2.3 | 23.2 | 3.5 | 12.4 | 2.9 | 17.8 |
Graph (Binary Tree) Test | 0.13 | 4.0 | 0.35 | 4.2 | 0.24 | 4.1 |
Multithreading Test | 3.6 | 27.4 | 4.0 | 22.7 | 3.8 | 25.0 |
All Tests | 1.3 | 16.1 | 2.6 | 11.4 | 1.9 | 13.7 |
The results above show that in general Hibernate with H2 embedded is much more efficient than OpenJPA with Derby server in deleting JPA entity objects from the database. Comparing the normalized speed of OpenJPA with Derby database server (1.9) to the normalized speed of Hibernate with H2 embedded database (13.7) reveals that in these tests, Hibernate with H2 embedded is 7.2 times faster than OpenJPA with Derby server.
A huge performance gap has been detected when using JPA element collections with small transaction size. Comparing the normalized speed of OpenJPA with Derby database server (0.0082) to the normalized speed of Hibernate with H2 embedded database (6.9) reveals that in that case, Hibernate with H2 embedded is 841 times faster than OpenJPA with Derby server.
Comparison of JPA/Database speed - the averages (normalized score, higher is better)
Transaction/Retrieval Size | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded | OpenJPA Derby server | Hibernate H2 embedded |
Basic Person Test | 7.2 | 14.2 | 5.5 | 8.3 | 6.4 | 11.2 |
Element Collection Test | 0.84 | 7.2 | 1.5 | 4.4 | 1.2 | 5.8 |
Inheritance Test | 1.1 | 12.2 | 2.9 | 9.9 | 2.0 | 11.0 |
Indexing Test | 2.3 | 16.1 | 7.8 | 12.8 | 5.1 | 14.5 |
Graph (Binary Tree) Test | 0.27 | 7.0 | 0.41 | 7.7 | 0.34 | 7.3 |
Multithreading Test | 10.7 | 19.6 | 8.0 | 10.9 | 9.4 | 15.2 |
All Tests | 3.9 | 12.9 | 4.5 | 9.0 | 4.2 | 11.0 |
The results above show that in general Hibernate with H2 embedded is more efficient than OpenJPA with Derby server in performing JPA database operations. Comparing the normalized speed of OpenJPA with Derby database server (4.2) to the normalized speed of Hibernate with H2 embedded database (11.0) reveals that in these tests, Hibernate with H2 embedded is 2.6 times faster than OpenJPA with Derby server.
A huge performance gap has been detected when using graphs of objects with small transaction/retrieval size. Comparing the normalized speed of OpenJPA with Derby database server (0.27) to the normalized speed of Hibernate with H2 embedded database (7.0) reveals that in that case, Hibernate with H2 embedded is 25.9 times faster than OpenJPA with Derby server.
Other Head to Head DBMS/JPA Comparisons
OpenJPA with Derby server against:
- Oracle Database 11g
- IBM DB2 10
- Microsoft SQL Server 2008
- DataNucleus with Derby embedded
- DataNucleus with H2 embedded
- DataNucleus with HSQLDB embedded
- DataNucleus with DB4O embedded
- DataNucleus with Derby server
- DataNucleus with H2 server
- DataNucleus with MySQL server
- DataNucleus with PostgreSQL server
- EclipseLink with Derby embedded
- EclipseLink with H2 embedded
- EclipseLink with HSQLDB embedded
- EclipseLink with SQLite embedded
- EclipseLink with Derby server
- EclipseLink with H2 server
- EclipseLink with MySQL server
- EclipseLink with PostgreSQL server
- Hibernate with Derby embedded
- Hibernate with H2 embedded
- Hibernate with HSQLDB embedded
- Hibernate with SQLite embedded
- Hibernate with Derby server
- Hibernate with H2 server
- Hibernate with MySQL server
- Hibernate with PostgreSQL server
- OpenJPA with Derby embedded
- OpenJPA with H2 embedded
- OpenJPA with HSQLDB embedded
- OpenJPA with H2 server
- OpenJPA with MySQL server
- OpenJPA with PostgreSQL server
- ObjectDB embedded
- ObjectDB server
Hibernate with H2 embedded against:
- Oracle Database 11g
- IBM DB2 10
- Microsoft SQL Server 2008
- DataNucleus with Derby embedded
- DataNucleus with H2 embedded
- DataNucleus with HSQLDB embedded
- DataNucleus with DB4O embedded
- DataNucleus with Derby server
- DataNucleus with H2 server
- DataNucleus with MySQL server
- DataNucleus with PostgreSQL server
- EclipseLink with Derby embedded
- EclipseLink with H2 embedded
- EclipseLink with HSQLDB embedded
- EclipseLink with SQLite embedded
- EclipseLink with Derby server
- EclipseLink with H2 server
- EclipseLink with MySQL server
- EclipseLink with PostgreSQL server
- Hibernate with Derby embedded
- Hibernate with HSQLDB embedded
- Hibernate with SQLite embedded
- Hibernate with Derby server
- Hibernate with H2 server
- Hibernate with MySQL server
- Hibernate with PostgreSQL server
- OpenJPA with Derby embedded
- OpenJPA with H2 embedded
- OpenJPA with HSQLDB embedded
- OpenJPA with Derby server
- OpenJPA with H2 server
- OpenJPA with MySQL server
- OpenJPA with PostgreSQL server
- ObjectDB embedded
- ObjectDB server