-
Notifications
You must be signed in to change notification settings - Fork 2
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
[Feat] Inbound 네트워크 품질에 따라 Consumer Layer 설정 추가 #364
Merged
Merged
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
seoko97
requested review from
begong313,
simeunseo,
Jieun1ee and
Fixtar
as code owners
December 4, 2024 05:35
🎨 스토리북 확인하기
|
Fixtar
approved these changes
Dec 4, 2024
begong313
approved these changes
Dec 4, 2024
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.
관련 이슈 번호
작업 내용
PR 포인트
네트워크 품질 적용 범위는 다음과 같습니다
네트워크 상태가 매우 우수 조건 중 어떤 것도 만족하지 않는 경우 기본적으로 좋은 품질을 의미합니다.
네트워크 상태가 보통 수준으로, 약간의 지연이나 패킷 손실이 발생할 수 있지만 대부분의 스트리밍 상황에서 안정적인 성능을 제공합니다.
packetLossRate
> 2%: 패킷 손실률이 2%를 초과할 때jitter
> 15 ms: 지터가 15ms를 초과할 때frameDropRate
> 5%: 프레임 드롭률이 5%를 초과할 때averageRTT
> 150 ms: 평균 왕복 시간(RTT)이 150ms를 초과할 때nackCount
> 20: 네크 확인 요청 수가 20을 초과할 때네트워크 상태가 불안정하며 스트리밍 품질이 낮을 수 있습니다. 끊김이나 버퍼링이 발생할 가능성이 높아 사용 경험에 큰 영향을 미칠 수 있습니다.
packetLossRate
> 5%: 패킷 손실률이 5%를 초과할 때jitter
> 30 ms: 지터가 30ms를 초과할 때frameDropRate
> 10%: 프레임 드롭률이 10%를 초과할 때averageRTT
> 300 ms: 평균 왕복 시간(RTT)이 300ms를 초과할 때nackCount
> 50: 네크 확인 요청 수가 50을 초과할 때