运行弹性搜索插件grails 2.4.4 / 2.5.0

时间:2015-06-27 23:24:46

标签: grails elasticsearch gorm

我正在尝试在我的grails应用程序上运行ealastic搜索插件。

最初,我在grails 2.4.4上运行。我使用了默认配置

并收到此错误: Grails Elastic Search Plugin SEVERE: Unexpected transforming call sites grails elasticsearch

所以我按照这个答案的建议升级到了2.5.0。

我将DatastoreImpl设置为

elasticsearch {
  datastoreImpl = "hibernateDatastore"
}

但是我收到的错误是我没有指定数据存储区... 有人知道该尝试什么?

2015-06-28 00:56:11,179 [localhost-startStop-1] ERROR context.GrailsContextLoaderListener  - Error initializing the application: No datastore implementation specified
Message: No datastore implementation specified
    Line | Method
->>  135 | doCall                    in ElasticsearchGrailsPlugin$_closure1
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
|    754 | invokeBeanDefiningClosure in grails.spring.BeanBuilder
|    584 | beans . . . . . . . . . . in     ''
|    527 | invokeMethod              in     ''
|    262 | run . . . . . . . . . . . in java.util.concurrent.FutureTask
|   1145 | runWorker                 in java.util.concurrent.ThreadPoolExecutor
|    615 | run . . . . . . . . . . . in java.util.concurrent.ThreadPoolExecutor$Worker
^    745 | run                       in java.lang.Thread
Error |
Forked Grails VM exited with error

2 个答案:

答案 0 :(得分:3)

elasticSearch.client.mode = 'local';
elasticSearch.datastoreImpl = 'hibernateDatastore';

如果您追加到Config.groovy,这应该可以修复此错误。

答案 1 :(得分:0)

以下配置适用于我:

elasticSearch.datastoreImpl = 'hibernateDatastore'