Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

解决第7章7.4.4节创建data-policy报错问题 #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions 第7章 Elasticsearch预处理.md
Original file line number Diff line number Diff line change
@@ -192,8 +192,12 @@ PUT my_index_0705
"type": "keyword"
}
}
},
"aliases": {
"index_test_b": {}
}
}

####批量写入数据,和my_index_0704存在相同字段“field_a”。
POST my_index_0705/_bulk
{"index":{"_id":1}}
12 changes: 6 additions & 6 deletions 第8章 Elasticsearch文档.md
Original file line number Diff line number Diff line change
@@ -304,7 +304,7 @@ POST _reindex
"index": "my_index_0803"
},
"dest": {
"index": "my_index_0908",
"index": "my_index_0808",
"version_type": "external"
},
"script": {
@@ -314,11 +314,11 @@ POST _reindex
}

####批量写入数据
POST my_index_0909/_bulk
POST my_index_0809/_bulk
{"index":{"_id":1}}
{"title":" foo bar "}
####执行检索操作
GET my_index_0909/_search
GET my_index_0809/_search
####定义预处理管道
PUT _ingest/pipeline/my-trim-pipeline
{
@@ -335,15 +335,15 @@ PUT _ingest/pipeline/my-trim-pipeline
POST _reindex
{
"source": {
"index": "my_index_0909"
"index": "my_index_0809"
},
"dest": {
"index": "my_index_0910",
"index": "my_index_0810",
"pipeline": "my-trim-pipeline"
}
}
####获取迁移后的检索结果
GET my_index_0910/_search
GET my_index_0810/_search
```

### 8.5.4 不同集群索引之间迁移数据