Comparison of DataNucleus with MySQL server vs Hibernate with HSQLDB 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 | |||
---|---|---|---|---|---|---|
  | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded |
Basic Person Test | 2.6 | 32.6 | 1.4 | 13.1 | 2.0 | 22.9 |
Element Collection Test | 1.0 | 15.1 | 0.48 | 8.2 | 0.76 | 11.7 |
Inheritance Test | 2.5 | 25.5 | 1.3 | 13.6 | 1.9 | 19.5 |
Indexing Test | 4.0 | 29.6 | 2.5 | 18.8 | 3.3 | 24.2 |
Graph (Binary Tree) Test | 1.1 | 13.8 | 0.99 | 15.6 | 1.1 | 14.7 |
Multithreading Test | 6.2 | 37.4 | 2.5 | 13.0 | 4.4 | 25.2 |
All Tests | 2.9 | 25.6 | 1.5 | 13.7 | 2.2 | 19.7 |
The results above show that in general Hibernate with HSQLDB embedded is much more efficient than DataNucleus with MySQL server in persisting JPA entity objects to the database. Comparing the normalized speed of DataNucleus with MySQL database server (2.2) to the normalized speed of Hibernate with HSQLDB embedded database (19.7) reveals that in these tests, Hibernate with HSQLDB embedded is 9.0 times faster than DataNucleus with MySQL server.
A huge performance gap has been detected when using JPA element collections with large transaction size. Comparing the normalized speed of DataNucleus with MySQL database server (0.48) to the normalized speed of Hibernate with HSQLDB embedded database (8.2) reveals that in that case, Hibernate with HSQLDB embedded is 17.1 times faster than DataNucleus with MySQL server.
Speed comparison of JPA database retrieval operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded |
Basic Person Test | 0.96 | 24.8 | 9.3 | 16.4 | 5.1 | 20.6 |
Element Collection Test | 0.18 | 11.3 | 0.77 | 10.8 | 0.47 | 11.0 |
Inheritance Test | 0.55 | 21.7 | 8.5 | 21.0 | 4.5 | 21.3 |
Indexing Test | 0.82 | 11.9 | 9.7 | 21.5 | 5.3 | 16.7 |
Graph (Binary Tree) Test | 2.1 | 3.6 | 3.5 | 4.7 | 2.8 | 4.1 |
Multithreading Test | 0.27 | 19.8 | 7.8 | 21.5 | 4.0 | 20.6 |
All Tests | 0.81 | 15.5 | 6.6 | 16.0 | 3.7 | 15.7 |
The results above show that in general Hibernate with HSQLDB embedded is much more efficient than DataNucleus with MySQL server in retrieving JPA entity objects from the database. Comparing the normalized speed of DataNucleus with MySQL database server (3.7) to the normalized speed of Hibernate with HSQLDB embedded database (15.7) reveals that in these tests, Hibernate with HSQLDB embedded is 4.2 times faster than DataNucleus with MySQL server.
A huge performance gap has been detected when using multithreading with small retrieval size. Comparing the normalized speed of DataNucleus with MySQL database server (0.27) to the normalized speed of Hibernate with HSQLDB embedded database (19.8) reveals that in that case, Hibernate with HSQLDB embedded is 73.3 times faster than DataNucleus with MySQL server.
Speed comparison of JPA database query operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded |
Basic Person Test | 7.2 | 3.6 | 2.2 | 0.88 | 4.7 | 2.2 |
Element Collection Test | 5.8 | 3.4 | 0.27 | 1.7 | 3.1 | 2.6 |
Inheritance Test | 2.9 | 2.9 | 1.7 | 1.0 | 2.3 | 1.9 |
Indexing Test | 0.0084 | 9.9 | 2.5 | 21.7 | 1.2 | 15.8 |
Multithreading Test | failed | 1.1 | failed | 0.58 | failed | 0.82 |
All Tests | 4.0 | 4.2 | 1.7 | 5.2 | 2.8 | 4.7 |
DataNucleus with MySQL server has failed in 2 tests (see exceptions).
The results above show that in general Hibernate with HSQLDB embedded is more efficient than DataNucleus with MySQL server in executing the tested JPA queries.
A huge performance gap has been detected when using database indexes with small retrieval size. Comparing the normalized speed of DataNucleus with MySQL database server (0.0084) to the normalized speed of Hibernate with HSQLDB embedded database (9.9) reveals that in that case, Hibernate with HSQLDB embedded is 1,179 times faster than DataNucleus with MySQL server.
On the other hand, Hibernate with HSQLDB embedded is slower, for instance, when using simple basic entities with large retrieval size. Comparing the normalized speed of Hibernate with HSQLDB embedded database (0.88) to the normalized speed of DataNucleus with MySQL database server (2.2) reveals that in that case, Hibernate with HSQLDB embedded is 2.5 times slower than DataNucleus with MySQL server.
Speed comparison of JPA database update operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded |
Basic Person Test | 0.61 | 14.2 | 1.1 | 5.0 | 0.88 | 9.6 |
Element Collection Test | 0.31 | 10.1 | 0.44 | 5.6 | 0.38 | 7.8 |
Inheritance Test | 0.51 | 13.4 | 1.8 | 7.5 | 1.1 | 10.5 |
Indexing Test | 0.68 | 10.7 | 2.2 | 6.1 | 1.5 | 8.4 |
Graph (Binary Tree) Test | 0.91 | 3.7 | 0.47 | 2.5 | 0.69 | 3.1 |
Multithreading Test | 0.64 | 23.9 | failed | 3.8 | 0.64 | 13.9 |
All Tests | 0.61 | 12.7 | 1.2 | 5.1 | 0.88 | 8.9 |
DataNucleus with MySQL server has failed in 1 tests (see exceptions).
The results above show that in general Hibernate with HSQLDB embedded is much more efficient than DataNucleus with MySQL server in updating JPA entity objects in the database. Comparing the normalized speed of DataNucleus with MySQL database server (0.88) to the normalized speed of Hibernate with HSQLDB embedded database (8.9) reveals that in these tests, Hibernate with HSQLDB embedded is 10.1 times faster than DataNucleus with MySQL server.
A huge performance gap has been detected when using multithreading with small transaction size. Comparing the normalized speed of DataNucleus with MySQL database server (0.64) to the normalized speed of Hibernate with HSQLDB embedded database (23.9) reveals that in that case, Hibernate with HSQLDB embedded is 37.3 times faster than DataNucleus with MySQL server.
Speed comparison of JPA database removal operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded |
Basic Person Test | 0.70 | 26.1 | 1.3 | 17.5 | 1.0 | 21.8 |
Element Collection Test | 0.17 | 9.1 | 0.40 | 5.2 | 0.29 | 7.1 |
Inheritance Test | 0.41 | 21.4 | 1.3 | 17.7 | 0.87 | 19.6 |
Indexing Test | 1.7 | 33.0 | 1.9 | 16.3 | 1.8 | 24.7 |
Graph (Binary Tree) Test | 0.49 | 5.4 | 0.46 | 8.2 | 0.47 | 6.8 |
Multithreading Test | failed | 38.5 | failed | 28.6 | failed | 33.5 |
All Tests | 0.69 | 22.3 | 1.1 | 15.6 | 0.89 | 18.9 |
DataNucleus with MySQL server has failed in 2 tests (see exceptions).
The results above show that in general Hibernate with HSQLDB embedded is much more efficient than DataNucleus with MySQL server in deleting JPA entity objects from the database. Comparing the normalized speed of DataNucleus with MySQL database server (0.89) to the normalized speed of Hibernate with HSQLDB embedded database (18.9) reveals that in these tests, Hibernate with HSQLDB embedded is 21.2 times faster than DataNucleus with MySQL server.
A huge performance gap has been detected when using JPA element collections with small transaction size. Comparing the normalized speed of DataNucleus with MySQL database server (0.17) to the normalized speed of Hibernate with HSQLDB embedded database (9.1) reveals that in that case, Hibernate with HSQLDB embedded is 53.5 times faster than DataNucleus with MySQL server.
Comparison of JPA/Database speed - the averages (normalized score, higher is better)
Transaction/Retrieval Size | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded | DataNucleus MySQL server | Hibernate HSQLDB embedded |
Basic Person Test | 2.4 | 20.2 | 3.1 | 10.6 | 2.7 | 15.4 |
Element Collection Test | 1.5 | 9.8 | 0.47 | 6.3 | 0.99 | 8.0 |
Inheritance Test | 1.4 | 17.0 | 2.9 | 12.2 | 2.1 | 14.6 |
Indexing Test | 1.4 | 19.0 | 3.8 | 16.9 | 2.6 | 18.0 |
Graph (Binary Tree) Test | 1.2 | 6.6 | 1.4 | 7.8 | 1.3 | 7.2 |
Multithreading Test | 2.4 | 24.1 | 5.1 | 13.5 | 3.5 | 18.8 |
All Tests | 1.7 | 16.5 | 2.6 | 11.3 | 2.1 | 13.9 |
The results above show that in general Hibernate with HSQLDB embedded is much more efficient than DataNucleus with MySQL server in performing JPA database operations. Comparing the normalized speed of DataNucleus with MySQL database server (2.1) to the normalized speed of Hibernate with HSQLDB embedded database (13.9) reveals that in these tests, Hibernate with HSQLDB embedded is 6.6 times faster than DataNucleus with MySQL server.
A huge performance gap has been detected when using database indexes with small transaction/retrieval size. Comparing the normalized speed of DataNucleus with MySQL database server (1.4) to the normalized speed of Hibernate with HSQLDB embedded database (19.0) reveals that in that case, Hibernate with HSQLDB embedded is 13.6 times faster than DataNucleus with MySQL server.
Other Head to Head DBMS/JPA Comparisons
DataNucleus with MySQL 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 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
Hibernate 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 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 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