ES 6抛出notFound错误以创建索引

时间:2018-07-11 23:59:25

标签: elasticsearch elasticsearch-6

我正在将ES 6.2与python ES包一起使用,并尝试创建索引,但是不断出现奇怪的“未找到”错误

 es_connection.indices.exists(index="test_index")
>> False


try:
  result = es_connection.indices.create(index="test_index")
except Exception as e:
  print(e)

>>NotFoundError(404, 'Not Found', {'statusCode': 404, 'error': 'Not Found'})   

我不明白它引发了什么notFound错误?任何想法如何解决这个问题?

0 个答案:

没有答案