Skip to content

Commit

Permalink
feat: hikaripool, tomcat 스레드 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
minsang-alt committed Dec 24, 2024
1 parent 8632a70 commit 357ac6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ spring:
datasource:
hikari:
# 풀 사이즈 설정
maximum-pool-size: 100
minimum-idle: 100
maximum-pool-size: 200
minimum-idle: 200

# 시간 관련 설정
max-lifetime: 50000 # 50초, DB wait_timeout보다 작게
Expand All @@ -26,7 +26,7 @@ server:
accept-count: 100 # max-connections를 초과하는 요청에 대한 대기열 크기, 대기열이 가득 차면 추가 요청은 거절됨, OS 레벨에서 관리되는 설정
max-connections: 8192 # 서버가 동시에 유지할 수 있는 최대 연결 수, 실제 활성화된 TCP 연결의 수가 아님, 시스템이 할당한 소켓 파일 디스크립터의 수를 의미, 연결이 종료되어도 TIME_WAIT 상태 때문에 파일 디스크립터는 바로 해제되지 않음
threads:
max: 200 # 최대 스레드 수
max: 300 # 최대 스레드 수
min-spare: 10 # 초기 스레드 풀 사이즈


Expand Down

0 comments on commit 357ac6a

Please sign in to comment.