IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> ElasticSearch7.6.2(使用总结持续更新) -> 正文阅读

[大数据]ElasticSearch7.6.2(使用总结持续更新)

7.x版本对比5.x版本,移除的type字段,默认使用_doc type类型

常用api

#创建索引和mapping
PUT datacenter_laws
{
  "settings": {
    "number_of_shards": 3,
    "index.refresh_interval": "5s"
  },
  "mappings": {
    "properties": {
      "id": {
        "type": "keyword",
        "ignore_above": 256
      },
      "pick_url": {
        "type": "keyword",
        "ignore_above": 256
      },
      "content_html": {
        "type": "text"
      },
      "content_text": {
        "type": "text",
        "analyzer": "ik_max_word",
        "search_analyzer": "ik_smart",
        "fields": {
          "suggest": {
            "type": "completion"
          }
        }
      },
      "effective_date": {
        "type": "date",
        "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
      },
      "effectiveness": {
        "type": "keyword",
        "ignore_above": 256
      },
      "issue_authority": {
        "type": "keyword",
        "ignore_above": 256
      },
      "pick_date": {
        "type": "date",
        "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
      },
      "issue_date": {
        "type": "date",
        "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
      },
      "issue_no": {
        "type": "keyword",
        "ignore_above": 256
      },
      "site_name": {
        "type": "keyword",
        "ignore_above": 256
      },
      "title": {
        "type": "text",
        "fields": {
          "keyword": {
            "type": "keyword",
            "ignore_above": 256
          },
          "suggest": {
            "type": "completion"
          }
        },
        "analyzer": "ik_max_word",
        "search_analyzer": "ik_smart"
      },
      "type1": {
        "type": "keyword",
        "ignore_above": 256
      },
      "type2": {
        "type": "keyword",
        "ignore_above": 256
      }
    }
  }
}
#scroll深度分页查询,不支持跳页,跳页用最简单的from,size
GET datacenter_laws/_search
{
  "size": 1,
  "query": {
    "multi_match": {
      "query": "学习",
      "fields": ["title","content_text"]
    }
  },
  "sort": [
    {
      "issue_date": {
        "order": "asc"
      },
      "id": {
        "order": "desc"
      }
    }
  ]
}
#获取到search_after需要的值,然后分页查询
GET datacenter_laws/_search
{
  "size": 1,
  "query": {
    "multi_match": {
      "query": "学习",
      "fields": ["title","content_text"]
    }
  },
  "sort": [
    {
      "issue_date": {
        "order": "asc"
      },
      "id": {
        "order": "desc"
      }
    }
  ],
  "search_after": [
    1625992020000,
    "37f9a47944c10ea6ede98c9e7d92cb43"
  ]
}

#删除索引
DELETE datacenter_laws
#删除指定id索引
DELETE datacenter_laws/_doc/uRW4U3sBTAVER0k-Kpav
#多id删除
POST oa_material_document/_delete_by_query
{
  "query": {
    "terms": {
      "FIELD": [
        "VALUE1",
        "VALUE2"
      ]
    }
  }
}
#查询
GET datacenter_laws/_search
#查询mapping
GET datacenter_laws/_mapping
#搜索建议自动完成
POST datacenter_laws/_search
{
  "suggest": {
    "my-suggest": {
      "text": "学",
      "completion": {
        "field": "title.suggest"
      }
    }
  }
}

#多值匹配
GET datacenter_laws/_search
{
  "query": {
    "terms": {
      "FIELD": [
        "VALUE1",
        "VALUE2"
      ]
    }
  }
}
#多字段匹配
GET datacenter_laws/_search
{
  "query": {
    "multi_match": {
      "query": "扶贫",
      "fields": ["title","content_text"]
    }
  },
"from": 0,
"size": 20
}

ElasticSearch7.6无感知修改Mapping属性

  • 创建新的索引mapping

PUT datacenter_laws_v2
{
  "settings": {
    "number_of_shards": 3,
    "index.refresh_interval": "5s"
  },
  "mappings": {
    "properties": {
      "id": {
        "type": "keyword",
        "ignore_above": 256
      },
      "pick_url": {
        "type": "keyword",
        "ignore_above": 256
      },
      "content_html": {
        "type": "text"
      },
      "content_text": {
        "type": "text",
        "analyzer": "ik_max_word",
        "search_analyzer": "ik_smart",
        "fields": {
          "suggest": {
            "type": "completion"
          }
        }
      },
      "effective_date": {
        "type": "date",
        "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
      },
      "effectiveness": {
        "type": "keyword",
        "ignore_above": 256
      },
      "issue_authority": {
        "type": "text"
      },
      "pick_date": {
        "type": "date",
        "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
      },
      "issue_date": {
        "type": "date",
        "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
      },
      "issue_no": {
        "type": "keyword",
        "ignore_above": 256
      },
      "site_name": {
        "type": "keyword",
        "ignore_above": 256
      },
      "title": {
        "type": "text",
        "fields": {
          "keyword": {
            "type": "keyword",
            "ignore_above": 256
          },
          "suggest": {
            "type": "completion"
          }
        },
        "analyzer": "ik_max_word",
        "search_analyzer": "ik_smart"
      },
      "type_first": {
        "type": "keyword",
        "ignore_above": 256
      },
      "type_second": {
        "type": "keyword",
        "ignore_above": 256
      }
    }
  }
}
  • reindex复制索引数据

POST _reindex
{
  "source": {
    "index": "datacenter_laws_v1"
  },
  "dest": {
    "index": "datacenter_laws_v2"
  }
}

如果数据量量较大,报错是正常的,但是后台会需求复制数据

  • 修改关联别名

POST /_aliases
{
    "actions": [
        { "remove": { "index": "datacenter_laws_v1", "alias": "datacenter_laws" }},
        { "add":    { "index": "datacenter_laws_v2", "alias": "datacenter_laws" }}
    ]
}
  • 删除旧索引(可选)

  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2021-08-20 15:11:21  更:2021-08-20 15:13:24 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 12:55:15-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码