Comparison of DataNucleus with HSQLDB embedded vs EclipseLink 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 HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded |
Basic Person Test | 14.2 | 5.5 | 4.8 | 3.7 | 9.5 | 4.6 |
Element Collection Test | 6.6 | 3.0 | 2.1 | 1.7 | 4.3 | 2.4 |
Inheritance Test | 13.6 | 5.3 | 4.6 | 3.5 | 9.1 | 4.4 |
Indexing Test | 24.6 | 6.9 | 11.1 | 4.6 | 17.8 | 5.8 |
Graph (Binary Tree) Test | 6.8 | 2.0 | 4.5 | 1.9 | 5.7 | 1.9 |
Multithreading Test | 38.5 | 9.3 | 8.5 | 4.1 | 23.5 | 6.7 |
All Tests | 17.4 | 5.3 | 5.9 | 3.2 | 11.7 | 4.3 |
The results above show that in general DataNucleus with HSQLDB embedded is more efficient than EclipseLink with Derby embedded in persisting JPA entity objects to the database. Comparing the normalized speed of EclipseLink with Derby embedded database (4.3) to the normalized speed of DataNucleus with HSQLDB embedded database (11.7) reveals that in these tests, DataNucleus with HSQLDB embedded is 2.7 times faster than EclipseLink with Derby embedded.
A large performance gap has been detected when using multithreading with small transaction size. Comparing the normalized speed of EclipseLink with Derby embedded database (9.3) to the normalized speed of DataNucleus with HSQLDB embedded database (38.5) reveals that in that case, DataNucleus with HSQLDB embedded is 4.1 times faster than EclipseLink with Derby embedded.
Speed comparison of JPA database retrieval operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded |
Basic Person Test | 6.6 | 16.4 | 10.2 | 58.7 | 8.4 | 37.5 |
Element Collection Test | 3.6 | 7.5 | 8.1 | 13.3 | 5.8 | 10.4 |
Inheritance Test | 5.7 | 17.1 | 8.8 | 58.9 | 7.2 | 38.0 |
Indexing Test | 5.1 | 14.2 | 9.5 | 67.4 | 7.3 | 40.8 |
Graph (Binary Tree) Test | 7.2 | 2.8 | 9.3 | 5.7 | 8.3 | 4.2 |
Multithreading Test | 8.1 | 28.0 | 9.5 | 48.7 | 8.8 | 38.4 |
All Tests | 6.0 | 14.3 | 9.2 | 42.1 | 7.6 | 28.2 |
The results above show that in general EclipseLink with Derby embedded is much more efficient than DataNucleus with HSQLDB embedded in retrieving JPA entity objects from the database. Comparing the normalized speed of DataNucleus with HSQLDB embedded database (7.6) to the normalized speed of EclipseLink with Derby embedded database (28.2) reveals that in these tests, EclipseLink with Derby embedded is 3.7 times faster than DataNucleus with HSQLDB embedded.
A large performance gap has been detected when using database indexes with large retrieval size. Comparing the normalized speed of DataNucleus with HSQLDB embedded database (9.5) to the normalized speed of EclipseLink with Derby embedded database (67.4) reveals that in that case, EclipseLink with Derby embedded is 7.1 times faster than DataNucleus with HSQLDB embedded.
On the other hand, EclipseLink with Derby embedded is slower, for instance, when using graphs of objects with small retrieval size. Comparing the normalized speed of EclipseLink with Derby embedded database (2.8) to the normalized speed of DataNucleus with HSQLDB embedded database (7.2) reveals that in that case, EclipseLink with Derby embedded is 2.6 times slower than DataNucleus with HSQLDB embedded.
Speed comparison of JPA database query operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded |
Basic Person Test | 1.4 | 53.4 | 0.48 | 13.8 | 0.95 | 33.6 |
Element Collection Test | 1.3 | 37.9 | 0.67 | 4.4 | 1.0 | 21.2 |
Inheritance Test | 1.6 | 37.4 | 0.61 | 15.0 | 1.1 | 26.2 |
Indexing Test | 0.0016 | 7.6 | 0.63 | 49.3 | 0.32 | 28.4 |
Multithreading Test | 0.40 | 41.2 | failed | 6.1 | 0.40 | 23.6 |
All Tests | 0.96 | 35.5 | 0.60 | 17.7 | 0.80 | 26.6 |
DataNucleus with HSQLDB embedded has failed in 1 tests (see exceptions).
The results above show that in general EclipseLink with Derby embedded is much more efficient than DataNucleus with HSQLDB embedded in executing the tested JPA queries. Comparing the normalized speed of DataNucleus with HSQLDB embedded database (0.80) to the normalized speed of EclipseLink with Derby embedded database (26.6) reveals that in these tests, EclipseLink with Derby embedded is 33.2 times faster than DataNucleus with HSQLDB embedded.
A huge performance gap has been detected when using database indexes with small retrieval size. Comparing the normalized speed of DataNucleus with HSQLDB embedded database (0.0016) to the normalized speed of EclipseLink with Derby embedded database (7.6) reveals that in that case, EclipseLink with Derby embedded is 4,750 times faster than DataNucleus with HSQLDB embedded.
Speed comparison of JPA database update operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded |
Basic Person Test | 11.5 | 6.4 | 2.7 | 6.7 | 7.1 | 6.5 |
Element Collection Test | 6.9 | 5.4 | 2.7 | 6.2 | 4.8 | 5.8 |
Inheritance Test | 10.3 | 6.5 | 3.6 | 9.2 | 6.9 | 7.8 |
Indexing Test | 11.4 | 7.3 | 4.4 | 11.1 | 7.9 | 9.2 |
Graph (Binary Tree) Test | 3.5 | 2.8 | 1.5 | 1.7 | 2.5 | 2.2 |
Multithreading Test | failed | 21.3 | failed | 5.0 | failed | 13.1 |
All Tests | 8.7 | 8.3 | 3.0 | 6.6 | 5.8 | 7.5 |
DataNucleus with HSQLDB embedded has failed in 2 tests (see exceptions).
The results above show that in general EclipseLink with Derby embedded is slightly more efficient than DataNucleus with HSQLDB embedded in updating JPA entity objects in the database.
A large performance gap has been detected when using class inheritance in the object model with large transaction size. Comparing the normalized speed of DataNucleus with HSQLDB embedded database (3.6) to the normalized speed of EclipseLink with Derby embedded database (9.2) reveals that in that case, EclipseLink with Derby embedded is 2.6 times faster than DataNucleus with HSQLDB embedded.
Speed comparison of JPA database removal operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded |
Basic Person Test | 4.2 | 4.6 | 1.3 | 4.7 | 2.8 | 4.6 |
Element Collection Test | 4.9 | 2.5 | 1.6 | 1.4 | 3.2 | 1.9 |
Inheritance Test | 4.0 | 3.9 | 1.3 | 4.5 | 2.7 | 4.2 |
Indexing Test | 7.5 | 6.2 | 1.9 | 3.8 | 4.7 | 5.0 |
Graph (Binary Tree) Test | 2.9 | 1.1 | 2.0 | 1.0 | 2.5 | 1.1 |
Multithreading Test | 40.1 | 6.2 | 13.7 | 5.8 | 26.9 | 6.0 |
All Tests | 10.6 | 4.1 | 3.7 | 3.5 | 7.1 | 3.8 |
The results above show that in general DataNucleus with HSQLDB embedded is more efficient than EclipseLink with Derby embedded in deleting JPA entity objects from the database.
A large performance gap has been detected when using multithreading with small transaction size. Comparing the normalized speed of EclipseLink with Derby embedded database (6.2) to the normalized speed of DataNucleus with HSQLDB embedded database (40.1) reveals that in that case, DataNucleus with HSQLDB embedded is 6.5 times faster than EclipseLink with Derby embedded.
On the other hand, DataNucleus with HSQLDB embedded is slower, for instance, when using simple basic entities with large transaction size. Comparing the normalized speed of DataNucleus with HSQLDB embedded database (1.3) to the normalized speed of EclipseLink with Derby embedded database (4.7) reveals that in that case, DataNucleus with HSQLDB embedded is 3.6 times slower than EclipseLink with Derby embedded.
Comparison of database storage efficiency (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded |
Basic Person Test | 41.4 | 51.1 | 41.4 | 51.0 | 41.4 | 51.1 |
Element Collection Test | 23.4 | 38.5 | 23.4 | 39.4 | 23.4 | 38.9 |
Inheritance Test | 41.4 | 48.0 | 41.4 | 47.9 | 41.4 | 48.0 |
Indexing Test | 48.4 | 51.6 | 49.2 | 52.3 | 48.8 | 52.0 |
Graph (Binary Tree) Test | 12.5 | 13.4 | 9.4 | 11.7 | 10.9 | 12.6 |
Multithreading Test | 51.9 | 52.6 | 10.3 | 8.4 | 31.1 | 30.5 |
All Tests | 36.5 | 42.5 | 29.2 | 35.1 | 32.9 | 38.8 |
The results above show that in general EclipseLink with Derby embedded is slightly more efficient than DataNucleus with HSQLDB embedded in using disk space.
Comparison of JPA/Database speed - the averages (normalized score, higher is better)
Transaction/Retrieval Size | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded | DataNucleus HSQLDB embedded | EclipseLink Derby embedded |
Basic Person Test | 7.6 | 17.3 | 3.9 | 17.5 | 5.7 | 17.4 |
Element Collection Test | 4.7 | 11.3 | 3.0 | 5.4 | 3.8 | 8.3 |
Inheritance Test | 7.1 | 14.0 | 3.8 | 18.2 | 5.4 | 16.1 |
Indexing Test | 9.7 | 8.4 | 5.5 | 27.2 | 7.6 | 17.8 |
Graph (Binary Tree) Test | 5.1 | 2.2 | 4.3 | 2.6 | 4.7 | 2.4 |
Multithreading Test | 21.8 | 21.2 | 10.6 | 13.9 | 17.0 | 17.6 |
All Tests | 9.0 | 12.7 | 4.8 | 14.5 | 7.0 | 13.6 |
The results above show that in general EclipseLink with Derby embedded is more efficient than DataNucleus with HSQLDB embedded in performing JPA database operations.
A large performance gap has been detected when using database indexes with large transaction/retrieval size. Comparing the normalized speed of DataNucleus with HSQLDB embedded database (5.5) to the normalized speed of EclipseLink with Derby embedded database (27.2) reveals that in that case, EclipseLink with Derby embedded is 4.9 times faster than DataNucleus with HSQLDB embedded.
On the other hand, EclipseLink with Derby embedded is slower, for instance, when using graphs of objects with small transaction/retrieval size. Comparing the normalized speed of EclipseLink with Derby embedded database (2.2) to the normalized speed of DataNucleus with HSQLDB embedded database (5.1) reveals that in that case, EclipseLink with Derby embedded is 2.3 times slower than DataNucleus with HSQLDB embedded.
Other Head to Head DBMS/JPA Comparisons
DataNucleus with HSQLDB embedded against:
- Oracle Database 11g
- IBM DB2 10
- Microsoft SQL Server 2008
- DataNucleus with Derby embedded
- DataNucleus with H2 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
EclipseLink 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 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