ES-创建索引sql语句

PUT index 
{
"mappings": {
"type": {
  "properties": {
    "text": { 
      "id": "string",
      "name": "string",
      "nickName":"string",
      "skuCode":"string",
      "dimensionValues":"string",
      "stock":"string",
      "salesNum":"string"
      }
     }
    }
}
}

 

index   --  索引名称

type     -- 索引type

 

 

 

你可能感兴趣的:(ES-DDL语句,elasticsearch,sql,nosql)