我正在尝试使用 Elastic Search 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
我究竟做错了什么?