弹性搜索:[Oddball]观察者:来自群集服务的超时通知。超时设置[1m],自开始以来的时间[1m]

时间:2015-11-06 06:57:46

标签: elasticsearch kibana elastic-stack

Kibana无法从elasticsearch加载数据。我可以在elasticsearch中看到以下日志。我使用的是elasticsearch版本1.4.2。这是与负载有关的吗?有人可以帮帮我吗?

[2015-11-05 22:39:58,505] [DEBUG] [action.bulk] [Oddball]观察员:群集服务的超时通知。超时设置[1m],自开始以来的时间[1m]

2 个答案:

答案 0 :(得分:0)

默认弹性搜索在http://localhost:9200运行 确保你在kibana.ymal中有正确的网址

<pre>
    # Kibana is served by a back end server. This controls which port to use.
    port: 5601

    # The host to bind the server to.
    #host: example.com

    # The Elastic search instance to use for all your queries.
    elasticsearch_url: "http://localhost:9200"
</pre>

Aslo在弹性搜索配置中的elasticsearch.yaml提供了集群名称和http.cors.allow-origin。

<pre>
    # Cluster name identifies your cluster for auto-discovery. If you're running
    # multiple clusters on the same network, make sure you're using unique names.
    #
    cluster.name: elasticsearch

    http.cors.allow-origin: "/.*/"
</pre>

答案 1 :(得分:0)

我可以通过为Elasticsearch设置一个新节点并通过将副本设置为0来清除未分配的分片来解决这个问题。