Comparison of DataNucleus with Derby embedded vs Hibernate with MySQL 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 | |||
---|---|---|---|---|---|---|
  | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server |
Basic Person Test | 4.6 | 3.6 | 2.8 | 1.6 | 3.7 | 2.6 |
Element Collection Test | 2.4 | 1.6 | 1.6 | 0.72 | 2.0 | 1.1 |
Inheritance Test | 4.6 | 3.7 | 2.7 | 1.6 | 3.7 | 2.7 |
Indexing Test | 7.6 | 5.4 | 4.8 | 2.6 | 6.2 | 4.0 |
Graph (Binary Tree) Test | 1.6 | 1.5 | 1.4 | 1.2 | 1.5 | 1.4 |
Multithreading Test | 8.6 | 7.4 | 3.3 | 2.9 | 5.9 | 5.2 |
All Tests | 4.9 | 3.9 | 2.8 | 1.8 | 3.8 | 2.8 |
The results above show that in general DataNucleus with Derby embedded is more efficient than Hibernate with MySQL server in persisting JPA entity objects to the database.
A large performance gap has been detected when using JPA element collections with large transaction size. Comparing the normalized speed of Hibernate with MySQL database server (0.72) to the normalized speed of DataNucleus with Derby embedded database (1.6) reveals that in that case, DataNucleus with Derby embedded is 2.2 times faster than Hibernate with MySQL server.
Speed comparison of JPA database retrieval operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server |
Basic Person Test | 6.8 | 3.0 | 14.9 | 11.0 | 10.9 | 7.0 |
Element Collection Test | 5.4 | 0.34 | 7.6 | 1.2 | 6.5 | 0.79 |
Inheritance Test | 8.8 | 1.3 | 14.8 | 14.5 | 11.8 | 7.9 |
Indexing Test | 9.2 | 2.5 | 14.1 | 12.8 | 11.6 | 7.6 |
Graph (Binary Tree) Test | 9.9 | 0.55 | 15.8 | 0.71 | 12.9 | 0.63 |
Multithreading Test | 11.9 | 0.23 | 11.5 | 13.8 | 11.7 | 7.0 |
All Tests | 8.7 | 1.3 | 13.1 | 9.0 | 10.9 | 5.2 |
The results above show that in general DataNucleus with Derby embedded is more efficient than Hibernate with MySQL server in retrieving JPA entity objects from the database. Comparing the normalized speed of Hibernate with MySQL database server (5.2) to the normalized speed of DataNucleus with Derby embedded database (10.9) reveals that in these tests, DataNucleus with Derby embedded is 2.1 times faster than Hibernate with MySQL server.
A huge performance gap has been detected when using multithreading with small retrieval size. Comparing the normalized speed of Hibernate with MySQL database server (0.23) to the normalized speed of DataNucleus with Derby embedded database (11.9) reveals that in that case, DataNucleus with Derby embedded is 51.7 times faster than Hibernate with MySQL server.
Speed comparison of JPA database query operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server |
Basic Person Test | 39.1 | 10.0 | 7.5 | 2.0 | 23.3 | 6.0 |
Element Collection Test | 46.0 | 6.7 | 6.7 | 0.53 | 26.3 | 3.6 |
Inheritance Test | 7.7 | 2.8 | 3.8 | 1.6 | 5.7 | 2.2 |
Indexing Test | 0.053 | 0.44 | 8.0 | 2.0 | 4.0 | 1.2 |
Multithreading Test | failed | 2.1 | failed | 0.98 | failed | 1.5 |
All Tests | 23.2 | 4.4 | 6.5 | 1.4 | 14.8 | 2.9 |
DataNucleus with Derby embedded has failed in 2 tests (see exceptions).
The results above show that in general DataNucleus with Derby embedded is much more efficient than Hibernate with MySQL server in executing the tested JPA queries. Comparing the normalized speed of Hibernate with MySQL database server (2.9) to the normalized speed of DataNucleus with Derby embedded database (14.8) reveals that in these tests, DataNucleus with Derby embedded is 5.1 times faster than Hibernate with MySQL server.
A huge performance gap has been detected when using JPA element collections with large retrieval size. Comparing the normalized speed of Hibernate with MySQL database server (0.53) to the normalized speed of DataNucleus with Derby embedded database (6.7) reveals that in that case, DataNucleus with Derby embedded is 12.6 times faster than Hibernate with MySQL server.
On the other hand, DataNucleus with Derby embedded is slower, for instance, when using database indexes with small retrieval size. Comparing the normalized speed of DataNucleus with Derby embedded database (0.053) to the normalized speed of Hibernate with MySQL database server (0.44) reveals that in that case, DataNucleus with Derby embedded is 8.3 times slower than Hibernate with MySQL server.
Speed comparison of JPA database update operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server |
Basic Person Test | 4.0 | 0.73 | 3.8 | 1.6 | 3.9 | 1.2 |
Element Collection Test | 3.7 | 0.39 | 4.5 | 1.2 | 4.1 | 0.78 |
Inheritance Test | 4.4 | 0.61 | 4.8 | 2.1 | 4.6 | 1.4 |
Indexing Test | 5.2 | 0.81 | 4.2 | 2.6 | 4.7 | 1.7 |
Graph (Binary Tree) Test | 2.7 | 0.69 | 1.5 | 0.40 | 2.1 | 0.54 |
Multithreading Test | failed | 0.63 | failed | 3.0 | failed | 1.8 |
All Tests | 4.0 | 0.64 | 3.7 | 1.8 | 3.9 | 1.2 |
DataNucleus with Derby embedded has failed in 2 tests (see exceptions).
The results above show that in general DataNucleus with Derby embedded is much more efficient than Hibernate with MySQL server in updating JPA entity objects in the database. Comparing the normalized speed of Hibernate with MySQL database server (1.2) to the normalized speed of DataNucleus with Derby embedded database (3.9) reveals that in these tests, DataNucleus with Derby embedded is 3.2 times faster than Hibernate with MySQL server.
A large performance gap has been detected when using JPA element collections with small transaction size. Comparing the normalized speed of Hibernate with MySQL database server (0.39) to the normalized speed of DataNucleus with Derby embedded database (3.7) reveals that in that case, DataNucleus with Derby embedded is 9.5 times faster than Hibernate with MySQL server.
Speed comparison of JPA database removal operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server |
Basic Person Test | 3.5 | 1.1 | 1.3 | 1.7 | 2.4 | 1.4 |
Element Collection Test | 1.9 | 0.21 | 1.6 | 0.53 | 1.7 | 0.37 |
Inheritance Test | 2.4 | 0.65 | 1.3 | 1.8 | 1.9 | 1.2 |
Indexing Test | 6.6 | 0.81 | 1.9 | 2.0 | 4.3 | 1.4 |
Graph (Binary Tree) Test | 0.81 | 0.55 | 0.93 | 0.62 | 0.87 | 0.58 |
Multithreading Test | failed | 0.35 | failed | 4.1 | failed | 2.2 |
All Tests | 3.0 | 0.61 | 1.4 | 1.8 | 2.2 | 1.2 |
DataNucleus with Derby embedded has failed in 2 tests (see exceptions).
The results above show that in general DataNucleus with Derby embedded is more efficient than Hibernate with MySQL server in deleting JPA entity objects from the database.
A large performance gap has been detected when using JPA element collections with small transaction size. Comparing the normalized speed of Hibernate with MySQL database server (0.21) to the normalized speed of DataNucleus with Derby embedded database (1.9) reveals that in that case, DataNucleus with Derby embedded is 9.0 times faster than Hibernate 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 Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server | DataNucleus Derby embedded | Hibernate MySQL server |
Basic Person Test | 11.6 | 3.7 | 6.1 | 3.6 | 8.8 | 3.6 |
Element Collection Test | 11.9 | 1.8 | 4.4 | 0.84 | 8.1 | 1.3 |
Inheritance Test | 5.6 | 1.8 | 5.5 | 4.3 | 5.5 | 3.1 |
Indexing Test | 5.7 | 2.0 | 6.6 | 4.4 | 6.2 | 3.2 |
Graph (Binary Tree) Test | 3.7 | 0.83 | 4.9 | 0.73 | 4.3 | 0.78 |
Multithreading Test | 10.3 | 2.1 | 7.4 | 5.0 | 8.8 | 3.6 |
All Tests | 8.0 | 2.1 | 5.7 | 3.2 | 6.9 | 2.7 |
The results above show that in general DataNucleus with Derby embedded is more efficient than Hibernate with MySQL server in performing JPA database operations. Comparing the normalized speed of Hibernate with MySQL database server (2.7) to the normalized speed of DataNucleus with Derby embedded database (6.9) reveals that in these tests, DataNucleus with Derby embedded is 2.6 times faster than Hibernate with MySQL server.
A large performance gap has been detected when using graphs of objects with large transaction/retrieval size. Comparing the normalized speed of Hibernate with MySQL database server (0.73) to the normalized speed of DataNucleus with Derby embedded database (4.9) reveals that in that case, DataNucleus with Derby embedded is 6.7 times faster than Hibernate with MySQL server.
Other Head to Head DBMS/JPA Comparisons
DataNucleus with Derby embedded against:
- Oracle Database 11g
- IBM DB2 10
- Microsoft SQL Server 2008
- 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 Derby server
- OpenJPA with H2 server
- OpenJPA with MySQL server
- OpenJPA with PostgreSQL server
- ObjectDB embedded
- ObjectDB server
Hibernate 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 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 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