python 中的弹性搜索索引
Elastic Search Index in python
我想将我的数据从字典推送到 Elasticsearch。我如何为其创建索引?
我也尝试在 Linux 服务器上使用 Curl 命令
curl -XPUT 'http://localhost:9200/osint/' -d '
指数:
number_of_shards: 5
number_of_replicas: 2
'
但这也没有帮助
我写了这篇文章,但无法通过索引 osint
的 KibanaHud 获取数据:
es.index(index='osint', doc_type='tweet', body=dict, id = 1)
es.indices.refresh(index='osint')
你能帮忙吗
你试过了吗
curl -XGET http://localhost:9200/<index>/_mapping?pretty
我认为你在这方面有所欠缺
我想将我的数据从字典推送到 Elasticsearch。我如何为其创建索引?
我也尝试在 Linux 服务器上使用 Curl 命令 curl -XPUT 'http://localhost:9200/osint/' -d ' 指数: number_of_shards: 5 number_of_replicas: 2 ' 但这也没有帮助
我写了这篇文章,但无法通过索引 osint
的 KibanaHud 获取数据:
es.index(index='osint', doc_type='tweet', body=dict, id = 1)
es.indices.refresh(index='osint')
你能帮忙吗
你试过了吗
curl -XGET http://localhost:9200/<index>/_mapping?pretty
我认为你在这方面有所欠缺