Comparison of EclipseLink with PostgreSQL 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 | |||
---|---|---|---|---|---|---|
  | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded |
Basic Person Test | 7.3 | 5.9 | 4.2 | 3.8 | 5.8 | 4.9 |
Element Collection Test | 3.1 | 2.9 | 1.9 | 1.8 | 2.5 | 2.3 |
Inheritance Test | 6.9 | 5.3 | 5.0 | 3.7 | 5.9 | 4.5 |
Indexing Test | 10.0 | 7.0 | 6.8 | 4.8 | 8.4 | 5.9 |
Graph (Binary Tree) Test | 3.5 | 1.9 | 3.3 | 1.7 | 3.4 | 1.8 |
Multithreading Test | 31.8 | 10.5 | 14.5 | 3.7 | 23.1 | 7.1 |
All Tests | 10.4 | 5.6 | 6.0 | 3.3 | 8.2 | 4.4 |
The results above show that in general EclipseLink with PostgreSQL server is more efficient than Hibernate with Derby embedded in persisting JPA entity objects to the database.
A large performance gap has been detected when using multithreading with large transaction size. Comparing the normalized speed of Hibernate with Derby embedded database (3.7) to the normalized speed of EclipseLink with PostgreSQL database server (14.5) reveals that in that case, EclipseLink with PostgreSQL server is 3.9 times faster than Hibernate with Derby embedded.
Speed comparison of JPA database retrieval operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded |
Basic Person Test | 6.8 | 14.2 | 17.2 | 16.4 | 12.0 | 15.3 |
Element Collection Test | 0.026 | 4.4 | 0.020 | 4.9 | 0.023 | 4.6 |
Inheritance Test | 6.0 | 10.3 | 19.7 | 18.6 | 12.9 | 14.4 |
Indexing Test | 5.6 | 10.0 | 19.5 | 16.4 | 12.6 | 13.2 |
Graph (Binary Tree) Test | 0.47 | 2.6 | 0.61 | 3.0 | 0.54 | 2.8 |
Multithreading Test | 13.5 | 19.3 | 27.8 | 19.3 | 20.6 | 19.3 |
All Tests | 5.4 | 10.1 | 14.1 | 13.1 | 9.8 | 11.6 |
The results above show that in general Hibernate with Derby embedded is slightly more efficient than EclipseLink with PostgreSQL server in retrieving JPA entity objects from the database.
A huge performance gap has been detected when using JPA element collections with large retrieval size. Comparing the normalized speed of EclipseLink with PostgreSQL database server (0.020) to the normalized speed of Hibernate with Derby embedded database (4.9) reveals that in that case, Hibernate with Derby embedded is 245 times faster than EclipseLink with PostgreSQL server.
Speed comparison of JPA database query operations (normalized score, higher is better)
Retrieval Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded |
Basic Person Test | 55.5 | 49.3 | 7.8 | 6.8 | 31.6 | 28.1 |
Element Collection Test | 15.4 | 37.6 | 0.028 | 2.7 | 7.7 | 20.1 |
Inheritance Test | 54.9 | 24.1 | 11.5 | 7.6 | 33.2 | 15.9 |
Indexing Test | 0.077 | 5.3 | 10.0 | 14.8 | 5.1 | 10.1 |
Multithreading Test | 55.3 | 39.7 | 12.0 | 6.1 | 33.7 | 22.9 |
All Tests | 36.2 | 31.2 | 8.3 | 7.6 | 22.3 | 19.4 |
The results above show that in general EclipseLink with PostgreSQL server is slightly more efficient than Hibernate with Derby embedded in executing the tested JPA queries.
A large performance gap has been detected when using class inheritance in the object model with small retrieval size. Comparing the normalized speed of Hibernate with Derby embedded database (24.1) to the normalized speed of EclipseLink with PostgreSQL database server (54.9) reveals that in that case, EclipseLink with PostgreSQL server is 2.3 times faster than Hibernate with Derby embedded.
On the other hand, EclipseLink with PostgreSQL server is slower, for instance, when using JPA element collections with large retrieval size. Comparing the normalized speed of EclipseLink with PostgreSQL database server (0.028) to the normalized speed of Hibernate with Derby embedded database (2.7) reveals that in that case, EclipseLink with PostgreSQL server is 96.4 times slower than Hibernate with Derby embedded.
Speed comparison of JPA database update operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded |
Basic Person Test | 6.2 | 4.5 | 4.1 | 3.2 | 5.1 | 3.8 |
Element Collection Test | 0.080 | 3.9 | 0.028 | 3.1 | 0.054 | 3.5 |
Inheritance Test | 6.4 | 4.6 | 6.1 | 4.5 | 6.2 | 4.5 |
Indexing Test | 6.5 | 4.6 | 7.0 | 5.5 | 6.8 | 5.1 |
Graph (Binary Tree) Test | 0.90 | 2.7 | 0.50 | 1.2 | 0.70 | 2.0 |
Multithreading Test | 36.0 | 11.6 | 9.1 | 2.6 | 22.5 | 7.1 |
All Tests | 9.3 | 5.3 | 4.5 | 3.3 | 6.9 | 4.3 |
The results above show that in general EclipseLink with PostgreSQL server is more efficient than Hibernate with Derby embedded in updating JPA entity objects in the database.
A large performance gap has been detected when using multithreading with large transaction size. Comparing the normalized speed of Hibernate with Derby embedded database (2.6) to the normalized speed of EclipseLink with PostgreSQL database server (9.1) reveals that in that case, EclipseLink with PostgreSQL server is 3.5 times faster than Hibernate with Derby embedded.
On the other hand, EclipseLink with PostgreSQL server is slower, for instance, when using JPA element collections with large transaction size. Comparing the normalized speed of EclipseLink with PostgreSQL database server (0.028) to the normalized speed of Hibernate with Derby embedded database (3.1) reveals that in that case, EclipseLink with PostgreSQL server is 111 times slower than Hibernate with Derby embedded.
Speed comparison of JPA database removal operations (normalized score, higher is better)
Transaction Size => | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded |
Basic Person Test | 5.7 | 3.8 | 5.7 | 4.2 | 5.7 | 4.0 |
Element Collection Test | 0.025 | 2.3 | stopped | 1.5 | 0.012 | 1.9 |
Inheritance Test | 5.5 | 4.0 | 5.4 | 4.3 | 5.4 | 4.2 |
Indexing Test | 10.4 | 5.5 | 10.0 | 3.6 | 10.2 | 4.6 |
Graph (Binary Tree) Test | 0.016 | 0.74 | 0.013 | 0.96 | 0.015 | 0.85 |
Multithreading Test | 26.3 | 5.6 | 16.8 | 4.9 | 21.6 | 5.3 |
All Tests | 8.0 | 3.7 | 6.3 | 3.3 | 7.2 | 3.5 |
The results above show that in general EclipseLink with PostgreSQL server is more efficient than Hibernate with Derby embedded in deleting JPA entity objects from the database. Comparing the normalized speed of Hibernate with Derby embedded database (3.5) to the normalized speed of EclipseLink with PostgreSQL database server (7.2) reveals that in these tests, EclipseLink with PostgreSQL server is 2.1 times faster than Hibernate with Derby embedded.
A large performance gap has been detected when using multithreading with small transaction size. Comparing the normalized speed of Hibernate with Derby embedded database (5.6) to the normalized speed of EclipseLink with PostgreSQL database server (26.3) reveals that in that case, EclipseLink with PostgreSQL server is 4.7 times faster than Hibernate with Derby embedded.
On the other hand, EclipseLink with PostgreSQL server is slower, for instance, when using JPA element collections with small transaction size. Comparing the normalized speed of EclipseLink with PostgreSQL database server (0.025) to the normalized speed of Hibernate with Derby embedded database (2.3) reveals that in that case, EclipseLink with PostgreSQL server is 92.0 times slower than Hibernate with Derby embedded.
Comparison of JPA/Database speed - the averages (normalized score, higher is better)
Transaction/Retrieval Size | Few Entities | Many Entities | Average Score | |||
---|---|---|---|---|---|---|
  | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded | EclipseLink PostgreSQL server | Hibernate Derby embedded |
Basic Person Test | 16.3 | 15.5 | 7.8 | 6.9 | 12.1 | 11.2 |
Element Collection Test | 3.7 | 10.2 | 0.40 | 2.8 | 2.1 | 6.5 |
Inheritance Test | 15.9 | 9.7 | 9.5 | 7.7 | 12.7 | 8.7 |
Indexing Test | 6.5 | 6.5 | 10.7 | 9.0 | 8.6 | 7.8 |
Graph (Binary Tree) Test | 1.2 | 2.0 | 1.1 | 1.7 | 1.2 | 1.8 |
Multithreading Test | 32.6 | 17.3 | 16.0 | 7.3 | 24.3 | 12.3 |
All Tests | 13.1 | 10.5 | 7.8 | 6.1 | 10.5 | 8.3 |
The results above show that in general EclipseLink with PostgreSQL server is slightly more efficient than Hibernate with Derby embedded in performing JPA database operations.
A large performance gap has been detected when using multithreading with large transaction/retrieval size. Comparing the normalized speed of Hibernate with Derby embedded database (7.3) to the normalized speed of EclipseLink with PostgreSQL database server (16.0) reveals that in that case, EclipseLink with PostgreSQL server is 2.2 times faster than Hibernate with Derby embedded.
On the other hand, EclipseLink with PostgreSQL server is slower, for instance, when using JPA element collections with large transaction/retrieval size. Comparing the normalized speed of EclipseLink with PostgreSQL database server (0.40) to the normalized speed of Hibernate with Derby embedded database (2.8) reveals that in that case, EclipseLink with PostgreSQL server is 7.0 times slower than Hibernate with Derby embedded.
Other Head to Head DBMS/JPA Comparisons
EclipseLink 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
- 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
- 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