Thanks!! I meant to update this post earlier, but I actually had already solved my problem. I forgot that because we have atlas deployed in kubernetes, there is an ingress controller that was handling the requests. When I noticed the 413 was being returned by nginx, not jetty, the solution was a bit more obvious.
Thanks again! On Wed, May 9, 2018 at 8:42 PM, Madhan Neethiraj <[email protected]> wrote: > Charlie, > > Atlas uses Jetty web server to process HTTP request. By default, Jetty > seems to limit request size to 200k – http://www.eclipse.org/jetty/ > documentation/9.3.x/configuring-form-size.html. > > Currently, Atlas doesn't support request max size value to be changed via > its configuration. Until this support is added, can you please try adding > following system property in atlas_start.py (to DEFAULT_JVM_OPTS): > > -Dorg.eclipse.jetty.server.Request.maxFormContentSize=1000000 > > Hope this helps. > > Madhan > > > > From: Charlie Meyer <[email protected]> > Reply-To: "[email protected]" <[email protected]> > Date: Wednesday, May 9, 2018 at 9:34 AM > To: "[email protected]" <[email protected]> > Subject: Receiving HTTP 413 - Request too large > > Hi, > > When making requests to atlas to create a bunch of entities we > occasionally receive 413 errors. What is the max request body that atlas > allows out of the box and is that configurable? > > Thanks! > > Charlie > > >
