简体   繁体   English

弹性搜索客户端使用R包

[英]elastic search client using R packages

I am using elastic search as data store. 我使用elastic search作为数据存储。 In my project i need to analyze the elastic search data using R . 在我的项目中,我需要使用R来分析elastic search数据。 In java i did these operations using es client. java我使用es客户端进行了这些操作。 But i couldn't find any packages in R that support elastic search operations. 但我在R中找不到任何支持elastic search操作的软件包。 I have tried using RCurl packages like this: 我尝试过使用像这样的RCurl包:

count <- fromJSON(getURL("http://localhost:9200/myindex/mytype/_count"))

But this is not i want. 但这不是我想要的。 Is there any packages in CRAN or other repositories that perform elastic search operations? CRAN或其他存储库中是否有执行elastic search操作的软件包?

Thanks 谢谢

I've been working on an elasticsearch R client here https://github.com/ropensci/elastic 我一直在这里开发一个elasticsearch R客户端https://github.com/ropensci/elastic

There's a bunch of examples here https://github.com/ropensci/elastic#quick-start 这里有一堆例子https://github.com/ropensci/elastic#quick-start

It is alpha software though, so expect changes. 它虽然是alpha软件,所以期待变化。 I'll try to get alot of work done on it next month. 我会在下个月尝试完成很多工作。

Would love pull requests. 爱拉请求。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用 JEST 客户端在弹性搜索中添加自定义名称? - How to add custom name in elastic search using JEST client? 如何使用Java客户端更新Elastic Search上的条目 - How to update an entry on Elastic Search using Java client 弹性搜索:使用弹性搜索 API 生成弹性搜索查询 - Elastic Search: Generating Elastic Search query using Elastic search API 如何通过 Java 高级 rest 客户端在 Elastic Search 中使用多个字段进行搜索 - How to search using multiple fields in Elastic Search through Java high level rest client 弹性搜索 - Java api 客户端范围查询 - elastic search - Java api client range query Bool在弹性搜索java客户端中查询模糊性 - Bool query with fuzziness in elastic search java client 弹性搜索传输客户端陈旧连接 - Elastic Search Transport Client stale connections 弹性搜索 如果使用低级 Rest Client 对特定数据库列进行了任何更改,如何检索数据 - Elastic Search How to retrieve the data if any changes made to a particular database column using Low Level Rest Client 使用 Rest 高级客户端检索或插入数据到 Elastic Search 时出现 SocketTimeoutException - SocketTimeoutException while retrieving or inserting data into Elastic Search by using Rest High Level Client 使用弹性搜索Java客户端时,如何上传pdf到elasticsearch? - How do I upload a pdf to elasticsearch when using the elastic search java client?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM