根据docs,这应该足够了:
"settings": {
"index.mapping.ignore_malformed": true
}
但是如何在python包装器上实现呢?我目前的代码如下:
from elasticsearch_dsl import Index
index = Index('my_index', my_conn)
index.settings(
number_of_shards=ES_NUMBER_OF_SHARDS,
number_of_replicas=ES_NUMBER_OF_REPLICAS
)
index.create()
答案 0 :(得分:2)
出人意料地,
index.settings(
index={'mapping':{'ignore_malformed':True}}
)
工作完美。我会把Q留在这里,因为它可能有用。