In the first part of this article, we learned how to improve the performance of our applications, replacing Tomcat with Undertow, which is a high-performance web server, in addition to enabling and configuring data compression, to reduce the size of HTTP responses that travel over the network.
Now, we will talk about how to improve Spring Boot application performance in the persistence part, but first we need to understand what JPA, Hibernate and Hikari.
JPA or Java Persistence API, which was later renamed to Jakarta Persistence, is a Java language standard that describes a common interface for data persistence frameworks
TheJPA specification defines object relational mapping internally, rather than relying on vendor-specific mapping implementations.
HibernateHibernate is one of the ORM frameworks that makes the concrete implementation of the JPA specification. that is, if this specification describes the need for methods to persist, remove, update and fetch data, the person who will actually build these behaviors is Hibernate, as well as EclipseLink , which is another ORM.
HikariHikari is a connection pooling framework, which is responsible for managing connections to the database, keeping them open so they can be reused, that is, it is a cache of connections for future requests, making access to the database faster and reducing the number of new connections to be created.
Configuring Hikari, JPA and HibernateUsing application.yml:
spring: hikari: auto-commit: false connection-timeout: 250 max-lifetime: 600000 maximum-pool-size: 20 minimum-idle: 10 pool-name: master jpa: open-in-view: false show-sql: true hibernate: ddl-auto: none properties: hibernate.connection.provider_disables_autocommit: true hibernate.generate_statistics: trueUsing application.properties:
spring: hikari: auto-commit: false connection-timeout: 250 max-lifetime: 600000 maximum-pool-size: 20 minimum-idle: 10 pool-name: master jpa: open-in-view: false show-sql: true hibernate: ddl-auto: none properties: hibernate.connection.provider_disables_autocommit: true hibernate.generate_statistics: trueNow let's give a brief summary of the options:
Hikari
connection pool will come with auto-commit disabled.
pool. It is preferable to set a short timeout to fail quickly and return an error message, rather than keeping the client waiting indefinitely.
pool, including idle and in-use connections, determining the maximum number of active connections to the database. If the pool reaches this limit and there are no idle connections, calls to getConnection() will block for up to connectionTimeout milliseconds before failing.
pool and appears primarily in registry management consoles and JMX to identify pools and their configurations.
OSIV (Open Session In View) is enabled, a session is maintained throughout the request , even without the @Transactional annotation. This can cause performance problems, such as lack of application responses, as the session maintains the connection to the database until the end of the request.
Hibernate in relation to the database's schema. It can have the following values:
Hibernate that we have disabled auto-commit of providers (PostgreSQL, MySQL, etc). This impacts performance because Hibernate will need to get a connection from the pool to know whether or not auto-commit is enabled or not , for every transaction he makes.
Hikari settings like auto-commit and pool size , those of JPA and Hibernate like OSIV (Open Session In View) and inform that we have disabled auto-commit of providers.
In the next part we will talk about exceptions and how they can be configured, to save resources from theJVM (Java Virtual Machine).
References:
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3