Learn R Programming

rkafka (version 1.4)

rkafka.readFromSimpleConsumer: KAFKA Simple Consumer Reading

Description

This function returns one message at a time which are read by a KAFKA Simple Consumer

Usage

rkafka.readFromSimpleConsumer(SimpleConsumerObj)

Value

String

Arguments

SimpleConsumerObj

Consumer through which messages were received Required:Mandatory Type:Consumer

Author

Shruti Gupta

Details

There are two types of KAFKA consumers:High-Level and Simple. This function receives messages using the Simple Consumer. Use caution on deciding to use the Simple Consumer as it doesn't persist offset.The function rkafka.receiveFromSimpleConsumer needs to be executed before running this function

References

To know when to use simple consumer and when to use High-level Consumer, refer the url below: https://cwiki.apache.org/confluence/display/KAFKA/0.8.0+SimpleConsumer+Example

Examples

Run this code
if (FALSE) {
consumer1=rkafka.createSimpleConsumer("172.25.1.78","9092","10000","100000","test")
rkafka.receiveFromSimpleConsumer(consumer1,"test","0","0","test-group")
print(rkafka.readFromSimpleConsumer(consumer1))
}

Run the code above in your browser using DataLab