-
Docker 部署 Elasticsearch
搜索镜像 https://hub.docker.com/_/elasticsearch docker search elasticsearch 拉取镜像 doc
2022-02-07, Views: 1583 , Topics: Docker Elasticsearch DevOps
-
filebeat read: connection reset by peer
错误原因 Failed to connect: Get http://192.168.1.101:5044 read tcp 192.168.1.100:498
2020-05-24, Views: 4794 , Topics: Filebeat Logstash Elasticsearch
-
Elasticsearch health status 显示为 yellow 解决方法
查看 health curl -XGET "http://localhost:9200/_cluster/health?pretty=true" 返回: {
2019-04-26, Views: 11511 , Topics: Elasticsearch
-
Elasticsearch 短语搜索 query->match_phrase
短语搜索 精确匹配一系列单词或者短语。 使用match_phrase curl -X GET "localhost:9200/megacorp/employ
2019-04-25, Views: 3401 , Topics: Elasticsearch 全文检索
-
Elasticsearch 全文搜索 query->match
全文搜索 query->match curl -X GET "localhost:9200/megacorp/employee/_search?prett
2019-04-25, Views: 2083 , Topics: Elasticsearch 全文检索
-
Elasticsearch 使用 filter 和 range 过滤器搜索
使用过滤器搜索 query->bool->must->match filter->range curl -X GET "localhos
2019-04-25, Views: 3702 , Topics: Elasticsearch 全文检索
-
Elasticsearch 使用查询表达式搜索
查询表达式搜索 query->match curl -X GET "localhost:9200/megacorp/employee/_search?pr
2019-04-25, Views: 3085 , Topics: Elasticsearch 全文检索
-
Elasticsearch 出现 circuit_breaking_exception 异常
异常信息 { "error" : { "root_cause" : [ { "type" : "circuit_brea
2019-04-25, Views: 16743 , Topics: Elasticsearch
-
Elasticsearch 轻量搜索 _search 和 q=
轻量搜索 使用_search curl -X GET "localhost:9200/megacorp/employee/_search?pretty=true
2019-04-25, Views: 4273 , Topics: Elasticsearch 全文检索
-
Elasticsearch 检索文档 GET
检索文档 使用GET指令 curl -X GET "localhost:9200/megacorp/employee/1?pretty=true" 输出: {
2019-04-25, Views: 2202 , Topics: Elasticsearch
-
Elasticsearch GET/PUT/DELETE/HEAD 指令
新增或更新 PUT 获取 GET 删除 DELETE 检查是否存在 HEAD
2019-04-25, Views: 2884 , Topics: Elasticsearch
-
Elasticsearch 插入数据 PUT
插入数据 使用PUT方法 curl -X PUT "localhost:9200/megacorp/employee/1" -H 'Content-Type:
2019-04-25, Views: 3573 , Topics: Elasticsearch
-
Elasticsearch 获取记录总数 _count
计算文档数量 _count curl -XGET "localhost:9200/_count?pretty" 输出: { "count" : 0, "
2019-04-25, Views: 11805 , Topics: Elasticsearch
-
Elasticsearch 使用 RESTful API 进行通信
说明 一个Elasticsearch请求和任何HTTP请求一样由若干相同的部件组成: curl -X<VERB> '<PROTOCOL>
2019-04-25, Views: 2363 , Topics: Elasticsearch curl
-
Elasticsearch 监控运行状态
监控运行状态 curl -X GET "localhost:9200/_cluster/health" 输出: {"cluster_name":"elastic
2019-04-25, Views: 2950 , Topics: Elasticsearch
-
Elasticsearch 9200 端口和 9300 端口区别
9200 端口 9200是HTTP协议的RESTful接口。 9300 端口 9300是TCP通讯端口,集群间和TCPClient都走的它。
2019-04-25, Views: 5268 , Topics: Elasticsearch
-
Elasticsearch 安装中文分词器 ik 插件
中文分词器开源地址 https://github.com/medcl/elasticsearch-analysis-ik Elasticsearch安装ik分词
2019-04-25, Views: 2881 , Topics: Elasticsearch
-
Elasticsearch can not run elasticsearch as root
ES启动报错 [2019-04-24T17:27:27,226][ERROR][o.e.b.Bootstrap ] [root] Except
2019-04-24, Views: 6630 , Topics: Elasticsearch
-
Elasticsearch 后台启动
添加 -d 参数 ./elasticsearch -d
2019-04-24, Views: 2521 , Topics: Elasticsearch