This is an automated email from the ASF dual-hosted git repository. nnag pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/geode-kafka-connector.git
commit 6ce3c56a4db4e3290525edf018c0b8b6588c55fe Author: Jason Huynh <[email protected]> AuthorDate: Fri Jan 31 16:45:07 2020 -0800 Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6aa3e25..1648d07 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The GeodeKafkaSink allows Geode to consume data off of topics and store data fro Installation of the connector is similar in process to other Kafka Connectors. For now, we will follow the guide for [Manual Installation](https://docs.confluent.io/current/connect/managing/install.html#install-connector-manually). In summary, we will use the standalone worker for this example. -* Explode a zip file or build into a known and Kafka accessible location +* Explode a zip file or build into a known (and Kafka accessible) location * Modify the connect-standalone.properties and point to where the connector is installed. ``` plugin.path=/Users/jhuynh/Pivotal/geode-kafka-connector/build/libs/ @@ -53,7 +53,8 @@ bin/connect-standalone.sh config/connect-standalone.properties config/connect-ge | Property | Required| Description| Default | |---|---|---|---| | locators | no, but...| A comma separated string of locators that configure which locators to connect to | localhost[10334] | -|regionToTopics| yes | A comma separated list of "one region to many topics" mappings. Each mapping is surrounded by brackets. For example "[regionName:topicName], "[anotherRegion: topicName, anotherTopic]" | None. This is required to be set in the source connector properties +|regionToTopics| yes | A comma separated list of "one region to many topics" mappings. Each mapping is surrounded by brackets. For example "[regionName:topicName], "[anotherRegion: topicName, anotherTopic]" | None. This is required to be set in the source connector properties| +|security-client-auth-init| no | Point to class that implements the [AuthInitialize Interface](https://gemfire.docs.pivotal.io/99/geode/managing/security/implementing_authentication.html) |geodeConnectorBatchSize| no | Maximum number of records to return on each poll| 100 | |geodeConnectorQueueSize| no | Maximum number of entries in the connector queue before backing up all Geode cq listeners sharing the task queue | 10000 | | loadEntireRegion| no| Determines if we should queue up all entries that currently exist in the region. This allows us to copy existing region data. Will be replayed whenever a task needs to re-register a cq| true |
