예제 #1
0
파일: admin.py 프로젝트: pudo/aleph
def clear_index():
    es.delete_by_query(index=all_indexes(),
                       body={'query': {'match_all': {}}},
                       refresh=True,
                       wait_for_completion=True,
                       conflicts='proceed',
                       ignore=[404])
예제 #2
0
def clear_index():
    es.delete_by_query(index=all_indexes(),
                       body={'query': {
                           'match_all': {}
                       }},
                       refresh=True,
                       wait_for_completion=True,
                       conflicts='proceed',
                       ignore=[404])
예제 #3
0
파일: admin.py 프로젝트: pudo/aleph
def delete_index():
    es.indices.delete(index=all_indexes(), ignore=[404, 400])
예제 #4
0
def delete_index():
    es.indices.delete(index=all_indexes(), ignore=[404, 400])
예제 #5
0
파일: admin.py 프로젝트: jbaehne/aleph
def refresh_index():
    es.indices.refresh(index=all_indexes(), ignore=[404, 400])