我想Elastic Search Cluster
从我的rails
应用程序中访问数据。假设服务器正在运行,http://localhost:9200
我想访问端点http://localhost:9200/location/type
。
以下本文档并遇到了此示例:
require 'elasticsearch'
client = Elasticsearch::Client.new log: true
client.cluster.health
client.index index: 'my-index', type: 'my-document', id: 1, body: { title: 'Test' }
client.indices.refresh index: 'my-index'
client.search index: 'my-index', body: { query: { match: { title: 'test' } } }
问题:
- 我将在哪里定义我
elasticsearch cluster
在代码中的详细信息?集群运行在http://localhost:9200/