tKafkaInput Standard properties
These properties are used to configure tKafkaInput running in the Standard Job framework.
The Standard tKafkaInput component belongs to the Internet family.
The component in this framework is available in all Talend products with Big Data and in Talend Data Fabric.
Basic settings
Schema and Edit schema |
A schema is a row description. It defines the number of fields (columns) to be processed and passed on to the next component. When you create a Spark Job, avoid the reserved word line when naming the fields. Note that the schema of this component is read-only. It stores the messages sent from the message producer. |
Output type |
Select the type of the data to be sent to the next component. Typically, using String is recommended, because tKafkaInput can automatically translate the Kafka byte[] messages into strings to be processed by the Job. However, in case that the format of Kafka messages is not known to tKafkaInput, such as Protobuf, you can select byte and then use a Custom code component such as tJavaRow to deserialize the messages into strings so that the other components of the same Job can process these messages. |
Use an existing connection |
Select this check box and in the Component List drop-down list, select the desired connection component to reuse the connection details you already defined. |
Version |
Select the version of the Kafka cluster to be used. |
Zookeeper quorum list |
Enter the address of the Zookeeper service of the Kafka cluster to be used. The form of this address should be hostname:port. This information is the name and the port of the hosting node in this Kafka cluster. If you need to specify several addresses, separate them using a comma (,). This field is available to Kafka 0.8.2.0 only. |
Broker list |
Enter the addresses of the broker nodes of the Kafka cluster to be used. The form of this address should be hostname:port. This information is the name and the port of the hosting node in this Kafka cluster. If you need to specify several addresses, separate them using a comma (,). This field is available since Kafka 0.9.0.1. |
Reset offsets on consumer group |
Select this check box to clear the offsets saved for the consumer group to be used so that this consumer group is handled as a new group that has not consumed any messages. |
New consumer group starts from |
Select the starting point from which the messages of a topic are consumed. In Kafka, the increasing ID number of a message is called offset. When a new consumer group starts, from this list, you can select beginning to start consumption from the oldest message of the entire topic, or select latest to wait for a new message. Note that the consumer group takes into account only the offset-committed messages to start from. Each consumer group has its own counter to remember the position of a message it has consumed. For this reason, once a consumer group starts to consume messages of a given topic, a consumer group recognizes the latest message only with regard to the position where this group stops the consumption, rather than to the entire topic. Based on this principle, the following behaviors can be expected:
|
Offset storage |
Select the system to which you want to commit the offsets of the consumed messages. |
Enable dual commit |
If you select Kafka as the offset storage system, the Enable dual commit check box is displayed. By default it is selected to let the Job commit the messages to both Zookeeper and Kafka. If you want the Job to commit only to Kafka, clear this check box. |
Auto-commit offsets |
Select this check box to make tKafkaInput automatically save its consumption state at the end of each given time interval. You need to define this interval in the Interval field that is displayed. Note that the offsets are committed only at the end of each interval. If your Job stops in the middle of an interval, the message consumption state within this interval is not committed. |
Topic name |
Enter the name of the topic from which tKafkaInput receives the feed of messages. |
Consumer group ID |
Enter the name of the consumer group to which you want the current consumer (the tKafkaInput component) to belong. This consumer group will be created at runtime if it does not exist at that moment. |
Stop after a maximum total duration (ms) |
Select this check box and in the pop-up field, enter the duration (in milliseconds) at the end of which tKafkaInput stops running. |
Stop after receiving a maximum number of messages |
Select this check box and in the pop-up field, enter the maximum number of messages you want tKafkaInput to receive before it automatically stops running. |
Stop after maximum time waiting between messages (ms) |
Select this check box and in the pop-up field, enter the waiting time (in milliseconds) by tKafkaInput for a new message. If tKafkaInput does not receive any new message when this waiting time meets its end, it automatically stops running. |
Use SSL/TLS |
Select this check box to enable the SSL or TLS encrypted connection. Then you need to use the tSetKeystore component in the same Job to specify the encryption information. This check box is available since Kafka 0.9.0.1. |
Use Kerberos authentication |
If the Kafka cluster to be used is secured with Kerberos, select this check box to display the related parameters to be defined:
For further information about how a Kafka cluster is secured with Kerberos, see Authenticating using SASL. This check box is available since Kafka 0.9.0.1. |
Advanced settings
Kafka properties |
Add the Kafka consumer properties you need to customize to this table. For example, you can set a specific zookeeper.connection.timeout.ms value to avoid ZkTimeoutException. For further information about the consumer properties you can define in this table, see the section describing the consumer configuration in Kafka's documentation in http://kafka.apache.org/documentation.html#consumerconfigs. |
Timeout precision(ms) |
Enter the time duration in millisecond at the end of which you want a timeout exception to be returned if no message is available for consumption. The value -1 indicates that no timeout is set. |
Load the offset with the message |
Select this check box to output the offsets of the consumed messages to the next component. When selecting it, a read-only column called offset is added to the schema. |
Custom encoding |
You may encounter encoding issues when you process the stored data. In that situation, select this check box to display the Encoding list. Select the encoding from the list or select Custom and define it manually. |
tStatCatcher Statistics |
Select this check box to gather the processing metadata at the Job level as well as at each component level. |
Usage
Usage rule |
This component is used as a start component and requires an output link. When the Kafka topic it needs to use does not exist, it can be used along with the tKafkaCreateTopic component to read the topic created by the latter component. |