You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gw...@apache.org on 2017/03/05 18:28:53 UTC

kafka git commit: KAFKA-4567 - Connect Producer and Consumer ignore ssl parameters…

Repository: kafka
Updated Branches:
  refs/heads/trunk 3e69ef6e3 -> b1272500b


KAFKA-4567 - Connect Producer and Consumer ignore ssl parameters\u2026

KAFKA-4567 - Connect Producer and Consumer ignore ssl parameters configured for worker

Added brief explanation to the docs about parameter inheritance of Kafka consumers and producers from the worker config.

Author: S�nke Liebau <so...@opencore.com>

Reviewers: Gwen Shapira

Closes #2511 from soenkeliebau/KAFKA-4567


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/b1272500
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/b1272500
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/b1272500

Branch: refs/heads/trunk
Commit: b1272500bd7a80931d9571b426afb6a2de7ddeca
Parents: 3e69ef6
Author: S�nke Liebau <so...@opencore.com>
Authored: Sun Mar 5 10:28:36 2017 -0800
Committer: Gwen Shapira <cs...@gmail.com>
Committed: Sun Mar 5 10:28:36 2017 -0800

----------------------------------------------------------------------
 docs/connect.html | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/b1272500/docs/connect.html
----------------------------------------------------------------------
diff --git a/docs/connect.html b/docs/connect.html
index 1af5ed9..d6b6f00 100644
--- a/docs/connect.html
+++ b/docs/connect.html
@@ -56,6 +56,8 @@
         <li><code>offset.storage.file.filename</code> - File to store offset data in</li>
     </ul>
 
+    The parameters that are configured here are intended for producers and consumers used by Kafka Connect to access the configuration, offset and status topics. For configuration of Kafka source and Kafka sink tasks, the same parameters can be used but need to be prefixed with <code>consumer.</code> and <code>producer.</code> respectively. The only parameter that is inherited from the worker configuration is <code>bootstrap.servers</code>, which in most cases will be sufficient, since the same cluster is often used for all purposes. A notable exeption is a secured cluster, which requires extra parameters to allow connections. These parameters will need to be set up to three times in the worker configuration, once for management access, once for Kafka sinks and once for Kafka sources.
+
     The remaining parameters are connector configuration files. You may include as many as you want, but all will execute within the same process (on different threads).
 
     Distributed mode handles automatic balancing of work, allows you to scale up (or down) dynamically, and offers fault tolerance both in the active tasks and for configuration and offset commit data. Execution is very similar to standalone mode: