-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/nyh365 Step3: 사용자 전체 정보 조회 #11
Open
nyh365
wants to merge
20
commits into
nyh365
Choose a base branch
from
feature/nyh365_step3
base: nyh365
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 한 사용자의 계좌가 1000개를 넘지 않을 것이라 생각해 데이터를 한번에 가져오도록 구현했습니다.
- 각 계좌마다 연관된 거래 내역을 가져오는 과정에서 병목이 있었습니다. - A라는 계좌와 연관된 거래 내역을 모두 가져오기까지 기다리는 것이 아니라 동시에 각 계좌와 연관된 거래 내역을 모두 가져오게끔 했습니다. - CompletableFutre를 이용하여 각 계좌마다 연관된 거래 내역을 가져오는 과정을 비동기적으로 구현하였습니다.
- 각 계좌마다 연관된 거래 내역을 가져오는 과정에서 병목이 있었습니다. - A라는 계좌와 연관된 거래 내역을 모두 가져오기까지 기다리는 것이 아니라 동시에 각 계좌와 연관된 거래 내역을 모두 가져오게끔 했습니다. - CompletableFutre를 이용하여 각 계좌마다 연관된 거래 내역을 가져오는 과정을 비동기적으로 구현하였습니다. - 트랜잭션 개수가 증가할 때를 대비하여 매번 limit만큼 조회해오도록 수정했습니다. - 현재 특정 계좌와 연관된 트랜잭션의 최대 개수가 1000을 넘어가는 경우가 있기 때문에 limit 크기는 1000으로 고정했습니다.
- 기존 CompletableFuture를 사용한 상태에서 locust를 이용해 성능 테스트 한 결과 ConnectionException 발생으로 임시 수정
- 랜덤 유저 아이디를 통해 성능테스트를 진행하고자 변경했습니다.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
구현 사항
사용자 전체 정보 조회(모든 계좌 정보, 모든 거래 내역)을 조회하는 API 1
사용자 전체 정보 조회(모든 계좌 정보, 모든 거래 내역)을 조회하는 API 2
성능테스트
시나리오 1: API 1 (병렬 처리 방식) 성능 테스트
시나리오 2: API 2 (병렬 처리 방식) 성능 테스트
비교 결과
Total Requests per Second (RPS)
Response Times (ms)