elastic基础查询语法及安装教程

文章目录

      • elastic基础介绍
        • elastic 常用查询语法
          • 查询数据库所有的索引及某个索引对应的mapping
          • 创建索引
          • 创建mapping
        • elastic 下载、安装方式及集群

elastic基础介绍

文章所用到的版本是6.5 elastic
参考官方文档:6.5 api 文档

elastic 常用查询语法

查询数据库所有的索引及某个索引对应的mapping
curl http://localhost:9200/_cat/indices -XGET
创建索引
  • 使用默认属性创建索引名为 user
curl -XPUT http://localhost:9200/user
  • 指定属性创建索引
curl -XPUT http://localhost:9200/user -d '{"settings":{"number_of_shards":3,"number_of_replicas":2}}'
  • 创建索引时同时创建mapping
 curl -XPUT http://localhost:9200/user -d '{"mappings":{"user_relationship":{"properties":{"username":{"type":"text"}}}}}'
创建mapping

mapping 为user_relationship

 curl -XPUT http://localhost:9200/user/_mapping/user_relationship -d '{"properties":{"username":{"type":"text"}}}'

elastic 下载、安装方式及集群

  • 下载
    选择需要下载的版本
  • 普通安装
    解压后运行bin/elasticsearch.bat 即可
  • docker环境下安装
docker pull docker.elastic.co/elasticsearch/elasticsearch:6.5.0
docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:6.5.0
  • docker 集群部署
    参考文档:elastic官方文档

你可能感兴趣的:(数据库)