Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 oneshot 策略设置了一个 jdbc 河,并成功导入了我的数据库数据。
但是当我重新启动服务器时,它又开始重新索引所有数据。
我怎样才能停止这个过程?
河流完成后,您可以使用以下命令将其从 _river 索引中删除:
curl -XDELETE localhost:9200/_river/you_river_name
您可以关闭河流,然后在稍后重新打开:
POST _river/_close
打开:
POST _river/_open
注意:我已经从集群 ip 所在的位置执行了这些操作:localhost:9200
更新
DELETE _river 就可以了。