摘要: 删除指定的索引。 同时删除索引关联的数据、分片、元数据等相关的资源,因此执行前需要慎重。 命令样例如下: curl -X DELETE "https://localhost:9200/testindex_003?pretty" --cacert $ES_HOME/config/certs/http_ 阅读全文
posted @ 2023-12-02 16:18 jackieathome 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 打开指定的索引。 命令样例如下: curl -X POST "https://localhost:9200/testindex_003/_open?pretty" --cacert $ES_HOME/config/certs/http_ca.crt -u "elastic:ohCxPH=QBE+s5 阅读全文
posted @ 2023-12-02 15:58 jackieathome 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 关闭指定的索引。 索引关闭之后: 停止对读、写操作的响应。 停止检索操作的响应。 在索引关闭前,允许执行的操作,关闭之后均不允许执行。 ElasticSearch取消对索引的相关维护操作,包含内存中的数据结构,以及保存在存储中的数据。 占用的存储空间,并不会主动释放。ElasticSearch不会删 阅读全文
posted @ 2023-12-02 15:53 jackieathome 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 使用已有的索引,复制得到一个索引。 关闭testindex_001的写入操作,命令样例如下: curl -X PUT "https://localhost:9200/testindex_001/_settings?pretty" -H 'Content-Type: application/json' 阅读全文
posted @ 2023-12-02 15:37 jackieathome 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 创建指定名称的index。 命令样例如下: curl -X PUT "https://localhost:9200/testindex_002?pretty" -H 'Content-Type: application/json' -d' { "settings": { "index": { "nu 阅读全文
posted @ 2023-12-02 15:24 jackieathome 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 本方法用于清理缓存。 命令样例如下: curl -X POST "https://localhost:9200/testindex_001/_cache/clear?pretty" --cacert $ES_HOME/config/certs/http_ca.crt -u "elastic:ohCx 阅读全文
posted @ 2023-12-02 10:48 jackieathome 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 本API用于分析、统计指定index当前占用的存储空间。 考虑到本特性目前仍然处于预览状态,因此使用方法、参数等可能会发生变化,或者未来也许会被删除。 本API暂时不建议在生产系统中使用。 命令样例如下: curl -X POST "https://localhost:9200/testindex_ 阅读全文
posted @ 2023-12-02 10:34 jackieathome 阅读(26) 评论(0) 推荐(0) 编辑
摘要: ElasticSearch的慢日志,相关的参数及配置方法。 在log4j2.properties中配置慢日志的输出文件名。 Search Slow Log 相关参数 index.search.slowlog.threshold.query.warn index.search.slowlog.thre 阅读全文
posted @ 2023-12-01 00:44 jackieathome 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 命令样例如下: curl -X GET "https://localhost:9200/_tasks?pretty" --cacert $ES_HOME/config/certs/http_ca.crt -u "elastic:ohCxPH=QBE+s5=*lo7F9" 执行结果的样例,如下: { 阅读全文
posted @ 2023-11-30 23:46 jackieathome 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 使用本方法,可以触发强制合并操作。 默认情况下,ElasticSearch会在后台周期性触发合并操作,因此不需要用户刻意使用本方法。 使用强制合并的弊端: 可能会产生大于5G的segment对象,而ElasticSearch后台自动触发的合并操作会跳过此类大型segment对象。 假如定期执行强制合 阅读全文
posted @ 2023-11-30 23:34 jackieathome 阅读(232) 评论(0) 推荐(0) 编辑