jobe server output limit

jobe server output limit

von Mikhail Partanskiy -
Anzahl Antworten: 1

Hi,

If I try to check next Python code

print('1' * (2048000 - 3) + '234567')

I can recieve from jobe server "111...111234" only, "567" will be cut.

I checked access.log file of jobe server's apache:

"POST /jobe/index.php/restapi/runs HTTP/1.1" 200 2048463 upon print('1' * (2048000 - 3) + '2') program.

"POST /jobe/index.php/restapi/runs HTTP/1.1" 200 2048464 upon print('1' * (2048000 - 3) + '23') program.

"POST /jobe/index.php/restapi/runs HTTP/1.1" 200 2048465 upon print('1' * (2048000 - 3) + '234') program.

"POST /jobe/index.php/restapi/runs HTTP/1.1" 200 2048465 upon print('1' * (2048000 - 3) + '2345') program.

"POST /jobe/index.php/restapi/runs HTTP/1.1" 200 2048465 upon print('1' * (2048000 - 3) + '23456') program.

So, 2048000 bytes is the limit of output data that the jobe server can handle with.

It happens with any languages.

I need to use output size around 4Mb. How to expand jobe server oportunity?

Thanks for your help!

Best regards, Mike.





Als Antwort auf Mikhail Partanskiy

Re: jobe server output limit

von Mikhail Partanskiy -

Reading line 276 of file LanguageTask.php I got about I can control it by using streamsize parameter.

Issue closed.

Thank you!