Repository: sqoop Updated Branches: refs/heads/sqoop2 34fa78d44 -> 6ed1a190e
SQOOP-2872: Sqoop2: Enrich Kafka Connector resource file (Jarek Jarcec Cecho via Abraham Fine) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/6ed1a190 Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/6ed1a190 Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/6ed1a190 Branch: refs/heads/sqoop2 Commit: 6ed1a190ea6550d1d41a9f60d1e651af4b476d8c Parents: 34fa78d Author: Abraham Fine <[email protected]> Authored: Mon Mar 7 13:09:40 2016 -0800 Committer: Abraham Fine <[email protected]> Committed: Mon Mar 7 13:09:40 2016 -0800 ---------------------------------------------------------------------- .../resources/kafka-connector-config.properties | 27 ++++++++++---------- 1 file changed, 13 insertions(+), 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/6ed1a190/connector/connector-kafka/src/main/resources/kafka-connector-config.properties ---------------------------------------------------------------------- diff --git a/connector/connector-kafka/src/main/resources/kafka-connector-config.properties b/connector/connector-kafka/src/main/resources/kafka-connector-config.properties index d3e1e6f..3fc3fc7 100644 --- a/connector/connector-kafka/src/main/resources/kafka-connector-config.properties +++ b/connector/connector-kafka/src/main/resources/kafka-connector-config.properties @@ -13,26 +13,25 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Generic Kafka Connector Resources +connector.name = Kafka connector -############################ +linkConfig.label = Kafka cluster +linkConfig.help = Configuration options describing Kafka cluster. -# Link Config -linkConfig.label = Link configuration -linkConfig.help = Here you supply information necessary to connect to Kafka - -linkConfig.brokerList.label = List of Kafka brokers +linkConfig.brokerList.label = Kafka brokers +linkConfig.brokerList.example = broker-1.kafka.org:9092,broker-2.kafka.org:9092 linkConfig.brokerList.help = Comma-separated list of Kafka brokers in the form of host:port. \ It doesn't need to contain all brokers, but at least two are recommended for high availability -linkConfig.zookeeperConnect.label = Zookeeper address +linkConfig.zookeeperConnect.label = Zookeeper quorum +linkConfig.zookeeperConnect.example = zk-1.kafka.org:2181,zk-2.kafka.org:2182 linkConfig.zookeeperConnect.help = Address of Zookeeper used by the Kafka cluster. Usually host:port. \ Multiple zookeeper nodes are supported. If Kafka is stored in its own znode \ use host:port\kafka -# To Job Config -# -toJobConfig.label = To Kafka configuration -toJobConfig.help = Configuration necessary when writing data to Kafka -toJobConfig.topic.label = Kafka topic -toJobConfig.topic.help = Name of Kafka topic where we'll send the data +toJobConfig.label = Output configuration +toJobConfig.help = Configuration necessary when writing data to Kafka. + +toJobConfig.topic.label = Topic +toJobConfig.topic.example = sqoop_topic +toJobConfig.topic.help = Name of Kafka topic where data will be written into.
