diff --git a/ja/learn/admin/REST/rest-cluster-disable-query.dita b/ja/learn/admin/REST/rest-cluster-disable-query.dita index 7af0ba0..d47bc08 100644 --- a/ja/learn/admin/REST/rest-cluster-disable-query.dita +++ b/ja/learn/admin/REST/rest-cluster-disable-query.dita @@ -1,47 +1,50 @@ - - Disabling consistent query results on rebalance - Ensuring query results consistency is performed with the POST /internalSettings -d indexAwareRebalanceDisabled HTTP method, URI, and parameter. + + リバランスでの一貫したクエリ結果の無効化 + + クエリ結果の一貫性の保証はPOST /internalSettings -d indexAwareRebalanceDisabledHTTPメソッド、URIおよびパラメータを用いて行われます。 +
- Description -

If queries are performed during rebalance, this setting ensures that query results are - consistent with the original bucket and data organization prior to rebalancing. In other - words, the query results reflect the data on an original node prior to rebalance rather than - data on a node after rebalance started. By default, this functionality is enabled.

- Be aware that rebalance may take significantly more time if you implemented - views for indexing and querying. If rebalance time becomes a critical factor for your - application, this feature can be disabled, however, it is not recommend. Do not disable this - functionality for production applications without thorough testing. To do so may lead to - unpredictable query results during rebalance. + 説明 +

+ リバランス中にクエリを実行した場合、この設定はクエリ結果が元のbucketやデータ編成がリバランスする前と一致することを保証します。 + 言い換えると、クエリの結果はリバランスを開始した後のノードのデータではなく、リバランスを開始する前の元のバケットのデータが反映されます。デフォルトでこの機能は有効です。 +

+ + インデックスやクエリのためにビューを実装した場合、リバランスは大幅に時間がかかる可能性があることに注意してください。 + リバランスの時間がアプリケーションにとって重要な要因となる場合、この機能を無効にする事ができます。しかしお勧めはしません。 + 綿密なテストを行わずに本番のアプリケーションでこの機能を無効にしないでください。 + リバランス中に行った場合、予測不可能なクエリ結果になる可能性があります。 +
-
HTTP method and URI +
HTTPメソッドとURI POST /internalSettings -d indexAwareRebalanceDisabled
-
Syntax -

Curl request syntax:

+
シンタックス +

Curlリクエストシンタックス:

curl -v -u [admin]:[password] -X POST http://[localhost]:8091/internalSettings -d indexAwareRebalanceDisabled=[true | false]
-
Example -

Curl request example to disable this feature:

+
+

この機能を無効にするCurlリクエスト例:

curl -v -u admin:password -X POST http://10.5.2.54:8091/internalSettings -d indexAwareRebalanceDisabled=true
-
Response +
レスポンス HTTP/1.1 200 OK Content-Type: application/json