-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HLRC: add client side RefreshPolicy (#33209)
With the switch to client side request and response objects, we need a client side version of RefreshPolicy. This change adds a client side version of RefreshPolicy along with a method to add it to the parameters of a request. The existing method to add WriteRequest.RefreshPolicy to the parameters of a request is now deprecated.
- Loading branch information
Showing
2 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
client/rest-high-level/src/main/java/org/elasticsearch/client/security/RefreshPolicy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.elasticsearch.client.security; | ||
|
||
/** | ||
* Enumeration of values that control the refresh policy for a request that | ||
* supports specifying a refresh policy. | ||
*/ | ||
public enum RefreshPolicy { | ||
|
||
/** | ||
* Don't refresh after this request. The default. | ||
*/ | ||
NONE("false"), | ||
/** | ||
* Force a refresh as part of this request. This refresh policy does not scale for high indexing or search throughput but is useful | ||
* to present a consistent view to for indices with very low traffic. And it is wonderful for tests! | ||
*/ | ||
IMMEDIATE("true"), | ||
/** | ||
* Leave this request open until a refresh has made the contents of this request visible to search. This refresh policy is | ||
* compatible with high indexing and search throughput but it causes the request to wait to reply until a refresh occurs. | ||
*/ | ||
WAIT_UNTIL("wait_for"); | ||
|
||
private final String value; | ||
|
||
RefreshPolicy(String value) { | ||
this.value = value; | ||
} | ||
|
||
public String getValue() { | ||
return value; | ||
} | ||
|
||
/** | ||
* Get the default refresh policy, which is <code>NONE</code> | ||
*/ | ||
public static RefreshPolicy getDefault() { | ||
return RefreshPolicy.NONE; | ||
} | ||
} |