索引管理基本用法
更新时间:2024-11-20 11:03:10
PDF
本小节主要介绍如何使用 OpenSearch 进行索引管理和数据查询。
前提条件
快速管理索引
-
创建索引
curl -XPUT --insecure -u 'admin:Change1Pwd' 'https://<os_hot_node_ip>:9200/my-first-index'
-
添加数据并验证,以及删除数据
curl -XPUT --insecure -u 'admin:Change1Pwd' 'https://<os_hot_node_ip>:9200/my-first-index/_doc/1' -H 'Content-Type: application/json' -d '{"Description": "To be or not to be, that is the question."}' curl -XGET --insecure -u 'admin:Change1Pwd' 'https://<os_hot_node_ip>:9200/my-first-index/_doc/1' curl -XDELETE --insecure -u 'admin:Change1Pwd' 'https://<os_hot_node_ip>:9200/my-first-index/_doc/1'
-
删除索引
curl -XDELETE --insecure -u 'admin:Change1Pwd' 'https://<os_hot_node_ip>:9200/my-first-index/'
通过 Dashboards 管理
更多 Dashboard 使用和功能介绍,请参见 OpenSearch Dashboards。