Поместите отображение в ElasticSearch с помощью JAVA API
Я хочу поставить отображение поля с помощью JAVA API, но не удалось. Ниже приводится подробная информация:
Моя структура данных:
{
"mje-test-execution-id": "464b66ea6c914ddda217659c84a3cb9d",
"jvm-free-memory": 315245608,
"jvm-total-memory": 361758720,
"system-free-memory": 0,
"jvm-max-memory": 7600078848,
"system-total-memory": 34199306240,
"memory-time-stamp": "2020-03-12T05:12:16.835Z",
"mje-host-name": "CN-00015345",
"mje-test-suite-name": "SCF Test no mje version",
"mje-version": "1.8.7771-SNAPSHOT",
"mje-test-artifact-id": "msran-regression-tests",
"mje-test-version": "1.8.7771-SNAPSHOT",
"stp-id": "vran-stp",
"mje-test-location": {
"lat": 58.41,
"lon": 15.62
}
}
Я хочу сделать следующее: поставить тип "mje-test-location" на "geo_point"
Мой фрагмент кода:
public void postMapping(String indexName, String field, String type) throws IOException {
GetIndexRequest request = new GetIndexRequest(indexName);
boolean exists = client.indices().exists(request, RequestOptions.DEFAULT);
if (!exists) {
LOGGER.info("index {} does not exist. Now to post mapping.", indexName);
PutMappingRequest putMappingRequest = new PutMappingRequest(indexName);
XContentBuilder builder = XContentFactory.jsonBuilder();
builder.startObject();
{
builder.startObject("properties");
{
builder.startObject(field);
{
builder.field("type", type);
}
builder.endObject();
}
builder.endObject();
}
builder.endObject();
putMappingRequest.source(builder);
//
AcknowledgedResponse putMappingResponse = client.indices().putMapping(putMappingRequest,
RequestOptions.DEFAULT);
boolean acknowledged = putMappingResponse.isAcknowledged();
if (acknowledged) {
LOGGER.info("Succeed to put mapping: field:{}, type: {}", field, type);
}
}
LOGGER.info("Fail to put mapping due to index {} already exist, ", indexName);
}
Информация об ошибке:
15:59:54.397 [main] DEBUG org.elasticsearch.client.RestClient - request [PUT http://seliiuapp00269.lmera.ericsson.se:9208/mje-scf-v2-20200313-post/_mapping?master_timeout=30s&timeout=30s] returned [HTTP/1.1 400 Bad Request]
org.elasticsearch.ElasticsearchStatusException: Elasticsearch exception [type=action_request_validation_exception, reason=Validation Failed: 1: mapping type is missing;]
Версия API JAVA ElasticSearch: <elasticsearch.rest.high.level.client>7.0.0</elasticsearch.rest.high.level.client>
2 ответа
Вам нужно указать тип документа следующим образом:
putMappingRequest.type("_doc");
А также необходимо указать здесь типы полей:
builder.field("type", type);
Подобно: ("type", "text")
или ("type", "long")
, ("type", "date")
......
Вы можете увидеть типы данных здесь
Я отправлю комментарий @Mincong в качестве ответа, потому что я импортировал неправильный импорт, который я нашел при поиске на github:
Каково полное имя вашего класса PutMappingRequest: org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest или org.elasticsearch.client.indices.PutMappingRequest? Вам следует использовать второй.