17

我刚刚下载了弹性搜索发行版并运行了它。

curl 'localhost:9200'

{
   "status" : 200,
   "name" : "cbs",
   "cluster_name" : "elasticsearch",
   "version" : {
   "number" : "1.4.1",
   "build_hash" : "89d3241d670db65f994242c8e8383b169779e2d4",
   "build_timestamp" : "2014-11-26T15:49:29Z",
   "build_snapshot" : false,
   "lucene_version" : "4.10.2"
    },
  "tagline" : "You Know, for Search"
}

我正在尝试使用 spring-data 访问它。在带有 xml 命名空间的应用程序上下文中添加了以下行(根据 spring 数据文档):

<elasticsearch:repositories base-package="com.cbs" />
<elasticsearch:transport-client id="client" cluster-nodes="127.0.0.1:9300" cluster-name="elasticsearch" />
<bean name="elasticsearchTemplate" class="org.springframework.data.elasticsearch.core.ElasticsearchTemplate">
    <constructor-arg name="client" ref="client" />
</bean>

这是实体和存储库代码:

@org.springframework.data.elasticsearch.annotations.Document(indexName = "product", type = "product", shards = 1, replicas = 0, indexStoreType = "memory", refreshInterval = "-1")
public class Product {
    @Id
    private String id;    
    private String name;
}


@Repository
public class ProductSearchDaoImpl implements IProductSearchDao {
@Autowired
private ElasticsearchOperations elasticsearchOperations;

@Override
public void index(Product product) {
    elasticsearchOperations.createIndex(Product.class);
    elasticsearchOperations.putMapping(Product.class);
    IndexQuery indexQuery = new IndexQueryBuilder().withId(product.getId()).withObject(product).build();
    elasticsearchOperations.index(indexQuery);
    elasticsearchOperations.refresh(Product.class, true);
}
}

现在,当我运行测试用例来索引产品时,我会收到一条一致的警告消息(每 2 秒左右)

[Neuronne] node null not part of the cluster Cluster [elasticsearch], ignoring...
[Neuronne] node null not part of the cluster Cluster [elasticsearch], ignoring...

并且产品没有被索引(即使没有创建索引)

curl 'localhost:9200/_cat/indices?v'
health status index    pri rep docs.count docs.deleted store.size pri.store.size 

谁能帮我解决这个问题?

4

2 回答 2

39

对于那些遇到相同错误并从搜索引擎来到这里的人,请确保TransportClient使用与集群本身相同的集群名称。

  1. 验证集群名称。

访问http://localhost:9200查看集群名称。默认名称是elasticsearch. 如果您使用elasticsearch.yml文件自定义了集群名称,请确保选择了配置文件。

  1. culster.name创建时设置TransportClient

    Settings settings = ImmutableSettings.settingsBuilder()
            .put("cluster.name", clusterName)
            .put("client.transport.ignore_cluster_name", false)
            .put("node.client", true)
            .put("client.transport.sniff", true)
            .build();
    client = new TransportClient(settings).addTransportAddress(new  InetSocketTransportAddress(host, port)); 
    
  2. 忽略集群名称检查

client.transport.ignore_cluster_name您可以通过设置为忽略集群名称的检查true

  1. 如果错误仍然存​​在,请调试

如果错误仍然存​​在,请在调试模式下启动您的应用程序,然后调试TransportClientNodesService

于 2015-06-30T01:53:14.567 回答
4

为了试验,我在我的开发弹性搜索服务器上更改了名称,然后忘记了它。

客户端上的错误消息没有那么有用,TransportClientNodeService 与远程名称进行比较,但实际上并没有在日志中写入远程名称(“集群名称”)。

可以使用以下 Spring 配置绕过名称检查:

我的决议是:

  • 在 elasticsearch 服务器中更改 cluster.name 的名称。
  • 忽略客户端的集群名称。

我两个都去了,这是我的 Spring 配置,希望对您有所帮助:

spring:
    ...
    data:
    elasticsearch:
        # Defaults to cluster-name 'elasticsearch'
        cluster-name:
        cluster-nodes: 127.0.0.1:9300
        properties:
            # https://www.elastic.co/guide/en/elasticsearch/client/java-api/current/transport-client.html
            client.transport.ignore_cluster_name: true
于 2016-01-10T10:32:01.250 回答