Elasticsearch
这个程序媛有点冷
专注于冷门知识,为少数人提供捷径
展开
-
elasticsearch判断索引是否存在的命令?
今天有恰巧遇到一个需求,我该如何判断一个索引是否存在呢?elasticsearch是否存在这样的命令?我最先想到的方法是使用search进行查询:GET /.monitoring-es-6-2020.11.16/_search能查到就说明这个索引存在,无法查到就说明这个索引不存在。但是这么做还是存在弊端,如果.monitoring-es-6-2020.11.16中数据量比较大的话,会验证拖慢查询速度。因此我又进行改进了一下:GET /.monitoring-es-6-2020.1原创 2021-02-22 16:30:54 · 4070 阅读 · 3 评论 -
elasticsearch请求中header最大长度(X-Opaque-Id)
http的header最大长度不超过8192个比特(byte)。原创 2021-01-27 11:00:55 · 766 阅读 · 0 评论 -
elasticsearch-dump如何访问需要账号密码的Elasticsearch(“type“:“security_exception“,“reason“:“missing authentica)
docker run --rm -ti elasticsearch-dump --input=http://192.168.1.2:9200/my_index --output=http://user:password@192.168.1.2:9200/my_index --type=data在对应的http后面,添加user:password@原创 2020-07-21 15:35:46 · 7598 阅读 · 7 评论 -
kibana解决Kibana server is not ready yet问题
我使用的是Docker进行安装的Elasticsearch7.8.0和Kibana7.8.0安装之后,访问Elasticsearch的9200端口,能正常访问,但是访问Kibana的5601端口,则出现的了Kibana server is not ready yet在这里,我罗列几种解决方法第一种将配置文件kibana.yml中的elasticsearch.url改为正确的链接,默认为: http://elasticsearch:9200,改为http://自己的IP地址:9200原创 2020-07-11 18:56:30 · 52632 阅读 · 17 评论