twalthr commented on a change in pull request #6391: [FLINK-9885] [FLINK-8101]
Finalize Elasticsearch 6.x
URL: https://github.com/apache/flink/pull/6391#discussion_r206040386
##########
File path:
flink-connectors/flink-connector-elasticsearch6/src/main/java/org/apache/flink/streaming/connectors/elasticsearch6/ElasticsearchSink.java
##########
@@ -62,62 +64,51 @@
/**
* Creates a new {@code ElasticsearchSink} that connects to the cluster
using a {@link RestHighLevelClient}.
*
- * <p>This constructor uses the default configurations of the {@link
RestHighLevelClient}. For custom
- * configuration, please use the {@link #ElasticsearchSink(Map, List,
ElasticsearchSinkFunction, RestClientFactory)}
- * constructor.
- *
- * @param userConfig user configuration to configure bulk flushing
behaviour.
- * @param elasticsearchSinkFunction This is used to generate multiple
{@link ActionRequest} from the incoming element
- * @param httpHosts The list of {@link HttpHost} to which the {@link
RestHighLevelClient} connects to.
- */
- public ElasticsearchSink(Map<String, String> userConfig, List<HttpHost>
httpHosts, ElasticsearchSinkFunction<T> elasticsearchSinkFunction) {
-
- this(
- userConfig,
- httpHosts,
- elasticsearchSinkFunction,
- restClientBuilder -> {} // a no-op rest client factory,
that uses the default configurations
- );
- }
-
- /**
- * Creates a new {@code ElasticsearchSink} that connects to the cluster
using a {@link RestHighLevelClient}.
- *
- * @param userConfig user configuration to configure bulk flushing
behaviour.
+ * @param bulkRequestsConfig user configuration to configure bulk
flushing behaviour.
* @param httpHosts The list of {@link HttpHost} to which the {@link
RestHighLevelClient} connects to.
* @param elasticsearchSinkFunction This is used to generate multiple
{@link ActionRequest} from the incoming element.
+ * @param failureHandler This is used to handle failed {@link
ActionRequest}.
Review comment:
Remove the JavaDoc for the private constructor and add them to the builder
instead? The builder doc is the important one.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services