Max request size?

Hey guys. Is there a maximum request size that ES can handle?

HTTP wise, there is a limit of 100mb (you can change it using the http.max_content_length setting). Otherwise, there isn't, but, be careful not to overload the server.

On Wednesday, January 25, 2012 at 4:43 PM, Nick Hoffman wrote:

Hey guys. Is there a maximum request size that ES can handle?

On Wednesday, 25 January 2012 11:46:20 UTC-5, kimchy wrote:

HTTP wise, there is a limit of 100mb (you can change it using
the http.max_content_length setting). Otherwise, there isn't, but, be
careful not to overload the server.

Awesome. Thanks, Shay.

Can this setting be updated dynamically? It doesn't look that way:

$ curl -XPUT localhost:9200/_cluster/settings -d '{

"persistent" : {
    "http.max_content_length": "1200mb"
}

}'

$ curl -XGET localhost:9200/_cluster/settings?pretty=1
{
"persistent" : { },
"transient" : { }

  }
}

}
}

Try setting it in transient instead of persistent.

Persistent settings are usually read from the config file only.

On 6 January 2015 at 09:16, rogthefrog roger+es@amino.com wrote:

Can this setting be updated dynamically? It doesn't look that way:

$ curl -XPUT localhost:9200/_cluster/settings -d '{

"persistent" : {
    "http.max_content_length": "1200mb"
}

}'

$ curl -XGET localhost:9200/_cluster/settings?pretty=1
{
"persistent" : { },
"transient" : { }

  }
}

}
}

--
View this message in context:
http://elasticsearch-users.115913.n3.nabble.com/Max-request-size-tp3687861p4068519.html
Sent from the Elasticsearch Users mailing list archive at Nabble.com.

--
You received this message because you are subscribed to the Google Groups
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/1420496175553-4068519.post%40n3.nabble.com
.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/CAEYi1X-uvGDr2uHFGDw_zk9%2BopPn%2BDkDcwPvXkFfgWkGosRoHQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

@mark thanks for the suggestion, I hadn't thought of that. Same results, no dice.