지원단위별 계정 통합 생성 시 이메일이 보내지지 않는 현상 해결 #376
Merged
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.
Summary
지원 단위 별로 합격자 계정 통합 생성시 이메일이 정상적으로 보내지지 않는 현상을 해결했습니다.
Tasks
ETC
이전에 해당 부분을 리팩토링했을 때, 시스템 성능을 위해 스프링의 스케줄러를 삭제했습니다. 하지만 스케줄러를 삭제하니 EmailTask가 emailQueue에 저장되었다가 processEmailQueue 메소드에 의해 실제 이메일이 전송되는 과정에서, 비동기로 실행하기 때문에 다른 비동기 작업들이 완료되지 않아 첫 api 호출에서 이메일 큐의 내용을 처리하지 못하는 문제로 발생한 버그로 인지했습니다.
따라서 다시 스프링 스케줄러를 도입해 비동기 메소드를 주기적으로 호출해 큐에 남아있는 이메일들을 계속해서 전송하는 방식으로 변경했습니다.
Screenshot
여러 번 계정 삭제 및 반복으로 전송을 시도했을 때, 잘 전송이 되는 것을 볼 수 있습니다.