Reputation: 42500
I am using AWS Elasticsearch
and I am trying to update its cluster setting but got an error:
$ curl -XPUT https://vpc-tf-security-search-roxodu3f3fdsfsdfuhu.ap-southeast-2.es.amazonaws.com/_cluster/settings -H 'Content-Type: application/json' -d'
> {"persistent" : { "indices.recovery.max_bytes_per_sec" : "50mb"}}'
{"Message":"Your request: '/_cluster/settings' payload is not allowed."}
I wonder why I can't change that. Is it a limitation on AWS Elasticsearch?
Upvotes: 3
Views: 1949
Reputation: 2179
AWS restricts access to a number of APIs and settings.
supported API on AWS:
Upvotes: 3