server: type: simple applicationContextPath: / connector: type: http port: 9090 useServerHeader: true # There is no proxy in front of the server useForwardedHeaders: false # Test requirements forbid gzip compression of the replies gzip: enabled: false requestLog: appenders: [] logging: level: WARN appenders: - type: console database: # the name of your JDBC driver driverClass: com.mysql.cj.jdbc.Driver # the username user: benchmarkdbuser # the password password: benchmarkdbpass # the JDBC URL url: jdbc:mysql://tfb-database:3306/hello_world?jdbcCompliantTruncation=false&elideSetAutoCommits=true&useLocalSessionState=true&cachePrepStmts=true&cacheCallableStmts=true&alwaysSendSetIsolation=false&prepStmtCacheSize=4096&cacheServerConfiguration=true&prepStmtCacheSqlLimit=2048&zeroDateTimeBehavior=convertToNull&traceProtocol=false&useUnbufferedInput=false&useReadAheadInput=false&maintainTimeStats=false&useServerPrepStmts=true&cacheRSMetadata=true&useSSL=false # any properties specific to your JDBC driver: properties: charSet: UTF-8 hibernate.dialect: org.hibernate.dialect.MySQL8Dialect # enable batch updates in Hibernate hibernate.jdbc.batch_size: 30 hibernate.jdbc.batch_versioned_data: true # the maximum amount of time to wait on an empty pool before throwing an exception maxWaitForConnection: 1s # the initial number of connections initialSize: 8 # the minimum number of connections to keep open minSize: 8 # the maximum number of connections to keep open maxSize: 256 # whether or not idle connections should be validated checkConnectionWhileIdle: false # disable comments in SQL queries autoCommentsEnabled: false # disable autocommit in the JDBC driver autoCommitByDefault: false