Skip to content
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

놀이터 알림 서비스 Multicast방식에서 Topic 구독 방식으로 변경 #769

Closed
3 tasks done
ehtjsv2 opened this issue Dec 26, 2024 · 0 comments · Fixed by #771
Closed
3 tasks done

놀이터 알림 서비스 Multicast방식에서 Topic 구독 방식으로 변경 #769

ehtjsv2 opened this issue Dec 26, 2024 · 0 comments · Fixed by #771
Assignees
Labels
🖥 backend backend 🤹 enhance 성능 개선 🛠️ refactor 리팩터링

Comments

@ehtjsv2
Copy link
Contributor

ehtjsv2 commented Dec 26, 2024

기존 방식의 문제점

기존의 sendEachForMulticast() 방식은 디바이스 토큰 마다 쓰레드를 생성하여 비동기 API요청을 생성
놀이터에 참여한 인원 수만큼 쓰레드를 생성 및 소멸하여 시스템 자원을 불필요하게 소모
이로 인해, Production서버의 성능을 저하할 가능성이 크다고 판단(직접 테스트한 Notion 글)

Topic방식은 단일 API로 스레드를 생성하지 않고 모든 디바이스에게 알림 전송가능하며, 놀이터는 Topic 구독에 적합한 형태를 띄고있다.

요구 사항

  • sendEachForMulticast()를 send()로 바꾸고, MulticastMessage를 Message로 변경한다.
  • 놀이터에 참여할 경우 해당 놀이터의 ID를 Topic의 KEY로 구독한다.
  • 놀이터에서 나갈 경우 해당 놀이터 Topic 구독을 해제한다.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🖥 backend backend 🤹 enhance 성능 개선 🛠️ refactor 리팩터링
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

1 participant