-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(iris): serialize testcase judging and limit output size (#2258)
* feat(be): submission controller for load test * feat(iris): serialize testcase judging (#2255) feat(be): serialize testcase judging - 병렬적으로 처리되고 있던 tc 채점을 직렬화합니다. * fix(infra): change iris spec for serialzation * feat(iris): limit judge result output (#2256) * feat(iris): limit judge result output * feat(iris): set limit 1MB * Revert "feat(be): submission controller for load test" This reverts commit 449b44e. * fix(infra): update iris spec container after load-test * fix(infra): change the number of iris and api container --------- Co-authored-by: donghun1214 <[email protected]>
- Loading branch information
1 parent
59d1673
commit b8e55c0
Showing
4 changed files
with
15 additions
and
14 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,3 +53,5 @@ const ( | |
EXCHANGE = "judger-exchange" | ||
RESULT_KEY = "result" | ||
) | ||
|
||
const MAX_OUTPUT = 1048576 // 1MB |
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