为什么ElasticSearch在尝试索引时返回response< response[400]>呢?

y53ybaqx  于 2021-06-10  发布在  ElasticSearch
关注(0)|答案(1)|浏览(500)

我试着跟着教程-http://ethen8181.github.io/machine-learning/search/bm25_intro.html#elasticsearch-bm25型
我以守护进程的形式成功地启动了我的弹性节点,它在发出查询时确实做出了响应- curl -X GET "localhost:9200/ 当我尝试在这里运行以下代码时,它返回400。

settings = {
    'settings': {
        'index': {
            'number_of_shards': 1,
            'number_of_replicas': 1,

            'similarity': {
                'default': {
                    'type': 'BM25'
                }
            }
        }
    },

    'mappings': {
        '_doc': {
            'properties': {
                'title': {
                    'type': 'text',
                    'analyzer': 'english'
                }
            }
        }
    }
}
headers = {'Content-Type': 'application/json'}
response = requests.put('http://localhost:9200/experiment', data=json.dumps(settings), headers=headers)
response

我做错了什么?我该怎么解决这个问题?
我基本上是在尝试索引一组文档,并使用bm25排名函数检索它们。

j2qf4p5b

j2qf4p5b1#

打电话 response.json() 或者 response.text 会给你回复正文,它可能会告诉你请求到底出了什么问题

相关问题