Auto-configure Elasticsearch REST clients
This commit adds auto-configuration support for both `RestClient` and `RestHighLevelClient` which are provided by `elasticsearch-rest-client` and `elasticsearch-rest-high-level-client` dependencies respectively. `RestClient` is associated with configuration properties in the `spring.elasticsearch.rest.*` namespace, since this is the component taking care of HTTP communication with the actual Elasticsearch node. `RestHighLevelClient` wraps the first one and naturally inherits that configuration. Closes gh-12600pull/13090/head
parent
43ef5ba205
commit
84c9a65e9d
@ -0,0 +1,100 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012-2018 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed 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.springframework.boot.autoconfigure.elasticsearch.rest;
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.http.HttpHost;
|
||||||
|
import org.apache.http.auth.AuthScope;
|
||||||
|
import org.apache.http.auth.Credentials;
|
||||||
|
import org.apache.http.auth.UsernamePasswordCredentials;
|
||||||
|
import org.apache.http.client.CredentialsProvider;
|
||||||
|
import org.apache.http.impl.client.BasicCredentialsProvider;
|
||||||
|
import org.elasticsearch.client.RestClient;
|
||||||
|
import org.elasticsearch.client.RestClientBuilder;
|
||||||
|
import org.elasticsearch.client.RestHighLevelClient;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.ObjectProvider;
|
||||||
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||||
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
|
||||||
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
||||||
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||||
|
import org.springframework.boot.context.properties.PropertyMapper;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@link EnableAutoConfiguration Auto-Configuration}
|
||||||
|
* for Elasticseach REST clients.
|
||||||
|
*
|
||||||
|
* @author Brian Clozel
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
@ConditionalOnClass(RestClient.class)
|
||||||
|
@EnableConfigurationProperties(RestClientProperties.class)
|
||||||
|
public class RestClientAutoConfiguration {
|
||||||
|
|
||||||
|
|
||||||
|
private final RestClientProperties properties;
|
||||||
|
|
||||||
|
private final List<RestClientBuilderCustomizer> builderCustomizers;
|
||||||
|
|
||||||
|
public RestClientAutoConfiguration(RestClientProperties properties,
|
||||||
|
ObjectProvider<List<RestClientBuilderCustomizer>> builderCustomizers) {
|
||||||
|
this.properties = properties;
|
||||||
|
this.builderCustomizers = builderCustomizers.getIfAvailable(Collections::emptyList);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean(destroyMethod = "close")
|
||||||
|
@ConditionalOnMissingBean
|
||||||
|
public RestClient restClient() {
|
||||||
|
RestClientBuilder builder = configureBuilder();
|
||||||
|
return builder.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RestClientBuilder configureBuilder() {
|
||||||
|
HttpHost[] hosts = this.properties.getUris().stream()
|
||||||
|
.map(HttpHost::create).toArray(HttpHost[]::new);
|
||||||
|
RestClientBuilder builder = RestClient.builder(hosts);
|
||||||
|
PropertyMapper map = PropertyMapper.get();
|
||||||
|
map.from(this.properties::getUsername).whenHasText().to((username) -> {
|
||||||
|
CredentialsProvider credentialsProvider = new BasicCredentialsProvider();
|
||||||
|
Credentials credentials = new UsernamePasswordCredentials(
|
||||||
|
this.properties.getUsername(), this.properties.getPassword());
|
||||||
|
credentialsProvider.setCredentials(AuthScope.ANY, credentials);
|
||||||
|
builder.setHttpClientConfigCallback(httpClientBuilder ->
|
||||||
|
httpClientBuilder.setDefaultCredentialsProvider(credentialsProvider));
|
||||||
|
});
|
||||||
|
this.builderCustomizers.forEach((customizer) -> customizer.customize(builder));
|
||||||
|
return builder;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
@ConditionalOnClass(RestHighLevelClient.class)
|
||||||
|
public static class RestHighLevelClientConfiguration {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
@ConditionalOnMissingBean
|
||||||
|
public RestHighLevelClient restHighLevelClient(RestClient restClient) {
|
||||||
|
return new RestHighLevelClient(restClient);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012-2018 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed 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.springframework.boot.autoconfigure.elasticsearch.rest;
|
||||||
|
|
||||||
|
import org.elasticsearch.client.RestClientBuilder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Callback interface that can be implemented by beans wishing to further customize the
|
||||||
|
* {@link org.elasticsearch.client.RestClient} via a {@link RestClientBuilder} whilst
|
||||||
|
* retaining default auto-configuration.
|
||||||
|
*
|
||||||
|
* @author Brian Clozel
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
@FunctionalInterface
|
||||||
|
public interface RestClientBuilderCustomizer {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Customize the {@link RestClientBuilder}.
|
||||||
|
* @param builder the builder to customize
|
||||||
|
*/
|
||||||
|
void customize(RestClientBuilder builder);
|
||||||
|
}
|
@ -0,0 +1,75 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012-2018 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed 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.springframework.boot.autoconfigure.elasticsearch.rest;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Configuration properties for Elasticsearch REST clients.
|
||||||
|
*
|
||||||
|
* @author Brian Clozel
|
||||||
|
* @since 2.1.0
|
||||||
|
*/
|
||||||
|
@ConfigurationProperties(prefix = "spring.elasticsearch.rest")
|
||||||
|
public class RestClientProperties {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Comma-separated list of the Elasticsearch instances to use.
|
||||||
|
*/
|
||||||
|
private List<String> uris = new ArrayList<>(
|
||||||
|
Collections.singletonList("http://localhost:9200"));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Credentials username.
|
||||||
|
*/
|
||||||
|
private String username;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Credentials password.
|
||||||
|
*/
|
||||||
|
private String password;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public List<String> getUris() {
|
||||||
|
return this.uris;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUris(List<String> uris) {
|
||||||
|
this.uris = uris;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUsername() {
|
||||||
|
return this.username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUsername(String username) {
|
||||||
|
this.username = username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPassword() {
|
||||||
|
return this.password;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPassword(String password) {
|
||||||
|
this.password = password;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012-2018 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auto-configuration for Elasticsearch REST clients.
|
||||||
|
*/
|
||||||
|
package org.springframework.boot.autoconfigure.elasticsearch.rest;
|
@ -0,0 +1,119 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012-2018 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed 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.springframework.boot.autoconfigure.elasticsearch.rest;
|
||||||
|
|
||||||
|
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.elasticsearch.action.get.GetRequest;
|
||||||
|
import org.elasticsearch.action.index.IndexRequest;
|
||||||
|
import org.elasticsearch.client.RestClient;
|
||||||
|
import org.elasticsearch.client.RestHighLevelClient;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import org.springframework.boot.autoconfigure.AutoConfigurations;
|
||||||
|
import org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchNodeTemplate;
|
||||||
|
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.util.ReflectionUtils;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
import static org.mockito.Mockito.mock;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for {@link RestClientAutoConfiguration}
|
||||||
|
*
|
||||||
|
* @author Brian Clozel
|
||||||
|
*/
|
||||||
|
public class RestClientAutoConfigurationTests {
|
||||||
|
|
||||||
|
private ApplicationContextRunner contextRunner = new ApplicationContextRunner()
|
||||||
|
.withConfiguration(AutoConfigurations.of(RestClientAutoConfiguration.class));
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void configureShouldCreateBothRestClientVariants() {
|
||||||
|
this.contextRunner.run((context) -> {
|
||||||
|
assertThat(context).hasSingleBean(RestClient.class)
|
||||||
|
.hasSingleBean(RestHighLevelClient.class);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void configureWhenCustomClientShouldBackOff() {
|
||||||
|
this.contextRunner
|
||||||
|
.withUserConfiguration(CustomRestClientConfiguration.class)
|
||||||
|
.run((context) -> {
|
||||||
|
assertThat(context).hasSingleBean(RestClient.class)
|
||||||
|
.hasBean("customRestClient");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void configureWhenBuilderCustomizerShouldApply() {
|
||||||
|
this.contextRunner
|
||||||
|
.withUserConfiguration(BuilderCustomizerConfiguration.class)
|
||||||
|
.run((context) -> {
|
||||||
|
assertThat(context).hasSingleBean(RestClient.class);
|
||||||
|
RestClient restClient = context.getBean(RestClient.class);
|
||||||
|
Field field = ReflectionUtils.findField(RestClient.class,
|
||||||
|
"maxRetryTimeoutMillis");
|
||||||
|
ReflectionUtils.makeAccessible(field);
|
||||||
|
assertThat(ReflectionUtils.getField(field, restClient))
|
||||||
|
.isEqualTo(42L);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void restClientCanQueryElasticsearchNode() {
|
||||||
|
new ElasticsearchNodeTemplate().doWithNode((node) -> this.contextRunner
|
||||||
|
.withPropertyValues("spring.elasticsearch.rest.uris=http://localhost:"
|
||||||
|
+ node.getHttpPort())
|
||||||
|
.run((context) -> {
|
||||||
|
RestHighLevelClient client = context.getBean(RestHighLevelClient.class);
|
||||||
|
Map<String, String> source = new HashMap<>();
|
||||||
|
source.put("a", "alpha");
|
||||||
|
source.put("b", "bravo");
|
||||||
|
IndexRequest index = new IndexRequest("foo", "bar", "1")
|
||||||
|
.source(source);
|
||||||
|
client.index(index);
|
||||||
|
GetRequest getRequest = new GetRequest("foo", "bar", "1");
|
||||||
|
assertThat(client.get(getRequest).isExists()).isTrue();
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
static class CustomRestClientConfiguration {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public RestClient customRestClient() {
|
||||||
|
return mock(RestClient.class);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
static class BuilderCustomizerConfiguration {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public RestClientBuilderCustomizer myCustomizer() {
|
||||||
|
return builder -> builder.setMaxRetryTimeoutMillis(42);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue