You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.
consumer = topic.get_balanced_consumer() # all default parameters... 3 balanced consumer
while True:
try:
for message in consumer:
ii+=1
msgraw = consumer.consume()
msg = msgraw.value.decode('utf8')
msg = json.loads(msg)
.... #very fast process
producer.produce(json_data)
except Exception as e :
print(e)
What happens :
0 min - 5 mins : Input flow is same Kafka server (test server with fixed flow).
After 5 mins: Almost half of the expected.
Just wondering if you have done some tests to see the consuming flow is matching kafka output ?
Is 1/2 of the flow matching anything in consumer config ?
Can we re-open this issue ?
The text was updated successfully, but these errors were encountered:
Hello,
We are using normal code as follow :
#781
What happens :
0 min - 5 mins : Input flow is same Kafka server (test server with fixed flow).
After 5 mins: Almost half of the expected.
Just wondering if you have done some tests to see the consuming flow is matching kafka output ?
Is 1/2 of the flow matching anything in consumer config ?
Can we re-open this issue ?
The text was updated successfully, but these errors were encountered: