es的DSL语句怎么创建一个索引,创建映射,添加数据
时间: 2024-09-27 11:04:58 浏览: 38
ElasticSearch.md倒排索引
在Elasticsearch (ES) 中,DSL (Domain Specific Language) 是一种强大的查询和操作工具,它允许开发者以JSON格式编写复杂的查询和索引配置。以下是创建索引、设置映射以及添加数据的基本步骤:
1. **创建索引**:
```json
{
"index": {
"name": "my_index", // 索引名称
"settings": { // 可选的设置
"number_of_shards": 5, // 分片数
"number_of_replicas": 1 // 备份副本数
}
}
}
```
使用`PUT`请求发送到`/_create`路径,如 `PUT /my_index`
2. **创建映射 (Mapping)**:
映射定义了文档结构,包括字段及其类型。例如,对于一个包含用户信息的文档:
```json
{
"mappings": {
"properties": {
"username": {"type": "text"},
"email": {"type": "keyword"},
"age": {"type": "integer"}
}
}
}
```
发送到`/_mapping/my_type?pretty`,其中`my_type`是你打算在该索引存储的数据类型。
3. **添加数据 (Indexing Data)**:
你可以直接将文档作为JSON发送到索引,比如:
```json
{
"doc": {
"username": "Alice",
"email": "alice@example.com",
"age": 25
}
}
```
使用`POST`请求发送到`/my_index/my_type`。如果文档存在则更新,不存在则创建新文档。
阅读全文