Comparison of OpenJPA with HSQLDB embedded vs DataNucleus with PostgreSQL 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 | |||
---|---|---|---|---|---|---|
  | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server |
Basic Person Test | 13.3 | 4.1 | 6.9 | 2.6 | 10.1 | 3.3 |
Element Collection Test | 8.6 | 0.91 | 5.3 | 0.38 | 7.0 | 0.64 |
Inheritance Test | 12.2 | 3.8 | 5.8 | 2.4 | 9.0 | 3.1 |
Indexing Test | 16.7 | 6.0 | 9.1 | 6.4 | 12.9 | 6.2 |
Graph (Binary Tree) Test | 6.1 | 0.91 | 7.3 | 0.77 | 6.7 | 0.84 |
Multithreading Test | 26.8 | 18.0 | 7.0 | 8.3 | 16.9 | 13.1 |
All Tests | 13.9 | 5.6 | 6.9 | 3.5 | 10.4 | 4.5 |
The results above show that in general OpenJPA with HSQLDB embedded is more efficient than DataNucleus with PostgreSQL server in persisting JPA entity objects to the database. Comparing the normalized speed of DataNucleus with PostgreSQL database server (4.5) to the normalized speed of OpenJPA with HSQLDB embedded database (10.4) reveals that in these tests, OpenJPA with HSQLDB embedded is 2.3 times faster than DataNucleus with PostgreSQL server.
A huge performance gap has been detected when using JPA element collections with large transaction size. Comparing the normalized speed of DataNucleus with PostgreSQL database server (0.38) to the normalized speed of OpenJPA with HSQLDB embedded database (5.3) reveals that in that case, OpenJPA with HSQLDB embedded is 13.9 times faster than DataNucleus with PostgreSQL server.
Speed comparison of JPA database retrieval operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server |
Basic Person Test | 21.8 | 1.7 | 30.1 | 7.6 | 25.9 | 4.6 |
Element Collection Test | 0.0068 | 0.73 | 4.5 | 0.63 | 2.2 | 0.68 |
Inheritance Test | 0.0025 | 1.5 | 2.0 | 9.3 | 0.98 | 5.4 |
Indexing Test | 22.1 | 1.5 | 43.6 | 9.2 | 32.9 | 5.3 |
Graph (Binary Tree) Test | 2.1 | 2.6 | 2.1 | 12.3 | 2.1 | 7.4 |
Multithreading Test | 20.9 | 3.4 | 23.5 | 10.8 | 22.2 | 7.1 |
All Tests | 11.1 | 1.9 | 17.6 | 8.3 | 14.4 | 5.1 |
The results above show that in general OpenJPA with HSQLDB embedded is more efficient than DataNucleus with PostgreSQL server in retrieving JPA entity objects from the database. Comparing the normalized speed of DataNucleus with PostgreSQL database server (5.1) to the normalized speed of OpenJPA with HSQLDB embedded database (14.4) reveals that in these tests, OpenJPA with HSQLDB embedded is 2.8 times faster than DataNucleus with PostgreSQL server.
A huge performance gap has been detected when using database indexes with small retrieval size. Comparing the normalized speed of DataNucleus with PostgreSQL database server (1.5) to the normalized speed of OpenJPA with HSQLDB embedded database (22.1) reveals that in that case, OpenJPA with HSQLDB embedded is 14.7 times faster than DataNucleus with PostgreSQL server.
On the other hand, OpenJPA with HSQLDB embedded is slower, for instance, when using class inheritance in the object model with small retrieval size. Comparing the normalized speed of OpenJPA with HSQLDB embedded database (0.0025) to the normalized speed of DataNucleus with PostgreSQL database server (1.5) reveals that in that case, OpenJPA with HSQLDB embedded is 600 times slower than DataNucleus with PostgreSQL server.
Speed comparison of JPA database query operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server |
Basic Person Test | 2.8 | 49.1 | 0.91 | 4.7 | 1.9 | 26.9 |
Element Collection Test | 1.4 | 39.1 | 0.95 | 0.48 | 1.2 | 19.8 |
Inheritance Test | 2.4 | 55.9 | 1.3 | 6.6 | 1.8 | 31.2 |
Indexing Test | 15.4 | 0.048 | 34.3 | 6.4 | 24.9 | 3.2 |
Multithreading Test | 1.4 | failed | 0.53 | failed | 0.95 | failed |
All Tests | 4.7 | 36.0 | 7.6 | 4.5 | 6.1 | 20.3 |
DataNucleus with PostgreSQL server has failed in 2 tests (see exceptions).
The results above show that in general DataNucleus with PostgreSQL server is much more efficient than OpenJPA with HSQLDB embedded in executing the tested JPA queries. Comparing the normalized speed of OpenJPA with HSQLDB embedded database (6.1) to the normalized speed of DataNucleus with PostgreSQL database server (20.3) reveals that in these tests, DataNucleus with PostgreSQL server is 3.3 times faster than OpenJPA with HSQLDB embedded.
A huge performance gap has been detected when using JPA element collections with small retrieval size. Comparing the normalized speed of OpenJPA with HSQLDB embedded database (1.4) to the normalized speed of DataNucleus with PostgreSQL database server (39.1) reveals that in that case, DataNucleus with PostgreSQL server is 27.9 times faster than OpenJPA with HSQLDB embedded.
On the other hand, DataNucleus with PostgreSQL server is slower, for instance, when using database indexes with small retrieval size. Comparing the normalized speed of DataNucleus with PostgreSQL database server (0.048) to the normalized speed of OpenJPA with HSQLDB embedded database (15.4) reveals that in that case, DataNucleus with PostgreSQL server is 321 times slower than OpenJPA with HSQLDB embedded.
Speed comparison of JPA database update operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server |
Basic Person Test | 12.0 | 2.1 | 5.3 | 0.84 | 8.6 | 1.5 |
Element Collection Test | 0.017 | 1.4 | 3.7 | 0.64 | 1.8 | 1.0 |
Inheritance Test | 0.0098 | 2.1 | 2.0 | 1.2 | 0.99 | 1.7 |
Indexing Test | 9.3 | 2.2 | 5.5 | 1.5 | 7.4 | 1.8 |
Graph (Binary Tree) Test | 2.5 | 0.65 | 1.6 | 0.20 | 2.1 | 0.42 |
Multithreading Test | 20.0 | 0.46 | 3.7 | failed | 11.8 | 0.46 |
All Tests | 7.3 | 1.5 | 3.6 | 0.87 | 5.5 | 1.2 |
DataNucleus with PostgreSQL server has failed in 1 tests (see exceptions).
The results above show that in general OpenJPA with HSQLDB embedded is much more efficient than DataNucleus with PostgreSQL server in updating JPA entity objects in the database. Comparing the normalized speed of DataNucleus with PostgreSQL database server (1.2) to the normalized speed of OpenJPA with HSQLDB embedded database (5.5) reveals that in these tests, OpenJPA with HSQLDB embedded is 4.6 times faster than DataNucleus with PostgreSQL server.
A huge performance gap has been detected when using multithreading with small transaction size. Comparing the normalized speed of DataNucleus with PostgreSQL database server (0.46) to the normalized speed of OpenJPA with HSQLDB embedded database (20.0) reveals that in that case, OpenJPA with HSQLDB embedded is 43.5 times faster than DataNucleus with PostgreSQL server.
On the other hand, OpenJPA with HSQLDB embedded is slower, for instance, when using class inheritance in the object model with small transaction size. Comparing the normalized speed of OpenJPA with HSQLDB embedded database (0.0098) to the normalized speed of DataNucleus with PostgreSQL database server (2.1) reveals that in that case, OpenJPA with HSQLDB embedded is 214 times slower than DataNucleus with PostgreSQL server.
Speed comparison of JPA database removal operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server |
Basic Person Test | 21.3 | 3.0 | 15.7 | 1.3 | 18.5 | 2.2 |
Element Collection Test | 0.011 | 1.0 | 2.9 | 0.39 | 1.5 | 0.69 |
Inheritance Test | 0.0070 | 2.8 | 3.5 | 1.3 | 1.8 | 2.1 |
Indexing Test | 28.8 | 5.4 | 15.2 | 1.9 | 22.0 | 3.7 |
Graph (Binary Tree) Test | 2.9 | 0.38 | 3.6 | 0.37 | 3.2 | 0.37 |
Multithreading Test | 26.0 | 13.8 | 19.6 | failed | 22.8 | 13.8 |
All Tests | 13.2 | 4.4 | 10.1 | 1.1 | 11.6 | 2.9 |
DataNucleus with PostgreSQL server has failed in 1 tests (see exceptions).
The results above show that in general OpenJPA with HSQLDB embedded is much more efficient than DataNucleus with PostgreSQL server in deleting JPA entity objects from the database. Comparing the normalized speed of DataNucleus with PostgreSQL database server (2.9) to the normalized speed of OpenJPA with HSQLDB embedded database (11.6) reveals that in these tests, OpenJPA with HSQLDB embedded is 4.0 times faster than DataNucleus with PostgreSQL server.
A huge performance gap has been detected when using simple basic entities with large transaction size. Comparing the normalized speed of DataNucleus with PostgreSQL database server (1.3) to the normalized speed of OpenJPA with HSQLDB embedded database (15.7) reveals that in that case, OpenJPA with HSQLDB embedded is 12.1 times faster than DataNucleus with PostgreSQL server.
On the other hand, OpenJPA with HSQLDB embedded is slower, for instance, when using class inheritance in the object model with small transaction size. Comparing the normalized speed of OpenJPA with HSQLDB embedded database (0.0070) to the normalized speed of DataNucleus with PostgreSQL database server (2.8) reveals that in that case, OpenJPA with HSQLDB embedded is 400 times slower than DataNucleus with PostgreSQL server.
Comparison of JPA/Database speed - the averages (normalized score, higher is better)
Transaction/Retrieval Size | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server | OpenJPA HSQLDB embedded | DataNucleus PostgreSQL server |
Basic Person Test | 14.3 | 12.0 | 11.8 | 3.4 | 13.0 | 7.7 |
Element Collection Test | 2.0 | 8.6 | 3.5 | 0.50 | 2.7 | 4.6 |
Inheritance Test | 2.9 | 13.2 | 2.9 | 4.2 | 2.9 | 8.7 |
Indexing Test | 18.5 | 3.0 | 21.6 | 5.1 | 20.0 | 4.0 |
Graph (Binary Tree) Test | 3.4 | 1.1 | 3.7 | 3.4 | 3.5 | 2.3 |
Multithreading Test | 19.0 | 8.9 | 10.9 | 9.5 | 14.9 | 9.1 |
All Tests | 10.2 | 8.0 | 9.2 | 3.8 | 9.7 | 6.0 |
The results above show that in general OpenJPA with HSQLDB embedded is more efficient than DataNucleus with PostgreSQL server in performing JPA database operations.
A large performance gap has been detected when using JPA element collections with large transaction/retrieval size. Comparing the normalized speed of DataNucleus with PostgreSQL database server (0.50) to the normalized speed of OpenJPA with HSQLDB embedded database (3.5) reveals that in that case, OpenJPA with HSQLDB embedded is 7.0 times faster than DataNucleus with PostgreSQL server.
On the other hand, OpenJPA with HSQLDB embedded is slower, for instance, when using class inheritance in the object model with small transaction/retrieval size. Comparing the normalized speed of OpenJPA with HSQLDB embedded database (2.9) to the normalized speed of DataNucleus with PostgreSQL database server (13.2) reveals that in that case, OpenJPA with HSQLDB embedded is 4.6 times slower than DataNucleus with PostgreSQL server.
Other Head to Head DBMS/JPA Comparisons
OpenJPA 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 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 Derby server
- OpenJPA with H2 server
- OpenJPA with MySQL server
- OpenJPA with PostgreSQL server
- ObjectDB embedded
- ObjectDB server
DataNucleus with PostgreSQL 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
- 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