我有以下示例输入数据“ doc”。
使用python elasticsearch编制索引:
doc = {
"node": [{
"table": [{
"node-table": {
"packets-up": 18440044073709951615,
"packets-down": 18447644073709991615
}
}]
}]
}
from elasticsearch import Elasticsearch
es = Elasticsearch(hosts="localhost:9200")
res = es.indices.create(index="doc")
es.index(index="doc", doc_type='docs', body=doc)
尝试通过动态映射为数据建立索引时,出现以下错误:
Traceback (most recent call last):
File "test.py", line 60, in <module>
es.index(index="doc_test", doc_type='docs', body=doc)
File "/Users/user/Projects/2018/es_test/.env/lib/python2.7/site-packages/elasticsearch/client/utils.py", line 76, in _wrapped
return func(*args, params=params, **kwargs)
File "/Users/user/Projects/2018/es_test/.env/lib/python2.7/site-packages/elasticsearch/client/__init__.py", line 319, in index
_make_path(index, doc_type, id), params=params, body=body)
File "/Users/user/Projects/2018/es_test/.env/lib/python2.7/site-packages/elasticsearch/transport.py", line 318, in perform_request
status, headers_response, data = connection.perform_request(method, url, params, body, headers=headers, ignore=ignore, timeout=timeout)
File "/Users/user/Projects/2018/es_test/.env/lib/python2.7/site-packages/elasticsearch/connection/http_urllib3.py", line 186, in perform_request
self._raise_error(response.status, raw_data)
File "/Users/user/Projects/2018/es_test/.env/lib/python2.7/site-packages/elasticsearch/connection/base.py", line 125, in _raise_error
raise HTTP_EXCEPTIONS.get(status_code, TransportError)(status_code, error_message, additional_info)
elasticsearch.exceptions.RequestError: RequestError(400, u'mapper_parsing_exception', u'failed to parse')
我认为这是由于“ long”数据类型无法容纳这些数值。
我们如何处理这些数值。
ElasticSearch跟踪:
curl -H 'Content-Type: application/json' -XPOST 'http://localhost:9200/doc/docs?pretty' -d '
{
"node": [
{
"table": [
{
"node-table": {
"packets-down": 18447644073709991615,
"packets-up": 18440044073709951615
}
}
]
}
]
}
'
响应:
{
"error" : {
"root_cause" : [
{
"type" : "mapper_parsing_exception",
"reason" : "failed to parse"
}
],
"type" : "mapper_parsing_exception",
"reason" : "failed to parse",
"caused_by" : {
"type" : "illegal_state_exception",
"reason" : "No matching token for number_type [BIG_INTEGER]"
}
},
"status" : 400
}
答案 0 :(得分:1)
您有两种选择可以避免此问题。
选项A。将这些值存储为float(或double)而不是long。
首先,您需要确保将packets-down
和packets-up
字段映射为float
(或double
),如下所示:
PUT doc_test
{
"mappings": {
"docs": {
"dynamic_templates": [
{
"bignums": {
"match": "packets*",
"mapping": {
"type": "float"
}
}
}
]
}
}
}
然后您需要将数字用双引号引起来并将其作为字符串发送:
doc = {
"node": [{
"table": [{
"node-table": {
"packets-up": "18440044073709951615",
"packets-down": "18447644073709991615"
}
}]
}]
}
这将起作用,您将能够将数据包字段与任何其他包含数值的字段相加。
选项B。启用numeric detection(默认情况下处于禁用状态)
PUT doc_test
{
"mappings": {
"docs": {
"numeric_detection": true
}
}
}
然后,您还需要将数字用双引号引起来并将其作为字符串发送:
doc = {
"node": [{
"table": [{
"node-table": {
"packets-up": "18440044073709951615",
"packets-down": "18447644073709991615"
}
}]
}]
}
结果,大数字将映射为float