「python入門」ElasticSearchを操作するサンプル

1.追加
body = {“name": '山田太郎’, 'sex’: 'female’, 'age’: 25}
es = Elasticsearch(['localhost:9200′])
es.index(index=’indexName’, doc_type=’typeName’, body, id=None)

2.削除
es.delete(index=’indexName’, doc_type=’typeName’, id=’idValue’)

3.検索
es.get(index=’indexName’, doc_type=’typeName’, id=’idValue’)

4.更新
es.update(index=’indexName’, doc_type=’typeName’, id=’idValue’, body={新カラム})

Python

Posted by arkgame