Comparison of EclipseLink with HSQLDB embedded vs DataNucleus with H2 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 | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server |
Basic Person Test | 27.1 | 3.4 | 17.2 | 2.2 | 22.2 | 2.8 |
Element Collection Test | 17.2 | 1.2 | 8.2 | 0.64 | 12.7 | 0.92 |
Inheritance Test | 26.7 | 3.0 | 11.9 | 1.9 | 19.3 | 2.4 |
Indexing Test | 30.6 | 5.3 | 18.6 | 3.5 | 24.6 | 4.4 |
Graph (Binary Tree) Test | 20.0 | 2.1 | 15.9 | 1.3 | 18.0 | 1.7 |
Multithreading Test | 32.5 | 10.0 | 11.4 | 4.3 | 22.0 | 7.2 |
All Tests | 25.7 | 4.2 | 13.9 | 2.3 | 19.8 | 3.2 |
The results above show that in general EclipseLink with HSQLDB embedded is much more efficient than DataNucleus with H2 server in persisting JPA entity objects to the database. Comparing the normalized speed of DataNucleus with H2 database server (3.2) to the normalized speed of EclipseLink with HSQLDB embedded database (19.8) reveals that in these tests, EclipseLink with HSQLDB embedded is 6.2 times faster than DataNucleus with H2 server.
A huge performance gap has been detected when using JPA element collections with small transaction size. Comparing the normalized speed of DataNucleus with H2 database server (1.2) to the normalized speed of EclipseLink with HSQLDB embedded database (17.2) reveals that in that case, EclipseLink with HSQLDB embedded is 14.3 times faster than DataNucleus with H2 server.
Speed comparison of JPA database retrieval operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server |
Basic Person Test | 24.4 | 2.5 | 36.0 | 5.2 | 30.2 | 3.9 |
Element Collection Test | 14.9 | 0.56 | 19.1 | 1.1 | 17.0 | 0.82 |
Inheritance Test | 22.8 | 2.2 | 40.0 | 6.1 | 31.4 | 4.2 |
Indexing Test | 20.7 | 2.1 | 38.7 | 7.7 | 29.7 | 4.9 |
Graph (Binary Tree) Test | 8.7 | 5.7 | 14.2 | 8.9 | 11.4 | 7.3 |
Multithreading Test | 24.2 | 2.3 | 28.0 | 8.7 | 26.1 | 5.5 |
All Tests | 19.3 | 2.5 | 29.3 | 6.3 | 24.3 | 4.4 |
The results above show that in general EclipseLink with HSQLDB embedded is much more efficient than DataNucleus with H2 server in retrieving JPA entity objects from the database. Comparing the normalized speed of DataNucleus with H2 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 DataNucleus with H2 server.
A huge performance gap has been detected when using JPA element collections with small retrieval size. Comparing the normalized speed of DataNucleus with H2 database server (0.56) to the normalized speed of EclipseLink with HSQLDB embedded database (14.9) reveals that in that case, EclipseLink with HSQLDB embedded is 26.6 times faster than DataNucleus with H2 server.
Speed comparison of JPA database query operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server |
Basic Person Test | 2.9 | 4.1 | 0.88 | 1.3 | 1.9 | 2.7 |
Element Collection Test | 3.2 | 4.0 | 1.4 | 0.49 | 2.3 | 2.3 |
Inheritance Test | 2.6 | 2.9 | 1.1 | 1.5 | 1.9 | 2.2 |
Indexing Test | 21.5 | 0.0036 | 33.3 | 1.5 | 27.4 | 0.75 |
Multithreading Test | 1.1 | 1.3 | 0.52 | failed | 0.82 | 1.3 |
All Tests | 6.3 | 2.5 | 7.4 | 1.2 | 6.9 | 1.9 |
DataNucleus with H2 server has failed in 1 tests (see exceptions).
The results above show that in general EclipseLink with HSQLDB embedded is much more efficient than DataNucleus with H2 server in executing the tested JPA queries. Comparing the normalized speed of DataNucleus with H2 database server (1.9) to the normalized speed of EclipseLink with HSQLDB embedded database (6.9) reveals that in these tests, EclipseLink with HSQLDB embedded is 3.6 times faster than DataNucleus with H2 server.
A huge performance gap has been detected when using database indexes with small retrieval size. Comparing the normalized speed of DataNucleus with H2 database server (0.0036) to the normalized speed of EclipseLink with HSQLDB embedded database (21.5) reveals that in that case, EclipseLink with HSQLDB embedded is 5,972 times faster than DataNucleus with H2 server.
Speed comparison of JPA database update operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server |
Basic Person Test | 17.9 | 2.5 | 7.0 | 1.4 | 12.5 | 1.9 |
Element Collection Test | 14.6 | 2.0 | 8.3 | 1.0 | 11.4 | 1.5 |
Inheritance Test | 16.2 | 2.4 | 9.7 | 2.3 | 13.0 | 2.3 |
Indexing Test | 12.0 | 2.7 | 6.8 | 3.0 | 9.4 | 2.9 |
Graph (Binary Tree) Test | 4.7 | 1.8 | 3.4 | 0.60 | 4.0 | 1.2 |
Multithreading Test | 24.4 | failed | 4.4 | failed | 14.4 | failed |
All Tests | 15.0 | 2.3 | 6.6 | 1.7 | 10.8 | 2.0 |
DataNucleus with H2 server has failed in 2 tests (see exceptions).
The results above show that in general EclipseLink with HSQLDB embedded is much more efficient than DataNucleus with H2 server in updating JPA entity objects in the database. Comparing the normalized speed of DataNucleus with H2 database server (2.0) to the normalized speed of EclipseLink with HSQLDB embedded database (10.8) reveals that in these tests, EclipseLink with HSQLDB embedded is 5.4 times faster than DataNucleus with H2 server.
A large performance gap has been detected when using JPA element collections with large transaction size. Comparing the normalized speed of DataNucleus with H2 database server (1.0) to the normalized speed of EclipseLink with HSQLDB embedded database (8.3) reveals that in that case, EclipseLink with HSQLDB embedded is 8.3 times faster than DataNucleus with H2 server.
Speed comparison of JPA database removal operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server |
Basic Person Test | 32.3 | 3.4 | 20.3 | 1.3 | 26.3 | 2.3 |
Element Collection Test | 14.3 | 1.5 | 6.0 | 0.68 | 10.2 | 1.1 |
Inheritance Test | 29.2 | 2.7 | 23.9 | 1.3 | 26.6 | 2.0 |
Indexing Test | 55.3 | 5.7 | 27.1 | 1.9 | 41.2 | 3.8 |
Graph (Binary Tree) Test | 6.8 | 1.5 | 14.1 | 1.2 | 10.4 | 1.3 |
Multithreading Test | 52.9 | failed | 28.4 | 5.1 | 40.6 | 5.1 |
All Tests | 31.8 | 3.0 | 20.0 | 1.9 | 25.9 | 2.4 |
DataNucleus with H2 server has failed in 1 tests (see exceptions).
The results above show that in general EclipseLink with HSQLDB embedded is much more efficient than DataNucleus with H2 server in deleting JPA entity objects from the database. Comparing the normalized speed of DataNucleus with H2 database server (2.4) to the normalized speed of EclipseLink with HSQLDB embedded database (25.9) reveals that in these tests, EclipseLink with HSQLDB embedded is 10.8 times faster than DataNucleus with H2 server.
A huge performance gap has been detected when using class inheritance in the object model with large transaction size. Comparing the normalized speed of DataNucleus with H2 database server (1.3) to the normalized speed of EclipseLink with HSQLDB embedded database (23.9) reveals that in that case, EclipseLink with HSQLDB embedded is 18.4 times faster than DataNucleus with H2 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 | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server | EclipseLink HSQLDB embedded | DataNucleus H2 server |
Basic Person Test | 20.9 | 3.2 | 16.3 | 2.3 | 18.6 | 2.7 |
Element Collection Test | 12.8 | 1.9 | 8.6 | 0.78 | 10.7 | 1.3 |
Inheritance Test | 19.5 | 2.6 | 17.3 | 2.6 | 18.4 | 2.6 |
Indexing Test | 28.0 | 3.2 | 24.9 | 3.5 | 26.5 | 3.3 |
Graph (Binary Tree) Test | 10.0 | 2.8 | 11.9 | 3.0 | 11.0 | 2.9 |
Multithreading Test | 27.0 | 4.5 | 14.6 | 6.0 | 20.8 | 5.3 |
All Tests | 20.1 | 2.9 | 15.7 | 2.8 | 17.9 | 2.9 |
The results above show that in general EclipseLink with HSQLDB embedded is much more efficient than DataNucleus with H2 server in performing JPA database operations. Comparing the normalized speed of DataNucleus with H2 database server (2.9) to the normalized speed of EclipseLink with HSQLDB embedded database (17.9) reveals that in these tests, EclipseLink with HSQLDB embedded is 6.2 times faster than DataNucleus with H2 server.
A huge performance gap has been detected when using JPA element collections with large transaction/retrieval size. Comparing the normalized speed of DataNucleus with H2 database server (0.78) to the normalized speed of EclipseLink with HSQLDB embedded database (8.6) reveals that in that case, EclipseLink with HSQLDB embedded is 11.0 times faster than DataNucleus with H2 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
DataNucleus with H2 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 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 Derby server
- OpenJPA with H2 server
- OpenJPA with MySQL server
- OpenJPA with PostgreSQL server
- ObjectDB embedded
- ObjectDB server