エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Elasticsearch Users - JAVA vs REST index existence check
I have been reading the group for ways in which to check the existence of an index, and using the... I have been reading the group for ways in which to check the existence of an index, and using the JAVA API, this seems to be the preferred method: client.admin().cluster().prepareHealth().setWaitForYellowStatus().execute().actionGet(); ClusterStateResponse response = client.admin().cluster().prepareState().execute().actionGet(); boolean hasIndex = response.getState().metaData().hasIndex(indexName)
2015/09/05 リンク