elasticsearch常见操作

索引index

查看集群状态:

复制代码
GET _cat/health

查看所有index:

说明:v是用来要求在结果中返回表头

复制代码
GET _cat/indices?v
GET _aliases

查看dev开头的index:

复制代码
GET _cat/indices/dev*

删除指定index:

复制代码
DELETE test_omp

复制或索引重命名:

复制代码
### 直接复制索引到新的索引名称
POST localhost:9200/_reindex
{
  "source": {
    "index": "indexName"
  },
  "dest": {
    "index": "newIndexName"
  }
}

### 查询复制索引到新的索引名称
POST localhost:9200/_reindex
{
  "source": {
    "index": "indexName",
    "type": "typeName",
    "query": {
      "term": {
        "name": "shao"
      }
    }
  },
  "dest": {
    "index": "newIndexName"
  }
}

文档document

https://blog.csdn.net/qq_19006223/article/details/110124775

https://javaedge.blog.csdn.net/article/details/110599524

查看指定索引指定id的文档:

复制代码
GET /test_gateway/_doc/L_-4DH0BA5KB_D7Szmt8

查看指定索引的所有文档(并根据指定字段排序,默认返回10条):

复制代码
GET /test_gateway/_search?q=*&sort=request_log.appType.keyword:asc&pretty
或json格式:
GET /test_gateway/_search
{
  "query": { "match_all": {} },
  "sort": [
    {"request_log.appType.keyword": "asc" }
  ]
}

模糊搜索:

复制代码
GET prod_artwork-omp/_search?from=0&size=2
{
  "query": {
    "wildcard": {
      "omp_request_log.uri": "upload"
    }
  }
}

新增文档使用PUT、POST请求。

复制代码
PUT /<target>/_doc/<_id>
POST /<target>/_doc/
PUT /<target>/_create/<_id>
POST /<target>/_create/<_id>

target为索引名称,_doc为默认type。通过前两种请求可看出,id可以自行指定,也可以由ES自动生成。_create可以保证只有当文档不存在的时候进行插入,而_doc还可以用于文档更新。

插入文档(也可指定_id:POST test_omp/_doc/{_id}):

复制代码
POST test_omp/_doc
{
  "omp_request_log": {
    "myid": "id001"
  }
}

删除文档(也支持json格式):

复制代码
DELETE test_omp/_doc/AQQmDn0BA5KB_D7SC_7f

POST /test_omp/_delete_by_query
{
  "query": {
    "match": {
      "_id": "AQQmDn0BA5KB_D7SC_7f"
    }
  }
}

修改文档:

复制代码
# 指定字段更新
POST test_omp/_update/9gUwDn0BA5KB_D7SWQLN
{
  "doc": {
      "omp_request_log": {
        "id": "myid002"
    }
  }
}

# 全字段更新
POST test_omp/_doc/9gUwDn0BA5KB_D7SWQLN
{
  "omp_request_log": {
    "id": "myid003"
  }
}

此外还可以通过脚本修改,例如将所有存在age字段的文档,其值改成5岁。

复制代码
POST /user/_update_by_query
{
  "script": {
    "source": "ctx._source['age']=5" 
  },
  "query": {
    "bool": {
      "must": [
        {
          "exists": {
            "field": "age"
          }
        }
      ]
    }
  }
}

此外update和_update_by_query字段还可以修改Filed,例如将name修改成name1,这块内容使用较少,如感兴趣,请参考官方文档。

映射和类型mapping

https://blog.csdn.net/Andre_dong/article/details/109672646

include_type_name:

在Elasticsearch 6.0.0或更高版本中创建的索引只能包含一个映射类型.在5.x中创建的具有多种映射类型的索引将继续像在Elasticsearch 6.x中一样工作.映射类型将在Elasticsearch 7.0.0中完全删除。

查看指定index的映射:

复制代码
GET test_omp/_mapping

添加指定index的映射(会顺带添加index):

复制代码
PUT test_omp?include_type_name=false
{
    "mappings": {
        "properties": {
            "service": {
                "type": "text",
                "fields": {
                    "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                    }
                }
            },
            "class": {
                "type": "text",
                "fields": {
                    "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                    }
                }
            },
            "omp_request_log": {
                "properties": {
                    "id": {
                        "type": "text"
                    },
                    "requestId": {
                        "type": "text"
                    },
                    "requestMethod": {
                        "type": "keyword"
                    },
                    "uri": {
                        "type": "text"
                    },
                    "requestHeader": {
                        "type": "text"
                    },
                    "requestParams": {
                        "type": "text"
                    },
                    "requestBody": {
                        "type": "text"
                    },
                    "responseCode": {
                        "type": "text"
                    },
                    "responseMsg": {
                        "type": "text"
                    },
                    "responseBody": {
                        "type": "text"
                    },
                    "bizResponseBody": {
                        "type": "text"
                    },
                    "exception": {
                        "type": "text"
                    },
                    "ipAddress": {
                        "type": "text"
                    },
                    "execTime": {
                        "type": "long"
                    },
                    "sysId": {
                        "type": "text"
                    },
                    "createTime": {
                        "type": "date"
                    },
                    "updateTime": {
                        "type": "date"
                    }
                }
            }
        }
    }
}

类型type:

https://www.cnblogs.com/koenigsea/p/13072923.html

相关推荐
你觉得20513 小时前
哈尔滨工业大学DeepSeek公开课:探索大模型原理、技术与应用从GPT到DeepSeek|附视频与讲义下载方法
大数据·人工智能·python·gpt·学习·机器学习·aigc
啊喜拔牙13 小时前
1. hadoop 集群的常用命令
java·大数据·开发语言·python·scala
Elasticsearch13 小时前
Elasticsearch:使用机器学习生成筛选器和分类标签
elasticsearch
别惊鹊13 小时前
MapReduce工作原理
大数据·mapreduce
8K超高清13 小时前
中国8K摄像机:科技赋能文化传承新图景
大数据·人工智能·科技·物联网·智能硬件
2401_8712905815 小时前
MapReduce 的工作原理
大数据·mapreduce
SelectDB技术团队15 小时前
Apache Doris 2025 Roadmap:构建 GenAI 时代实时高效统一的数据底座
大数据·数据库·数据仓库·人工智能·ai·数据分析·湖仓一体
你觉得20516 小时前
浙江大学朱霖潮研究员:《人工智能重塑科学与工程研究》以蛋白质结构预测为例|附PPT下载方法
大数据·人工智能·机器学习·ai·云计算·aigc·powerpoint
益莱储中国16 小时前
世界通信大会、嵌入式展及慕尼黑上海光博会亮点回顾
大数据
Loving_enjoy17 小时前
基于Hadoop的明星社交媒体影响力数据挖掘平台:设计与实现
大数据·hadoop·数据挖掘