Comparison of EclipseLink with HSQLDB embedded vs OpenJPA with Derby server
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 | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server |
Basic Person Test | 27.1 | 3.1 | 17.2 | 2.7 | 22.2 | 2.9 |
Element Collection Test | 17.2 | 2.0 | 8.2 | 1.7 | 12.7 | 1.8 |
Inheritance Test | 26.7 | 3.0 | 11.9 | 2.3 | 19.3 | 2.6 |
Indexing Test | 30.6 | 4.7 | 18.6 | 4.1 | 24.6 | 4.4 |
Graph (Binary Tree) Test | 20.0 | 0.71 | 15.9 | 0.64 | 18.0 | 0.67 |
Multithreading Test | 32.5 | 6.0 | 11.4 | 3.8 | 22.0 | 4.9 |
All Tests | 25.7 | 3.3 | 13.9 | 2.5 | 19.8 | 2.9 |
The results above show that in general EclipseLink with HSQLDB 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 EclipseLink with HSQLDB embedded database (19.8) reveals that in these tests, EclipseLink with HSQLDB embedded is 6.8 times faster than OpenJPA with Derby server.
A huge performance gap has been detected when using graphs of objects with small transaction size. Comparing the normalized speed of OpenJPA with Derby database server (0.71) to the normalized speed of EclipseLink with HSQLDB embedded database (20.0) reveals that in that case, EclipseLink with HSQLDB embedded is 28.2 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 | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server |
Basic Person Test | 24.4 | 0.78 | 36.0 | 11.6 | 30.2 | 6.2 |
Element Collection Test | 14.9 | 0.0024 | 19.1 | 1.1 | 17.0 | 0.54 |
Inheritance Test | 22.8 | 0.014 | 40.0 | 5.0 | 31.4 | 2.5 |
Indexing Test | 20.7 | 0.62 | 38.7 | 13.0 | 29.7 | 6.8 |
Graph (Binary Tree) Test | 8.7 | 0.065 | 14.2 | 0.39 | 11.4 | 0.23 |
Multithreading Test | 24.2 | 1.6 | 28.0 | 19.0 | 26.1 | 10.3 |
All Tests | 19.3 | 0.51 | 29.3 | 8.4 | 24.3 | 4.4 |
The results above show that in general EclipseLink with HSQLDB embedded is much 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 EclipseLink with HSQLDB embedded database (24.3) reveals that in these tests, EclipseLink with HSQLDB embedded is 5.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 EclipseLink with HSQLDB embedded database (14.9) reveals that in that case, EclipseLink with HSQLDB embedded is 6,208 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 | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server |
Basic Person Test | 2.9 | 29.2 | 0.88 | 5.5 | 1.9 | 17.3 |
Element Collection Test | 3.2 | 2.2 | 1.4 | 1.4 | 2.3 | 1.8 |
Inheritance Test | 2.6 | 2.2 | 1.1 | 1.0 | 1.9 | 1.6 |
Indexing Test | 21.5 | 2.2 | 33.3 | 11.7 | 27.4 | 7.0 |
Multithreading Test | 1.1 | 35.5 | 0.52 | 8.3 | 0.82 | 21.9 |
All Tests | 6.3 | 14.3 | 7.4 | 5.6 | 6.9 | 9.9 |
The results above show that in general OpenJPA with Derby server is more efficient than EclipseLink with HSQLDB embedded in executing the tested JPA queries.
A huge performance gap has been detected when using multithreading with small retrieval size. Comparing the normalized speed of EclipseLink with HSQLDB embedded database (1.1) to the normalized speed of OpenJPA with Derby database server (35.5) reveals that in that case, OpenJPA with Derby server is 32.3 times faster than EclipseLink with HSQLDB 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 EclipseLink with HSQLDB embedded database (21.5) reveals that in that case, OpenJPA with Derby server is 9.8 times slower than EclipseLink with HSQLDB embedded.
Speed comparison of JPA database update operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server |
Basic Person Test | 17.9 | 1.5 | 7.0 | 4.0 | 12.5 | 2.8 |
Element Collection Test | 14.6 | 0.0081 | 8.3 | 1.9 | 11.4 | 0.94 |
Inheritance Test | 16.2 | 0.043 | 9.7 | 3.8 | 13.0 | 1.9 |
Indexing Test | 12.0 | 1.8 | 6.8 | 6.8 | 9.4 | 4.3 |
Graph (Binary Tree) Test | 4.7 | 0.16 | 3.4 | 0.27 | 4.0 | 0.22 |
Multithreading Test | 24.4 | 6.9 | 4.4 | 5.0 | 14.4 | 5.9 |
All Tests | 15.0 | 1.7 | 6.6 | 3.6 | 10.8 | 2.7 |
The results above show that in general EclipseLink with HSQLDB embedded is much 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 EclipseLink with HSQLDB embedded database (10.8) reveals that in these tests, EclipseLink with HSQLDB embedded is 4.0 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 EclipseLink with HSQLDB embedded database (14.6) reveals that in that case, EclipseLink with HSQLDB embedded is 1,802 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 | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server |
Basic Person Test | 32.3 | 1.4 | 20.3 | 3.7 | 26.3 | 2.5 |
Element Collection Test | 14.3 | 0.0082 | 6.0 | 1.4 | 10.2 | 0.71 |
Inheritance Test | 29.2 | 0.035 | 23.9 | 2.5 | 26.6 | 1.3 |
Indexing Test | 55.3 | 2.3 | 27.1 | 3.5 | 41.2 | 2.9 |
Graph (Binary Tree) Test | 6.8 | 0.13 | 14.1 | 0.35 | 10.4 | 0.24 |
Multithreading Test | 52.9 | 3.6 | 28.4 | 4.0 | 40.6 | 3.8 |
All Tests | 31.8 | 1.3 | 20.0 | 2.6 | 25.9 | 1.9 |
The results above show that in general EclipseLink with HSQLDB 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 EclipseLink with HSQLDB embedded database (25.9) reveals that in these tests, EclipseLink with HSQLDB embedded is 13.6 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 EclipseLink with HSQLDB embedded database (14.3) reveals that in that case, EclipseLink with HSQLDB embedded is 1,744 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 | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server | EclipseLink HSQLDB embedded | OpenJPA Derby server |
Basic Person Test | 20.9 | 7.2 | 16.3 | 5.5 | 18.6 | 6.4 |
Element Collection Test | 12.8 | 0.84 | 8.6 | 1.5 | 10.7 | 1.2 |
Inheritance Test | 19.5 | 1.1 | 17.3 | 2.9 | 18.4 | 2.0 |
Indexing Test | 28.0 | 2.3 | 24.9 | 7.8 | 26.5 | 5.1 |
Graph (Binary Tree) Test | 10.0 | 0.27 | 11.9 | 0.41 | 11.0 | 0.34 |
Multithreading Test | 27.0 | 10.7 | 14.6 | 8.0 | 20.8 | 9.4 |
All Tests | 20.1 | 3.9 | 15.7 | 4.5 | 17.9 | 4.2 |
The results above show that in general EclipseLink with HSQLDB embedded is much 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 EclipseLink with HSQLDB embedded database (17.9) reveals that in these tests, EclipseLink with HSQLDB embedded is 4.3 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 EclipseLink with HSQLDB embedded database (10.0) reveals that in that case, EclipseLink with HSQLDB embedded is 37.0 times faster than OpenJPA with Derby server.
Other Head to Head DBMS/JPA Comparisons
EclipseLink with HSQLDB 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 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 Derby server
- OpenJPA with H2 server
- OpenJPA with MySQL server
- OpenJPA with PostgreSQL server
- ObjectDB embedded
- ObjectDB server
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