Codota Logo
ClusterUpdateSettingsRequest.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.elasticsearch.action.admin.cluster.settings.ClusterUpdateSettingsRequest
constructor

Best Java code snippets using org.elasticsearch.action.admin.cluster.settings.ClusterUpdateSettingsRequest.<init> (Showing top 13 results out of 315)

  • Common ways to obtain ClusterUpdateSettingsRequest
private void myMethod () {
ClusterUpdateSettingsRequest c =
  • Codota Iconnew ClusterUpdateSettingsRequest()
  • Codota IconRequests.clusterUpdateSettingsRequest()
  • Smart code suggestions by Codota
}
origin: floragunncom/search-guard

.updateSettings(new ClusterUpdateSettingsRequest()
.transientSettings(ENABLE_ALL_ALLOCATIONS_SETTINGS)
.persistentSettings(ENABLE_ALL_ALLOCATIONS_SETTINGS))
origin: org.elasticsearch/elasticsearch

public static ClusterUpdateSettingsRequest clusterUpdateSettingsRequest() {
  return new ClusterUpdateSettingsRequest();
}
origin: org.elasticsearch/elasticsearch

public ClusterUpdateSettingsRequestBuilder(ElasticsearchClient client, ClusterUpdateSettingsAction action) {
  super(client, action, new ClusterUpdateSettingsRequest());
}
origin: apache/servicemix-bundles

public ClusterUpdateSettingsRequestBuilder(ElasticsearchClient client, ClusterUpdateSettingsAction action) {
  super(client, action, new ClusterUpdateSettingsRequest());
}
origin: javanna/elasticshell

public UpdateClusterSettingsRequestBuilder(Client client, JsonToString<JsonInput> jsonToString, StringToJson<JsonOutput> stringToJson) {
  super(client, new ClusterUpdateSettingsRequest(), jsonToString, stringToJson);
}
origin: com.strapdata.elasticsearch/elasticsearch

public ClusterUpdateSettingsRequestBuilder(ElasticsearchClient client, ClusterUpdateSettingsAction action) {
  super(client, action, new ClusterUpdateSettingsRequest());
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

public ClusterUpdateSettingsRequestBuilder(ElasticsearchClient client, ClusterUpdateSettingsAction action) {
  super(client, action, new ClusterUpdateSettingsRequest());
}
origin: com.strapdata.elasticsearch/elasticsearch

public static ClusterUpdateSettingsRequest clusterUpdateSettingsRequest() {
  return new ClusterUpdateSettingsRequest();
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

public static ClusterUpdateSettingsRequest clusterUpdateSettingsRequest() {
  return new ClusterUpdateSettingsRequest();
}
origin: harbby/presto-connectors

public static ClusterUpdateSettingsRequest clusterUpdateSettingsRequest() {
  return new ClusterUpdateSettingsRequest();
}
origin: harbby/presto-connectors

public ClusterUpdateSettingsRequestBuilder(ElasticsearchClient client, ClusterUpdateSettingsAction action) {
  super(client, action, new ClusterUpdateSettingsRequest());
}
origin: com.scireum/sirius-search

private void changeAllocationMode(String mode) {
  ClusterUpdateSettingsRequest request = new ClusterUpdateSettingsRequest();
  Settings settings = Settings.builder().put("cluster.routing.allocation.enable", mode).build();
  request.transientSettings(settings);
  index.getClient().admin().cluster().updateSettings(request);
}
origin: com.floragunn/search-guard-6

.updateSettings(new ClusterUpdateSettingsRequest()
.transientSettings(ENABLE_ALL_ALLOCATIONS_SETTINGS)
.persistentSettings(ENABLE_ALL_ALLOCATIONS_SETTINGS))
org.elasticsearch.action.admin.cluster.settingsClusterUpdateSettingsRequest<init>

Popular methods of ClusterUpdateSettingsRequest

  • transientSettings
    Sets the transient settings to be updated. They will not survive a full cluster restart
  • masterNodeTimeout
  • persistentSettings
    Sets the persistent settings to be updated. They will get applied cross restarts
  • timeout
  • readTimeout
  • writeTimeout

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • getExternalFilesDir (Context)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Notification (javax.management)
  • Table (org.hibernate.mapping)
    A relational table
  • Runner (org.openjdk.jmh.runner)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now