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 357ac6a commit 4701006
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 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: 200
minimum-idle: 200
maximum-pool-size: 400
minimum-idle: 400

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



Expand Down

0 comments on commit 4701006

Please sign in to comment.