Skip to content

Commit f3839a2

Browse files
Updated API components to reflect the latest OpenSearch API spec (2025-11-30) (#11603)
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Naarcha-AWS <[email protected]>
1 parent 2e8daa5 commit f3839a2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

_api-reference/document-apis/reindex.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,13 +1148,13 @@ body: |
11481148
}
11491149
-->
11501150
{% capture step1_rest %}
1151-
POST /_reindex?requests_per_second=500
1151+
POST /_reindex?requests_per_second=100
11521152
{
11531153
"source": {
1154-
"index": "production-data"
1154+
"index": "source"
11551155
},
11561156
"dest": {
1157-
"index": "production-backup"
1157+
"index": "dest"
11581158
}
11591159
}
11601160
{% endcapture %}
@@ -1163,13 +1163,13 @@ POST /_reindex?requests_per_second=500
11631163

11641164

11651165
response = client.reindex(
1166-
params = { "requests_per_second": "500" },
1166+
params = { "requests_per_second": "100" },
11671167
body = {
11681168
"source": {
1169-
"index": "production-data"
1169+
"index": "source"
11701170
},
11711171
"dest": {
1172-
"index": "production-backup"
1172+
"index": "dest"
11731173
}
11741174
}
11751175
)

0 commit comments

Comments
 (0)