ItKlubBozoLagan / kontestis

Competitive programming contest platform.
https://kontestis.ac
2 stars 0 forks source link

Testcase size limit #33

Closed VisenP closed 1 year ago

VisenP commented 1 year ago

Currently Cloud Run does not support requests larger then 32MB which can cause issues for larger testcases, this will be partially fixed with the cluster parallelisation, the easiest solution would be to just limit cluster size to 30MB as more is almost never needed.

VisenP commented 1 year ago

Turns out Express limit was set to 100KB, we still have to handle the 30MB+ case if it happens but it's not really and issue.

VisenP commented 1 year ago

Done