commit | 98ea7fa05a0f07aa751a9202f386ab4e72228959 | [log] [tgz] |
---|---|---|
author | Jason Huynh <huynhja@gmail.com> | Fri Feb 21 16:21:36 2020 -0800 |
committer | Jason Huynh <huynhja@gmail.com> | Fri Feb 21 16:21:36 2020 -0800 |
tree | d3607f07829b27ce2dfd233f1ea03ce1c44613d2 | |
parent | bc637cdc3c49557e81b51f8b5e7f1d9e0b083789 [diff] |
fixing path on default security auth init
Kafka provides an integration point through Source and Sink Connectors. The GeodeKafkaSource allows Geode to be a data source for Kafka The GeodeKafkaSink allows Geode to consume data off of topics and store data from Kafka.
Installation of the connector is similar in process to other Kafka Connectors. For now, we will follow the guide for Manual Installation.
In summary, we will use the standalone worker for this example.
plugin.path=(Path to your clone)/geode-kafka-connector/build/libs/ #depending on object type, you might want to modify the converter (for manually testing we can use the JSON or string converter) #key.converter= #value.converter=
name=geode-kafka-sink connector.class=GeodeKafkaSink tasks.max=1 topic-to-regions=[someTopicToSinkFrom:someRegionToConsume] topics=someTopicToSinkFrom locators=localHost[10334]
name=geode-kafka-source connector.class=GeodeKafkaSource tasks.max=1 region-to-topics=[someRegionToSourceFrom:someTopicToConsume] locators=localHost[10334]
Property | Required | Description | Default |
---|---|---|---|
locators | no, but... | A comma separated string of locators that configure which locators to connect to | localhost[10334] |
topic-to-regions | yes | A comma separated list of “one topic to many regions” bindings. Each binding is surrounded by brackets. For example “[topicName:regionName], [anotherTopic: regionName, anotherRegion]” | [gkctopic:gkcregion] |
security-client-auth-init | no | Point to class that implements the AuthInitialize Interface | |
null-values-mean-remove | no | If set to true, when topics send a SinkRecord with a null value, we will convert to an operation similar to region.remove instead of putting a null value into the region | true |
Property | Required | Description | Default |
---|---|---|---|
locators | no, but... | A comma separated string of locators that configure which locators to connect to | localhost[10334] |
region-to-topics | 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]” | [gkcregion:gkctopic] |
security-client-auth-init | no | Point to class that implements the AuthInitialize Interface | |
security-username | no | Supply a username to be used to authenticate with Geode. Will automatically set the security-client-auth-init to use a SystemPropertyAuthInit if one isn't supplied by the user | null |
security-password | no | Supply a password to be used to authenticate with Geode | null |
geode-connector-batch-size | no | Maximum number of records to return on each poll | 100 |
geode-connector-queue-size | no | Maximum number of entries in the connector queue before backing up all Geode cq listeners sharing the task queue | 10000 |
load-entire-region | no | Determines if we should queue up all entries that currently exist in a region. This allows us to copy existing region data. Will be replayed whenever a task needs to re-register a cq | true |
durable-client-id-prefix | no | Prefix string for tasks to append to when registering as a durable client. If empty string, will not register as a durable client | "" |
durable-client-timeout | no | How long in milliseconds to persist values in Geode's durable queue before the queue is invalidated | 60000 |
cq-prefix | no | Prefix string to identify Connector cq's on a Geode server | cqForGeodeKafka |
Extra Details