Elasticsearch:Javascript如何使用文件模板进行搜索

时间:2015-09-16 06:52:19

标签: javascript elasticsearch elasticsearch-template

我在胡子文件中创建了一个搜索模板,并将其放在/ config / scripts上。

我可以通过指定templateType

来使用此模板进行java搜索
SearchResponse sr = clientES.prepareSearch("symposium-statistique-application").setTypes("application")
            .setTemplateName("aggregationByApplicationsTemplate").setTemplateType(ScriptService.ScriptType.FILE)

注意:我可以在javascript中编写索引的searchTemplate,但我必须使用文件模板。                 .setTemplateParams(template_params)获得();

但是我没有在文档Elk javascript documentation中找到,如何在javascript中执行相同的操作。

提前致谢,Alexandre

1 个答案:

答案 0 :(得分:0)

箍,

它写在文档用途中:

"template": {
    "file": "storedTemplate" 
},

而不是

"template": {
    "id": "idTemplate" 
},