使用rest-client ruby​​ gem在elasticsearch get请求中传递json数据

时间:2012-10-20 11:59:52

标签: ruby elasticsearch rest-client

如何使用rest client执行以下查询(在doc中给出)。

curl -XGET 'http://localhost:9200/twitter/tweet/_search' -d '{
    "query" : {
        "term" : { "user" : "kimchy" }
    }
}
'

我试过这样做:

q = '{
    "query" : {
        "term" : { "user" : "kimchy" }
    }
}
'

r = JSON.parse(RestClient.get('http://localhost:9200/twitter/tweet/_search', q))

这引发了一个错误:

in `process_url_params': undefined method `delete_if' for #<String:0x8b12e18>     (NoMethodError)
    from /home/socialapps/.rvm/gems/ruby-1.9.3-p194/gems/rest-client-1.6.7/lib/restclient/request.rb:40:in `initialize'
    from /home/socialapps/.rvm/gems/ruby-1.9.3-p194/gems/rest-client-1.6.7/lib/restclient/request.rb:33:in `new'
    from /home/socialapps/.rvm/gems/ruby-1.9.3-p194/gems/rest-client-1.6.7/lib/restclient/request.rb:33:in `execute'
    from /home/socialapps/.rvm/gems/ruby-1.9.3-p194/gems/rest-client-1.6.7/lib/restclient.rb:68:in `get'
    from get_check2.rb:12:in `<main>'

当我使用RestClient.post执行相同操作时,它会给我正确的结果!但是elasticsearch doc在curl命令中使用XGET来搜索查询,而不是XPOST。如何使RestClient.get方法起作用?

如果有其他/更好的方法来执行此操作,请建议。

2 个答案:

答案 0 :(得分:5)

RestClient无法使用GET发送请求正文。你有两个选择:

将您的查询作为source网址参数传递:

require 'rest_client'
require 'json'

# RestClient.log=STDOUT # Optionally turn on logging

q = '{
    "query" : { "term" : { "user" : "kimchy" } }
}
'
r = JSON.parse \
      RestClient.get( 'http://localhost:9200/twitter/tweet/_search',
                      params: { source: q } )

puts r

...或者只使用POST


更新:修正了URL参数的错误传递,请注意params哈希。

答案 1 :(得分:1)

如果有其他人发现这一点。虽然不推荐,但可以通过使用主API用于创建调用的内部Request方法向GET发送请求主体。

RestClient::Request.execute( method: :get, 
                             url: 'http://localhost:9200/twitter/tweet/_search',
                             payload: {source: q} )

有关详细信息,请参阅here