Skip to content

Latest commit

 

History

History
executable file
·
21 lines (15 loc) · 801 Bytes

File metadata and controls

executable file
·
21 lines (15 loc) · 801 Bytes

Spring PetClinic

GitHub Repository: spring-petclinic

These application configurations are needed before starting the wrk tests.

Step I

Append/override these properties to the application.properties, otherwise the application cannot cope with an increased/concurrent load.

# Increase the number of Hikari pool connections
spring.datasource.hikari.maximum-pool-size=4096
spring.datasource.hikari.minimum-idle=4096
spring.datasource.hikari.connection-timeout=600000
spring.datasource.hikari.idle-timeout=2400000
spring.datasource.hikari.max-lifetime=4800000

# Tomcat properties
server.tomcat.threads.max=4096