4

根据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()
4

1 回答 1

4

出奇,

    index.settings(
        index={'mapping':{'ignore_malformed':True}}
    )

工作完美。我将把 Q 留在这里,因为它可能有用。

于 2017-04-19T15:14:19.147 回答