Comparison of DataNucleus with MySQL server vs Hibernate with Derby 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 Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded |
Basic Person Test | 2.6 | 5.9 | 1.4 | 3.8 | 2.0 | 4.9 |
Element Collection Test | 1.0 | 2.9 | 0.48 | 1.8 | 0.76 | 2.3 |
Inheritance Test | 2.5 | 5.3 | 1.3 | 3.7 | 1.9 | 4.5 |
Indexing Test | 4.0 | 7.0 | 2.5 | 4.8 | 3.3 | 5.9 |
Graph (Binary Tree) Test | 1.1 | 1.9 | 0.99 | 1.7 | 1.1 | 1.8 |
Multithreading Test | 6.2 | 10.5 | 2.5 | 3.7 | 4.4 | 7.1 |
All Tests | 2.9 | 5.6 | 1.5 | 3.3 | 2.2 | 4.4 |
The results above show that in general Hibernate with Derby embedded is 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 Derby embedded database (4.4) reveals that in these tests, Hibernate with Derby embedded is 2.0 times faster than DataNucleus with MySQL server.
A large 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 Derby embedded database (1.8) reveals that in that case, Hibernate with Derby embedded is 3.8 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 Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded |
Basic Person Test | 0.96 | 14.2 | 9.3 | 16.4 | 5.1 | 15.3 |
Element Collection Test | 0.18 | 4.4 | 0.77 | 4.9 | 0.47 | 4.6 |
Inheritance Test | 0.55 | 10.3 | 8.5 | 18.6 | 4.5 | 14.4 |
Indexing Test | 0.82 | 10.0 | 9.7 | 16.4 | 5.3 | 13.2 |
Graph (Binary Tree) Test | 2.1 | 2.6 | 3.5 | 3.0 | 2.8 | 2.8 |
Multithreading Test | 0.27 | 19.3 | 7.8 | 19.3 | 4.0 | 19.3 |
All Tests | 0.81 | 10.1 | 6.6 | 13.1 | 3.7 | 11.6 |
The results above show that in general Hibernate with Derby 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 Derby embedded database (11.6) reveals that in these tests, Hibernate with Derby embedded is 3.1 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 Derby embedded database (19.3) reveals that in that case, Hibernate with Derby embedded is 71.5 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 Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded |
Basic Person Test | 7.2 | 49.3 | 2.2 | 6.8 | 4.7 | 28.1 |
Element Collection Test | 5.8 | 37.6 | 0.27 | 2.7 | 3.1 | 20.1 |
Inheritance Test | 2.9 | 24.1 | 1.7 | 7.6 | 2.3 | 15.9 |
Indexing Test | 0.0084 | 5.3 | 2.5 | 14.8 | 1.2 | 10.1 |
Multithreading Test | failed | 39.7 | failed | 6.1 | failed | 22.9 |
All Tests | 4.0 | 31.2 | 1.7 | 7.6 | 2.8 | 19.4 |
DataNucleus with MySQL server has failed in 2 tests (see exceptions).
The results above show that in general Hibernate with Derby embedded is much more efficient than DataNucleus with MySQL server in executing the tested JPA queries. Comparing the normalized speed of DataNucleus with MySQL database server (2.8) to the normalized speed of Hibernate with Derby embedded database (19.4) reveals that in these tests, Hibernate with Derby embedded is 6.9 times faster than DataNucleus with MySQL server.
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 Derby embedded database (5.3) reveals that in that case, Hibernate with Derby embedded is 631 times faster 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 Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded |
Basic Person Test | 0.61 | 4.5 | 1.1 | 3.2 | 0.88 | 3.8 |
Element Collection Test | 0.31 | 3.9 | 0.44 | 3.1 | 0.38 | 3.5 |
Inheritance Test | 0.51 | 4.6 | 1.8 | 4.5 | 1.1 | 4.5 |
Indexing Test | 0.68 | 4.6 | 2.2 | 5.5 | 1.5 | 5.1 |
Graph (Binary Tree) Test | 0.91 | 2.7 | 0.47 | 1.2 | 0.69 | 2.0 |
Multithreading Test | 0.64 | 11.6 | failed | 2.6 | 0.64 | 7.1 |
All Tests | 0.61 | 5.3 | 1.2 | 3.3 | 0.88 | 4.3 |
DataNucleus with MySQL server has failed in 1 tests (see exceptions).
The results above show that in general Hibernate with Derby 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 Derby embedded database (4.3) reveals that in these tests, Hibernate with Derby embedded is 4.9 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 Derby embedded database (11.6) reveals that in that case, Hibernate with Derby embedded is 18.1 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 Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded |
Basic Person Test | 0.70 | 3.8 | 1.3 | 4.2 | 1.0 | 4.0 |
Element Collection Test | 0.17 | 2.3 | 0.40 | 1.5 | 0.29 | 1.9 |
Inheritance Test | 0.41 | 4.0 | 1.3 | 4.3 | 0.87 | 4.2 |
Indexing Test | 1.7 | 5.5 | 1.9 | 3.6 | 1.8 | 4.6 |
Graph (Binary Tree) Test | 0.49 | 0.74 | 0.46 | 0.96 | 0.47 | 0.85 |
Multithreading Test | failed | 5.6 | failed | 4.9 | failed | 5.3 |
All Tests | 0.69 | 3.7 | 1.1 | 3.3 | 0.89 | 3.5 |
DataNucleus with MySQL server has failed in 2 tests (see exceptions).
The results above show that in general Hibernate with Derby 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 Derby embedded database (3.5) reveals that in these tests, Hibernate with Derby embedded is 3.9 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 Derby embedded database (2.3) reveals that in that case, Hibernate with Derby embedded is 13.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 Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded | DataNucleus MySQL server | Hibernate Derby embedded |
Basic Person Test | 2.4 | 15.5 | 3.1 | 6.9 | 2.7 | 11.2 |
Element Collection Test | 1.5 | 10.2 | 0.47 | 2.8 | 0.99 | 6.5 |
Inheritance Test | 1.4 | 9.7 | 2.9 | 7.7 | 2.1 | 8.7 |
Indexing Test | 1.4 | 6.5 | 3.8 | 9.0 | 2.6 | 7.8 |
Graph (Binary Tree) Test | 1.2 | 2.0 | 1.4 | 1.7 | 1.3 | 1.8 |
Multithreading Test | 2.4 | 17.3 | 5.1 | 7.3 | 3.5 | 12.3 |
All Tests | 1.7 | 10.5 | 2.6 | 6.1 | 2.1 | 8.3 |
The results above show that in general Hibernate with Derby 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 Derby embedded database (8.3) reveals that in these tests, Hibernate with Derby embedded is 4.0 times faster than DataNucleus with MySQL server.
A large performance gap has been detected when using multithreading with small transaction/retrieval size. Comparing the normalized speed of DataNucleus with MySQL database server (2.4) to the normalized speed of Hibernate with Derby embedded database (17.3) reveals that in that case, Hibernate with Derby embedded is 7.2 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 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