2020-06-03 01:55:12 UTC - Dominic Kim: hm.. it's quite fast on my machine in my company network. My personal machine or home network might be an issue. https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1591149312382400?thread_ts=1591098486.380400&cid=C3TPCAQG1 ---- 2020-06-03 18:36:55 UTC - Alex Fuerst: Hello, I am running a standalone OpenWhisk and am trying to upload a custom Python 3 virtual environment, with some added pip libraries, as described <https://github.com/apache/openwhisk/blob/master/docs/actions-python.md#packaging-python-actions-with-a-virtual-environment-in-zip-files|here>. The problem is that zipped up, the venv is 66 MB (55 with judicious pruning), both too large especially when converted to base64. I have overloaded the <https://github.com/apache/openwhisk/blob/master/common/scala/src/main/resources/application.conf#L420|application.conf file> and changed the hard-coded exec size limit <https://github.com/apache/openwhisk/blob/master/common/scala/src/main/scala/org/apache/openwhisk/core/entity/Exec.scala#L233|here>, but still get this exception from akka on upload size limit: ``` akka.http.scaladsl.model.EntityStreamException: Request too large: Request of size 74560765 was longer than the maximum of 52428800``` Is there a secret to a smaller venv or way to override the akka limit? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1591209415384200?thread_ts=1591209415.384200&cid=C3TPCAQG1 ----
