Hello!
I started a Gremlin rest server and I am trying to submit something to it, but I constantly get the "HTTP content length exceeded 65536 bytes." error. The last lines in the config file look like this:
maxInitialLineLength: 16384
maxHeaderSize: 16384
maxChunkSize: 16384
maxContentLength: 1048576
maxAccumulationBufferComponents: 1048576
resultIterationBatchSize: 16384
(I played a little bit with the values). The length of the string I am trying to submit is 520338 bytes (that's what javascript said). What can I do, what values do I have to change for this to work? Thanks!