Hello,
i have an elastic cloud cluster and im facing a request entity payload that seems to be too large
the error received on the console is :
{
"statusCode": 413,
"error": "Request Entity Too Large",
"message": "Payload content length greater than maximum allowed: 1048576"
}
So the limit seems to be around 1Mbits or 1Mbytes , the unit is not given here by the way
so i checked the cluster maximum limits with a request
GET /_clusters/settings?include_defaults
i've seen many topics complaining about http.max_content_length param so i've checked this one it says :
"max_content_length": "100mb",
as far as i understand this is the maximum size of an uploaded document in mbits wich gives around 12Mbytes
but this number has nothing to do with the previous one sent by the error which is only 1M not 100M
plus it seems that for cloud instance it is not possible to increase the http.max_content_length anyway
my question is the following
i'm reaching the limit of the request payload itself when querying an index, not the limit when indexing something
- but where is this limit ?
- what is the parameter name ?
- is it possible to increase it for cloud instance customers ?
as the numbers are totally different my guess is that the interesting parameter has nothing to do with http.max_content_length because 100mbit would have done the job.
My payload size copy pasted to a file on my computer is 1.1MBytes so around 9.2Mbits so i should not have reached the limit anyway
thanks for any help on this