• 大觅网 ElasticSearch index创建代码


    大觅网视频提供素材没有 ES 索引初始化代码 个人自己敲了个 希望能给学习的人提供方便

    PUT /dm
    {
      "settings": {
        "number_of_replicas": 1,
        "number_of_shards": 5
      },
      "mappings": {
        "item":{
          "properties": {
            "abstractMessage":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "address":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "areaId":{
              "type": "long"
            },
            "areaName":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "commentCount":{
              "type": "long"
            },
            "createdTime":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "createdTimeLong":{
              "type": "long"
            },
            "endTime":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "endTimeLong":{
              "type": "long"
            },
            "esId":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "id":{
              "type": "long"
            },
            "imgUrl":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "itemName":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "itemTypeId1":{
              "type": "long"
            },
            "itemTypeId2":{
              "type": "long"
            },
            "latitude":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "longitude":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "maxPrice":{
              "type": "float"
            },
            "minPrice":{
              "type": "float"
            },
            "setting":{
              "properties": {
                "indexName":{
                  "type": "text",
                  "fields": {
                    "keyword":{
                      "type": "keyword",
                      "ignore_above": 256
                    }
                  }
                },
                "typeName":{
                  "type": "text",
                  "fields": {
                    "keyword":{
                      "type": "keyword",
                      "ignore_above": 256
                    }
                  }
                }
              }
            },
            "startTime":{
              "type": "text",
              "fields": {
                "keyword":{
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "startTimeLong":{
              "type": "long"
            }
          }
        }
      }
    }
    

      

  • 相关阅读:
    淘宝TFS使用笔记(一):初识TFS
    为F5-LTM上的业务添加x-forward-for
    Win7 搭建Linux开发环境
    使用PyQT开发图形界面程序
    二叉树的操作
    Harbor--企业级项目管理
    kubernetes 1.3 使用skydns + kube2dns +etcd部署DNS服务器
    搭建Kubernetes服务集群遇到的问题
    kubernetes1.3搭建dns服务
    搭建Docker私有仓库
  • 原文地址:https://www.cnblogs.com/feng-jjy/p/11963631.html
Copyright © 2020-2023  润新知