记录一次关于es “type“:“illegal_argument_exception“,“reason“:“Limit of total fields [1000] in index 字段限制问题

Suppressed: org.elasticsearch.client.ResponseException: method [POST], host [http://ip:9200], URI [/xxxx/_update/123?timeout=1m], status line [HTTP/1.1 400 Bad Request]

{“error”:{“root_cause”:[{“type”:“remote_transport_exception”,“reason”:"[node1][ip:9300][indices:data/write/update[s]]"}],“type”:“illegal_argument_exception”,“reason”:“Limit of total fields [1000] in index [xxx has been exceeded”},“status”:400}

解决方式:
记录一次关于es “type“:“illegal_argument_exception“,“reason“:“Limit of total fields [1000] in index 字段限制问题_第1张图片
http://ip:port/索引/_settings/
使用put请求 加大mapping.total_fields.limit
{
“index”: {
“mapping.total_fields.limit”: 10000
}
}

你可能感兴趣的:(java,bug,es)