tongchenkeji 发表于:2022-12-14 15:12:110次点击 已关注取消关注 关注 私信 ElasticSearch的缓存清除策略都有哪些[阿里云检索分析服务 Elasticsearch版] 暂停朗读为您朗读 ElasticSearch的缓存清除策略都有哪些 「点点赞赏,手留余香」 赞赏 还没有人赞赏,快来当第一个赞赏的人吧! 海报 检索分析服务 Elasticsearch版# 检索分析服务 Elasticsearch版775# 缓存159
阿里云服务支持AM 2023-11-27 19:20:25 1 可以登录Kibana控制台,执行如下命令清理缓存: ● 清除特定索引的缓存:POST /<索引名>/_cache/clear?fielddata=true ● 清除所有缓存:POST /_cache/clear
IT技术分享社区AM 2023-11-27 19:20:25 2 主要有下面三种清缓存方式 1.清空全部缓存 curl localhost:9200/_cache/clear?pretty{"_shards" : {"total" : 72,"successful" : 72,"failed" : 0}} 2.清除单一索引缓存 curl localhost:9200/index/_cache/clear?pretty{"_shards" : {"total" : 2,"successful" : 2,"failed" : 0}} 3.清除多索引缓存 curl localhost:9200/index1,index2,index3/_cache/clear?pretty{"_shards" : {"total" : 12,"successful" : 12,"failed" : 0}}
可以登录Kibana控制台,执行如下命令清理缓存:
● 清除特定索引的缓存:POST /<索引名>/_cache/clear?fielddata=true
● 清除所有缓存:POST /_cache/clear
主要有下面三种清缓存方式 1.清空全部缓存
2.清除单一索引缓存
3.清除多索引缓存