本文介绍删除Elasticsearch Index数据的方法:使用curl。在Elasticsearch中,索引类似于关系数据库世界中的数据库,它是这样的: MySQL => Databases => Tables => Columns/Rows Elasticsearch => Indices => Types => Documents with Properties 索引是一个逻辑命名空间,它映射到一个或多个主分片,并且可以具有零个或多个副本分片,Elasticsearch映射就像数据库模式,描述了类相应文档应具有的字段或属性。 使用大量数据时,你的Elasticsearch索引可能会快速增长以耗尽本地存储,这可能需要删除不再需要的旧索引,本文将指导你完成删除Elasticsearch Index数据的过程。
删除Elasticsearch索引数据 首先使用curl获取集群中可用的Elasticsearch索引列表: $ curl http://<node-ip|hostname>:9200/_cat/indices <node-ip>可以是localhost,Elasticsearch节点IP地址或其中一个群集节点的主机名,见下面的例子: $ curl http://10.1.1.18:9200/_cat/indices
确定要删除的索引后,使用以下命令将其与其数据一起删除: $ curl -XDELETE http://<node-ip|hostname>:9200/<index-name> 见下面的例子: $ curl -XDELETE http://10.1.1.18:9200/graylog_308 {"acknowledged":true} 可以使用简单的bash循环删除多个索引: for i in graylog_307 graylog_308 graylog_309 graylog_311; do curl -XDELETE http://10.1.1.18:9200/${i} done 可以通过重新检查可用列表来确认删除索引: $ curl http://10.1.1.18:9200/_cat/indices 至此,目的达到。
相关主题 |