我決定嘗試我的第一次用於彈性搜索的簡單待辦事項列表應用程序。我跟着this video來使用模塊,並在模塊本身中沒有任何修改,我所做的就是創建應用程序並在控制器中添加類search.java。Elasticsearch拋出異常:NoNodeAvailableException發生:沒有節點可用
Execution exception
NoNodeAvailableException occured : No node available
In {module:elasticsearch-0.4}/app/controllers/elasticsearch/ElasticSearchController.java (around line 367)
363:
// FIXME Currently we ignore the orderBy and order fields
364:
query.from((page - 1) * getPageSize()).size(getPageSize());
365:
query.hydrate(true);
366:
367:
return query.fetch();
368:
}