Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 330 Bytes

第2章 Elasticsearch基础.md

File metadata and controls

22 lines (20 loc) · 330 Bytes

2.2 Elasticsearch 基础

2.2.8 映射

PUT kibana_sample_data_flights_001
{
  "mappings": {
    "properties": {
      "AvgTicketPrice": {
        "type": "float"
      },
      "Cancelled": {
        "type": "boolean"
      },
      "Carrier": {
        "type": "keyword"
      }
    }
  }
}