gpt4 book ai didi

curl - 如何使用curl为平面文件测试elasticsearch?

转载 作者:行者123 更新时间:2023-12-03 02:08:03 24 4
gpt4 key购买 nike

我已经成功安装了elasticsearch&curl并且工作正常,这意味着

http://[localhost]:9200 & curl -XGET [localhost]:9200'`  results in 

{
"status" : 200,
"name" : "Bereet",
"version" : {
"number" : "1.0.1",
"build_hash" : "5c03844e1978e5cc924dab2a423dc63ce881c42b",
"build_timestamp" : "2014-02-25T15:52:53Z",
"build_snapshot" : false,
"lucene_version" : "4.6"
},
"tagline" : "You Know, for Search"
}

现在,我想运行一个名为x.java的文件的搜索,我已经设置了path.logs:[x.java的完全限定路径]

我还需要做什么,才能开始使用Elasticsearch搜索内容?我已经在Mozilla中安装了JSON插件。

谁能帮助我了解如何对我指定的文件运行elasticsearch?提前致谢

最佳答案

看到这个:http://joelabrahamsson.com/elasticsearch-101/

Elasticsearch不会搜索外部数据,只会搜索您输入的数据。向ES添加数据称为索引编制,添加的所有内容均为文档。因此,您应该首先为文件建立索引:

POST <index_name>/<type_name>/<document_id> {
"name": "<file_name>",
"content" : "<file_contents>",
...
"<any other fields you want to store>": "<any other values>"
}

关于curl - 如何使用curl为平面文件测试elasticsearch?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22500647/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com