6

我正在尝试使用 JEST 在具有特定分析器和映射的 ES 中创建索引。

我正在使用以下代码:

 CreateIndex createIndex =  new CreateIndex.Builder(indexName)
    .settings(
            ImmutableSettings.builder()
                    .loadFromClasspath(
                            "jestconfiguration.json"
                    ).build().getAsMap()
    ).build();
    
    JestResult result = client.execute(createIndex);

这是 jestconfiguration.java

{
  "settings": {
    "analysis": {
      "analyzer": {
        "second": {
          "type": "custom",
          "tokenizer": "standard",
          "filter": [
            "lowercase",
            "synonym"
          ]
        }
      },
      "filter": {
        "synonym" : {
            "type" : "synonym",
            "synonyms" : [
                "smart phone => smartphone"
                ]             
                    }
                }
        }
  },
    "mappings": {
    "index_type": {
      "properties": {
        "Name": {
          "type": "string",
          "analyzer": "second"
        }
      }
    }
  }
}

虽然使用指定的“设置”正确创建了索引,但“映射”部分不起作用,我无法为字段“名称”设置映射。有人有想法吗?

有没有一种putmapping() 可以让你添加映射的玩笑?理想情况下,我希望能够动态设置 field_name 而不是在 .json 文件中。

4

1 回答 1

1

我在尝试查看是否可以一次创建索引和映射时发现了您的问题。我最终只是创建了第二个创建映射的请求。

    String mappingJson = new String(ByteStreams.toByteArray(mappingFile.getInputStream()));
    boolean indexExists = client.execute(new IndicesExists.Builder(configuration.getIndex()).build()).isSucceeded();
    if (indexExists) {
        logger.info("Updating elasticsearch type mapping.");
        client.execute(new PutMapping.Builder(configuration.getIndex(), configuration.getBaseType(), mappingJson).build());
    } else {
        logger.info("Creating elasticsearch index and type mapping.");
        client.execute(new CreateIndex.Builder(configuration.getIndex()).build());
        client.execute(new PutMapping.Builder(configuration.getIndex(), configuration.getBaseType(), mappingJson).build());
    }
于 2016-09-12T09:01:48.593 回答