org.apache.camel.component.es.springboot.ElasticsearchComponentConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-elasticsearch-starter Show documentation
Show all versions of camel-elasticsearch-starter Show documentation
Spring-Boot Starter for Camel ElasticSearch Java API Client support
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.apache.camel.component.es.springboot;
import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
import org.elasticsearch.client.RestClient;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* Send requests to ElasticSearch via Java Client API.
*
* Generated by camel-package-maven-plugin - do not edit this file!
*/
@ConfigurationProperties(prefix = "camel.component.elasticsearch")
public class ElasticsearchComponentConfiguration
extends
ComponentConfigurationPropertiesCommon {
/**
* Whether to enable auto configuration of the elasticsearch component. This
* is enabled by default.
*/
private Boolean enabled;
/**
* The time in ms to wait before connection will timeout.
*/
private Integer connectionTimeout = 30000;
/**
* Indicates whether the body of the message contains only documents. By
* default, it is set to false to be able to do the same requests as what
* the Document API supports (see
* https://www.elastic.co/guide/en/elasticsearch/reference/current/docs.html
* for more details). To ease the migration of routes based on the legacy
* component camel-elasticsearch-rest, you should consider enabling the mode
* especially if your routes do update operations.
*/
private Boolean enableDocumentOnlyMode = false;
/**
* Comma separated list with ip:port formatted remote transport addresses to
* use. The ip and port options must be left blank for hostAddresses to be
* considered instead.
*/
private String hostAddresses;
/**
* Whether the producer should be started lazy (on the first message). By
* starting lazy you can use this to allow CamelContext and routes to
* startup in situations where a producer may otherwise fail during starting
* and cause the route to fail being started. By deferring this startup to
* be lazy then the startup failure can be handled during routing messages
* via Camel's routing error handlers. Beware that when the first message is
* processed then creating and starting the producer may take a little time
* and prolong the total processing time of the processing.
*/
private Boolean lazyStartProducer = false;
/**
* The time in ms before retry
*/
private Integer maxRetryTimeout = 30000;
/**
* The timeout in ms to wait before the socket will timeout.
*/
private Integer socketTimeout = 30000;
/**
* Whether autowiring is enabled. This is used for automatic autowiring
* options (the option must be marked as autowired) by looking up in the
* registry to find if there is a single instance of matching type, which
* then gets configured on the component. This can be used for automatic
* configuring JDBC data sources, JMS connection factories, AWS Clients,
* etc.
*/
private Boolean autowiredEnabled = true;
/**
* To use an existing configured Elasticsearch client, instead of creating a
* client per endpoint. This allow to customize the client with specific
* settings. The option is a org.elasticsearch.client.RestClient type.
*/
private RestClient client;
/**
* Enable automatically discover nodes from a running Elasticsearch cluster.
* If this option is used in conjunction with Spring Boot then it's managed
* by the Spring Boot configuration (see: Disable Sniffer in Spring Boot).
*/
private Boolean enableSniffer = false;
/**
* The delay of a sniff execution scheduled after a failure (in
* milliseconds)
*/
private Integer sniffAfterFailureDelay = 60000;
/**
* The interval between consecutive ordinary sniff executions in
* milliseconds. Will be honoured when sniffOnFailure is disabled or when
* there are no failures between consecutive sniff executions
*/
private Integer snifferInterval = 300000;
/**
* The path of the self-signed certificate to use to access to
* Elasticsearch.
*/
private String certificatePath;
/**
* Enable SSL
*/
private Boolean enableSSL = false;
/**
* Password for authenticate
*/
private String password;
/**
* Basic authenticate user
*/
private String user;
public Integer getConnectionTimeout() {
return connectionTimeout;
}
public void setConnectionTimeout(Integer connectionTimeout) {
this.connectionTimeout = connectionTimeout;
}
public Boolean getEnableDocumentOnlyMode() {
return enableDocumentOnlyMode;
}
public void setEnableDocumentOnlyMode(Boolean enableDocumentOnlyMode) {
this.enableDocumentOnlyMode = enableDocumentOnlyMode;
}
public String getHostAddresses() {
return hostAddresses;
}
public void setHostAddresses(String hostAddresses) {
this.hostAddresses = hostAddresses;
}
public Boolean getLazyStartProducer() {
return lazyStartProducer;
}
public void setLazyStartProducer(Boolean lazyStartProducer) {
this.lazyStartProducer = lazyStartProducer;
}
public Integer getMaxRetryTimeout() {
return maxRetryTimeout;
}
public void setMaxRetryTimeout(Integer maxRetryTimeout) {
this.maxRetryTimeout = maxRetryTimeout;
}
public Integer getSocketTimeout() {
return socketTimeout;
}
public void setSocketTimeout(Integer socketTimeout) {
this.socketTimeout = socketTimeout;
}
public Boolean getAutowiredEnabled() {
return autowiredEnabled;
}
public void setAutowiredEnabled(Boolean autowiredEnabled) {
this.autowiredEnabled = autowiredEnabled;
}
public RestClient getClient() {
return client;
}
public void setClient(RestClient client) {
this.client = client;
}
public Boolean getEnableSniffer() {
return enableSniffer;
}
public void setEnableSniffer(Boolean enableSniffer) {
this.enableSniffer = enableSniffer;
}
public Integer getSniffAfterFailureDelay() {
return sniffAfterFailureDelay;
}
public void setSniffAfterFailureDelay(Integer sniffAfterFailureDelay) {
this.sniffAfterFailureDelay = sniffAfterFailureDelay;
}
public Integer getSnifferInterval() {
return snifferInterval;
}
public void setSnifferInterval(Integer snifferInterval) {
this.snifferInterval = snifferInterval;
}
public String getCertificatePath() {
return certificatePath;
}
public void setCertificatePath(String certificatePath) {
this.certificatePath = certificatePath;
}
public Boolean getEnableSSL() {
return enableSSL;
}
public void setEnableSSL(Boolean enableSSL) {
this.enableSSL = enableSSL;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy