使用kibana来创建ElasticSearch的索引库与文档的命令

发布时间:2024年01月14日

🐒个人主页

🏅JavaEE系列专栏

📖前言:

本篇博客主要以介绍使用kibana来创建ElasticSearch的索引库与文档的命令语句

🎀使用kibana来为ElasticSearch创建索引库

# 🎀🎀🎀🎀🎀--DDL操作--🎀🎀🎀🎀🎀
# 创建索引表
PUT /news
{
  "mappings": {
    "properties": {
      "id":{
        "type": "integer",
        "index": false
      },
      "content":{
        "type": "text",
        "analyzer": "ik_max_word"
      },
      "count":{
        "type": "long",
        "index": false
      }
    }
  }
}
# 查询(索引)表结构
get /news

# 修改(索引)表结构
PUT /news/_mapping
{
  "properties":{
    "img":{
      "type":"keyword",
      "index":false
    }
  }
}

# 删除表结构
DELETE  /news


操作效果
创建索引表在这里插入图片描述
查询(索引)表结构在这里插入图片描述
修改(索引)表结构在这里插入图片描述
删除表结构在这里插入图片描述

🎀使用kibana来为ElasticSearch创建修改文档

# 🎀🎀🎀🎀🎀--DML操作--🎀🎀🎀🎀🎀
# 插入一条文档(记录)
POST /news/_doc/1
{
    "id":1,
    "count":250,
    "img":"aaaa.png",
    "content":"原神是米哈游开发的一款开放游戏"
}
# 修改
POST /news/_update/1
{
  "doc": {
    "img":"bbbb.jpg"
  }
}
# 查询
GET /news/_doc/1

# 检索
GET /news/_search
{
  "query": {
    "match": {
      "content": "米哈游"
    }
  }
}

# 删除操作
DELETE /news/_doc/1



操作效果
插入文档在这里插入图片描述
修改文档在这里插入图片描述
查询文档在这里插入图片描述
检索文档在这里插入图片描述
删除文档在这里插入图片描述

|

文章来源:https://blog.csdn.net/qq_66443592/article/details/135575966
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。