ES command

Published 06-05-2014 09:34:11

#####Python Elasticsearch:

Mapping des champs : es.indices.get_mapping(index='twitter', doc_type='tweet')
Supprimer doc : es.delete(_id='5581')
Supprimer mapping et docs :
es.delete_mapping(index='twitter', doc_type='tweet)
Connexion à un serveur :
es = Elasticsearch('1.2.3.4:9200')
Mapping d’un doc :
es.get_mapping(index='twitter', doc_type='tweet)