2016-10-17 6 views
1

私はAWS上elasticsearchクラスタ設定を更新しようとしているが、 Elasticserarch AWSクラスタの設定を表示する方法:私はこのエラーまし

Message: "Your request: '/_cluster/settings' is not allowed for verb: GET" 

マイコマンド:

curl -XGET localhost:9200/_cluster/settings 

OBS:両方が取得しまたは置く方法は動作しませ

curl -XPUT http://localhost:9200/_cluster/settings -d '{"persistent" : {"indices.fielddata.cache.size" : "30%"}}' 
{"Message":"Your request: '/_cluster/settings' payload is not allowed."} 

参考:

https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-update-settings.html

AWSの問題ですか?

答えて

1

AWSではサポートされていません。

The /_cluster/settings operation does not support the HTTP GET method. You can set three cluster settings, but cannot retrieve them.

http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-gsg-supported-operations.html

+0

それはそうです、私のために、私はこれを見つけ、その仕事:http://docs.aws.amazon.com/cli/latest/reference/es/describe-elasticsearch-domain-config .html – JoeLoco

関連する問題