Replies: 1 comment 4 replies
-
Hey Olivia. It is not a known issue. Would you mind to share more? We will also dig into it. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I'm having issues getting compressed requests to process properly in my BentoML(0.13.1)-based service. Basically, I have a BentoService set up with a single endpoint that's configured to take StringInput (well, a subclass of StringInput). When I start up the dev server and send a request with a compressed body (and Content-Encoding: 'gzip', of course) it works perfectly. But when I try to do this with the gunicorn server, the service simply hangs, then times out.
I've poked around in the debugger, and it seems like the body gets decompressed before it ever makes it to 'from_http_request' in StringInput, which should actually be doing the decompression. I can go into why I think this is, but before I provide too much detail, I just want to ask: has anyone else noticed this behaviour? Is this a known issue?
Beta Was this translation helpful? Give feedback.
All reactions