我想将数据从字典推送到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')
你能帮忙吗
答案 0 :(得分:1)
你试过吗
curl -XGET http://localhost:9200/<index>/_mapping?pretty
我认为你错过了这个