0

I have hundreds of small DBs in CouchDB which are not updated but I need to query them often. How do I disable future indexing so that Elasticsearch does not keep checking for changes and save my system resources? Presently I've setup the river with default bulk size and timeout of 100 and 10ms respectively for each DB.

4

1 回答 1

0

使用如下命令删除河流以从 Elasticsearch 中按 _type 删除河流将确保以后不再更新:

curl -XDELETE 'localhost:9200/_river/'_type'/'

希望有帮助。

于 2013-10-03T03:47:29.507 回答