yangzailu

导航

创建ES索引

新创建es索引结构

PUT /user_action_test3?pretty=true
{
  "mappings": {
         "properties" : {
        "action_at" : {
          "type" : "long"
        },
        "consultant_company_id" : {
          "type" : "long"
        },
        "create_time" : {
          "type" : "long"
        },
        "id" : {
          "type" : "text",
          "fields" : {
            "keyword" : {
              "type" : "keyword",
              "ignore_above" : 256
            }
          }
        },
        "induction_num" : {
          "type" : "long"
        },
        "interview_num" : {
          "type" : "long"
        },
        "job_num" : {
          "type" : "long"
        },
        "login_num" : {
          "type" : "long"
        },
        "offer_num" : {
          "type" : "long"
        },
        "order_num" : {
          "type" : "long"
        },
        "pass_num" : {
          "type" : "long"
        },
        "recommend_num" : {
          "type" : "long"
        },
        "source" : {
          "type" : "long"
        },
        "submit_num" : {
          "type" : "long"
        },
        "true_name" : {
          "type" : "text",
          "fields" : {
            "keyword" : {
              "type" : "keyword",
              "ignore_above" : 256
            }
          }
        },
        "user_id" : {
          "type" : "long"
        }
      }
  }
}

 

posted on 2023-07-24 11:33  飞离地平线  阅读(166)  评论(0编辑  收藏  举报