Comparison of Hibernate with Derby embedded vs OpenJPA 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 | |||
---|---|---|---|---|---|---|
  | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded |
Basic Person Test | 5.9 | 17.1 | 3.8 | 5.8 | 4.9 | 11.5 |
Element Collection Test | 2.9 | 10.9 | 1.8 | 4.9 | 2.3 | 7.9 |
Inheritance Test | 5.3 | 14.3 | 3.7 | 5.9 | 4.5 | 10.1 |
Indexing Test | 7.0 | 24.4 | 4.8 | 13.7 | 5.9 | 19.1 |
Graph (Binary Tree) Test | 1.9 | 6.8 | 1.7 | 6.7 | 1.8 | 6.7 |
Multithreading Test | 10.5 | 34.2 | 3.7 | 10.2 | 7.1 | 22.2 |
All Tests | 5.6 | 17.9 | 3.3 | 7.9 | 4.4 | 12.9 |
The results above show that in general OpenJPA with H2 embedded is more efficient than Hibernate with Derby embedded in persisting JPA entity objects to the database. Comparing the normalized speed of Hibernate with Derby embedded database (4.4) to the normalized speed of OpenJPA with H2 embedded database (12.9) reveals that in these tests, OpenJPA with H2 embedded is 2.9 times faster than Hibernate with Derby embedded.
A large performance gap has been detected when using graphs of objects with large transaction size. Comparing the normalized speed of Hibernate with Derby embedded database (1.7) to the normalized speed of OpenJPA with H2 embedded database (6.7) reveals that in that case, OpenJPA with H2 embedded is 3.9 times faster than Hibernate with Derby embedded.
Speed comparison of JPA database retrieval operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded |
Basic Person Test | 14.2 | 14.6 | 16.4 | 27.2 | 15.3 | 20.9 |
Element Collection Test | 4.4 | 0.0046 | 4.9 | 4.3 | 4.6 | 2.1 |
Inheritance Test | 10.3 | 0.011 | 18.6 | 7.4 | 14.4 | 3.7 |
Indexing Test | 10.0 | 17.0 | 16.4 | 35.0 | 13.2 | 26.0 |
Graph (Binary Tree) Test | 2.6 | 1.0 | 3.0 | 1.4 | 2.8 | 1.2 |
Multithreading Test | 19.3 | 18.7 | 19.3 | 27.6 | 19.3 | 23.1 |
All Tests | 10.1 | 8.6 | 13.1 | 17.1 | 11.6 | 12.8 |
The results above show that in general OpenJPA with H2 embedded is slightly more efficient than Hibernate with Derby embedded in retrieving JPA entity objects from the database.
A large performance gap has been detected when using database indexes with large retrieval size. Comparing the normalized speed of Hibernate with Derby embedded database (16.4) to the normalized speed of OpenJPA with H2 embedded database (35.0) reveals that in that case, OpenJPA with H2 embedded is 2.1 times faster than Hibernate with Derby embedded.
On the other hand, OpenJPA with H2 embedded is slower, for instance, when using JPA element collections with small retrieval size. Comparing the normalized speed of OpenJPA with H2 embedded database (0.0046) to the normalized speed of Hibernate with Derby embedded database (4.4) reveals that in that case, OpenJPA with H2 embedded is 957 times slower than Hibernate with Derby embedded.
Speed comparison of JPA database query operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded |
Basic Person Test | 49.3 | 5.0 | 6.8 | 1.1 | 28.1 | 3.1 |
Element Collection Test | 37.6 | 1.7 | 2.7 | 1.3 | 20.1 | 1.5 |
Inheritance Test | 24.1 | 2.2 | 7.6 | 1.2 | 15.9 | 1.7 |
Indexing Test | 5.3 | 13.8 | 14.8 | 23.2 | 10.1 | 18.5 |
Multithreading Test | 39.7 | 1.4 | 6.1 | 0.60 | 22.9 | 0.99 |
All Tests | 31.2 | 4.8 | 7.6 | 5.5 | 19.4 | 5.1 |
The results above show that in general Hibernate with Derby embedded is much more efficient than OpenJPA with H2 embedded in executing the tested JPA queries. Comparing the normalized speed of OpenJPA with H2 embedded database (5.1) to the normalized speed of Hibernate with Derby embedded database (19.4) reveals that in these tests, Hibernate with Derby embedded is 3.8 times faster than OpenJPA with H2 embedded.
A huge performance gap has been detected when using multithreading with small retrieval size. Comparing the normalized speed of OpenJPA with H2 embedded database (1.4) to the normalized speed of Hibernate with Derby embedded database (39.7) reveals that in that case, Hibernate with Derby embedded is 28.4 times faster than OpenJPA with H2 embedded.
On the other hand, Hibernate with Derby embedded is slower, for instance, when using database indexes with small retrieval size. Comparing the normalized speed of Hibernate with Derby embedded database (5.3) to the normalized speed of OpenJPA with H2 embedded database (13.8) reveals that in that case, Hibernate with Derby embedded is 2.6 times slower than OpenJPA with H2 embedded.
Speed comparison of JPA database update operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded |
Basic Person Test | 4.5 | 10.0 | 3.2 | 6.0 | 3.8 | 8.0 |
Element Collection Test | 3.9 | 0.011 | 3.1 | 3.8 | 3.5 | 1.9 |
Inheritance Test | 4.6 | 0.046 | 4.5 | 5.0 | 4.5 | 2.5 |
Indexing Test | 4.6 | 8.9 | 5.5 | 7.0 | 5.1 | 8.0 |
Graph (Binary Tree) Test | 2.7 | 2.4 | 1.2 | 1.3 | 2.0 | 1.9 |
Multithreading Test | 11.6 | 16.6 | 2.6 | 4.3 | 7.1 | 10.4 |
All Tests | 5.3 | 6.3 | 3.3 | 4.6 | 4.3 | 5.4 |
The results above show that in general OpenJPA with H2 embedded is slightly more efficient than Hibernate with Derby embedded in updating JPA entity objects in the database.
A large performance gap has been detected when using simple basic entities with small transaction size. Comparing the normalized speed of Hibernate with Derby embedded database (4.5) to the normalized speed of OpenJPA with H2 embedded database (10.0) reveals that in that case, OpenJPA with H2 embedded is 2.2 times faster than Hibernate with Derby embedded.
On the other hand, OpenJPA with H2 embedded is slower, for instance, when using JPA element collections with small transaction size. Comparing the normalized speed of OpenJPA with H2 embedded database (0.011) to the normalized speed of Hibernate with Derby embedded database (3.9) reveals that in that case, OpenJPA with H2 embedded is 355 times slower than Hibernate with Derby embedded.
Speed comparison of JPA database removal operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded |
Basic Person Test | 3.8 | 18.3 | 4.2 | 11.1 | 4.0 | 14.7 |
Element Collection Test | 2.3 | 0.012 | 1.5 | 2.9 | 1.9 | 1.4 |
Inheritance Test | 4.0 | 0.030 | 4.3 | 6.6 | 4.2 | 3.3 |
Indexing Test | 5.5 | 23.2 | 3.6 | 9.7 | 4.6 | 16.4 |
Graph (Binary Tree) Test | 0.74 | 1.8 | 0.96 | 2.4 | 0.85 | 2.1 |
Multithreading Test | 5.6 | 31.2 | 4.9 | 17.3 | 5.3 | 24.2 |
All Tests | 3.7 | 12.4 | 3.3 | 8.3 | 3.5 | 10.4 |
The results above show that in general OpenJPA with H2 embedded is more efficient than Hibernate with Derby embedded in deleting JPA entity objects from the database. Comparing the normalized speed of Hibernate with Derby embedded database (3.5) to the normalized speed of OpenJPA with H2 embedded database (10.4) reveals that in these tests, OpenJPA with H2 embedded is 3.0 times faster than Hibernate with Derby embedded.
A large performance gap has been detected when using multithreading with small transaction size. Comparing the normalized speed of Hibernate with Derby embedded database (5.6) to the normalized speed of OpenJPA with H2 embedded database (31.2) reveals that in that case, OpenJPA with H2 embedded is 5.6 times faster than Hibernate with Derby embedded.
On the other hand, OpenJPA with H2 embedded is slower, for instance, when using JPA element collections with small transaction size. Comparing the normalized speed of OpenJPA with H2 embedded database (0.012) to the normalized speed of Hibernate with Derby embedded database (2.3) reveals that in that case, OpenJPA with H2 embedded is 192 times slower than Hibernate with Derby embedded.
Comparison of database storage efficiency (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded |
Basic Person Test | 52.7 | 27.0 | 52.7 | 27.0 | 52.7 | 27.0 |
Element Collection Test | 42.3 | 30.6 | 42.3 | 30.6 | 42.3 | 30.6 |
Inheritance Test | 49.2 | 27.0 | 49.2 | 27.0 | 49.2 | 27.0 |
Indexing Test | 53.0 | 31.6 | 53.9 | 32.1 | 53.4 | 31.9 |
Graph (Binary Tree) Test | 13.1 | 28.5 | 9.8 | 21.4 | 11.5 | 24.9 |
Multithreading Test | 49.3 | 33.9 | 8.8 | 9.2 | 29.0 | 21.5 |
All Tests | 43.3 | 29.8 | 36.1 | 24.5 | 39.7 | 27.2 |
The results above show that in general Hibernate with Derby embedded is more efficient than OpenJPA with H2 embedded in using disk space.
On the other hand, Hibernate with Derby embedded is slower, for instance, when using graphs of objects with large transaction size. Comparing the normalized score of Hibernate with Derby embedded database (9.8) to the normalized score of OpenJPA with H2 embedded database (21.4) reveals that in that case, Hibernate with Derby embedded is 2.2 times less efficient than OpenJPA with H2 embedded.
Comparison of JPA/Database speed - the averages (normalized score, higher is better)
Transaction/Retrieval Size | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded | Hibernate Derby embedded | OpenJPA H2 embedded |
Basic Person Test | 15.5 | 13.0 | 6.9 | 10.2 | 11.2 | 11.6 |
Element Collection Test | 10.2 | 2.5 | 2.8 | 3.4 | 6.5 | 3.0 |
Inheritance Test | 9.7 | 3.3 | 7.7 | 5.2 | 8.7 | 4.3 |
Indexing Test | 6.5 | 17.5 | 9.0 | 17.7 | 7.8 | 17.6 |
Graph (Binary Tree) Test | 2.0 | 3.0 | 1.7 | 3.0 | 1.8 | 3.0 |
Multithreading Test | 17.3 | 20.4 | 7.3 | 12.0 | 12.3 | 16.2 |
All Tests | 10.5 | 10.2 | 6.1 | 8.8 | 8.3 | 9.5 |
The results above show that in general OpenJPA with H2 embedded is slightly more efficient than Hibernate with Derby embedded in performing JPA database operations.
A large performance gap has been detected when using database indexes with small transaction/retrieval size. Comparing the normalized speed of Hibernate with Derby embedded database (6.5) to the normalized speed of OpenJPA with H2 embedded database (17.5) reveals that in that case, OpenJPA with H2 embedded is 2.7 times faster than Hibernate with Derby embedded.
On the other hand, OpenJPA with H2 embedded is slower, for instance, when using JPA element collections with small transaction/retrieval size. Comparing the normalized speed of OpenJPA with H2 embedded database (2.5) to the normalized speed of Hibernate with Derby embedded database (10.2) reveals that in that case, OpenJPA with H2 embedded is 4.1 times slower than Hibernate with Derby embedded.
Other Head to Head DBMS/JPA Comparisons
Hibernate with Derby 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 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 Derby server
- OpenJPA with H2 server
- OpenJPA with MySQL server
- OpenJPA with PostgreSQL server
- ObjectDB embedded
- ObjectDB server
OpenJPA 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 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 HSQLDB embedded
- OpenJPA with Derby server
- OpenJPA with H2 server
- OpenJPA with MySQL server
- OpenJPA with PostgreSQL server
- ObjectDB embedded
- ObjectDB server