elastic cloudでelasticsearchのv7.7.0を使用しております。
今回phpライブラリーelasticsearch-phpを使用してindexの削除を行いたいのですが、エラーで
削除が実行されません。
例外のメッセージからDELETEメソッドが正しくない的な内容かと思います。
権限設定があるのでしょうか?
PHP Fatal error: Uncaught Elasticsearch\Common\Exceptions\BadRequest400Exception: {"error":"Incorrect HTTP method for uri [/hoge/shop] and method [DELETE], allowed: [POST]","status":405} in /var/hoge/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:632
ちなみに、kibanaからDELETE /shop/
は問題なく実行されます。
上記の通りに記述しております。
実際のコードは下記です。
php
1$hosts = [ 2 'https://xxx:xxx@f9a92d9c3c7d4da3b5b7707f39aa6642.asia-northeast1.gcp.cloud.es.io:9243/hoge', 3]; 4$client = ClientBuilder::create()->setHosts($hosts)->build(); 5 6$response = $client->indices()->delete(['index' => 'shop']); 7
一部伏せ字です。
各版数は下記の通りです。
elasticsearch:v7.7.0
PHP:7.2.11
elasticsearch-php:7.7.0
ご教授お願い致します。
あなたの回答
tips
プレビュー