We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6b02832 + ae4bde1 commit d0661daCopy full SHA for d0661da
1 file changed
data/elasticsearch.json
@@ -87,6 +87,10 @@
87
{
88
"definition": "শার্ডে লিস্ট",
89
"code": "GET /_cat/shards/?pretty&v"
90
+ },
91
+ {
92
+ "definition": "রিপ্লিকেশন সেটিংস পরিবর্তন করতে",
93
+ "code": "PUT /my_index/_settings -d '{\"number_of_replicas\": 2}'"
94
}
95
]
96
},
@@ -129,8 +133,12 @@
129
133
130
134
"definition": "ইনডেক্স বাদ দিতে",
131
135
"code": "DELETE /my_index_name"
136
137
138
+ "definition": "ইনডেক্স পুনর্গঠন করতে",
139
+ "code": "POST /_reindex -d '{\"source\": {\"index\": \"old_index\"}, \"dest\": {\"index\": \"new_index\"}}'"
132
140
141
142
143
-}
144
+}
0 commit comments