Release 1.3.8 - #459
Merged
Merged
Conversation
* import contest problem to another contest * add lang pack for contest problem import * add end line * resolve comments
This file contains hidden or 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
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.
Improvements
1. 채점 시간 KPI 측정을 위한 필드 추가
채점이 시작되기까지 걸린 PENDING 시간, 채점을 완료하는데까지 걸린 JUDGING 시간은 매우 중요한 KPI입니다. 따라서
Submission모델에 관련된 필드를 추가하였습니다.이제 아래와 같이 PENDING 시간과 JUDGING 시간을 설정할 수 있습니다.
judge_start_time - create_timejudge_end_time - judge_start_time관련 PR & Commits
Bug Fix
1. 채점 요청이 증가하는 경우 비정상적인 시간 측정 및 Time Limit Exceeded 에러 해결
기존 채점 서버가 자신의 사용 가능 CPU 코어 수를 잘못 측정하여 과도한 요청을 동시에 처리하는 버그를 식별하였습니다.
따라서 채점 서버가 실제로 사용할 수 있는, (docker-compose 파일의 limit) 에 맞게 적절히 요청을 처리할 수 있도록 설정하였습니다.
참고 자료
기존 채점 서버가 분당 30회 제출의 부하가 걸리는 경우 실행 시간

수정된 채점 서버가 분당 30회 제출의 부하가 걸리는 경우 실행 시간

관련 PR & Commits
New Feature
1. 기존 대회 문제 가져오기 기능 추가 [관리자 전용]
이전에 운영했던 대회와 같은 문제를 다른 대회로 열고 싶은 경우, 일일이 하나씩 가져와야하는 번거로움이 있었습니다.
이번 릴리즈에서
이전 대회 문제 가져오기버튼을 추가하여, 자신이 생성한 대회에 한해서 문제를 한번에 가져오는 기능을 추가하였습니다.관련 PR & Commits