Skip to content

Commit

Permalink
feat: HikariCP, Tomcat 튜닝 (#644)
Browse files Browse the repository at this point in the history
* refactor: 임시로 DEV CI/CD 스크립트 수정

* refactor: branch 경로 수정 및 docker에만 push 할 수 있도록 수정

* refactor: accept-count 200

* refactor: - accept-count 200, + hikari max pool size 50

* refactor: + hikari max pool size 200

* refactor: - hikari max pool size 30

* refactor: OfferingEntity의 Member에 FetchType.LAZY 설정 및 트랜잭션 추가

* refactor: getAllOffering에 트렌젝션 적용

* chore: actuator에 hikariCP 메트릭 지표 추가

* refactor: - hikari max pool size 20

* refactor: + hikari max pool size 40

* refactor: - hikari max pool size 30

* refactor: - hikari max pool size 20

* refactor: + hikari max pool size 50

* refactor: - hikari max pool size 4

* refactor: + hikari max pool size 40

* refactor: hikari max pool size default(10)

* refactor: + hikari max pool size 8

* refactor: 테스트를 위해 공모 생성 시 알림 off

* refactor: - tomcat max threads 3

* refactor: + tomcat max threads 100

* refactor: default로 회귀

* feat: HikariCP, Tomcat 설정 및 주석 해제

* refactor: metric 관련 설정 제거

---------

Co-authored-by: fromitive <[email protected]>
Co-authored-by: Choo <[email protected]>
  • Loading branch information
3 people authored Oct 24, 2024
1 parent 96c3da8 commit f5ac548
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend-dev-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- ".github/workflows/backend-dev-ci-cd.yml"
- "Dockerfile"
# pull_request:
# branches: [ "develop" ]
# branches: [ "chongdae" ]
# paths:
# - "backend/**"
# - ".github/workflows/backend-dev-ci-cd.yml"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import jakarta.persistence.Entity;
import jakarta.persistence.EnumType;
import jakarta.persistence.Enumerated;
import jakarta.persistence.FetchType;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
Expand Down Expand Up @@ -48,7 +49,7 @@ public class OfferingEntity extends BaseTimeEntity {
private Long id;

@NotNull
@ManyToOne
@ManyToOne(fetch = FetchType.LAZY)
private MemberEntity member;

@NotNull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public class OfferingService {
private final OfferingFetcher offeringFetcher;
private final Clock clock;

@Transactional(readOnly = true)
public OfferingDetailResponse getOfferingDetail(Long offeringId, MemberEntity member) {
OfferingEntity offering = offeringRepository.findById(offeringId)
.orElseThrow(() -> new MarketException(OfferingErrorCode.NOT_FOUND));
Expand All @@ -72,6 +73,7 @@ public OfferingAllResponseItem getOffering(Long offeringId) {
return new OfferingAllResponseItem(offering, offeringPrice);
}

@Transactional(readOnly = true)
public OfferingAllResponse getAllOffering(String filterName, String searchKeyword, Long lastId, Integer pageSize) {
Pageable pageable = PageRequest.ofSize(pageSize);
OfferingFilter filter = OfferingFilter.findByName(filterName);
Expand Down Expand Up @@ -186,6 +188,7 @@ private void updateStatus(OfferingEntity offering) { // TODO : 도메인 분리
}

@WriterDatabase
@Transactional
public void deleteOffering(Long offeringId, MemberEntity member) {
OfferingEntity offering = offeringRepository.findById(offeringId)
.orElseThrow(() -> new MarketException(OfferingErrorCode.NOT_FOUND));
Expand Down
9 changes: 9 additions & 0 deletions backend/src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
server:
tomcat:
threads:
max: 35
max-connections: 1024
accept-count: 242

spring:
application:
name: chongdae
datasource:
url: jdbc:h2:mem:database
hikari:
maximum-pool-size: 8
jpa:
show-sql: true
defer-datasource-initialization: true
Expand Down

0 comments on commit f5ac548

Please sign in to comment.