我正在嘗試使用Elastic Search Java API創建索引。創建索引 - 彈性搜索 - Java API
我的代碼是與此類似:
String indexName = "clients";
Node node = new NodeBuilder().clusterName(this.clusterName).client(true).node();
Client client = node.client();
client.admin().indices().prepareCreate(indexName).execute().actionGet(); // It fails here
if (client != null) client.close();
if (node != null) node.close();
但每一次,我執行我得到這個錯誤:http://screencast.com/t/MfnTccwho
我在做什麼錯?
請張貼錯誤到正確的問題,而不是一個一個的圖片鏈接。 – skaffman