【发布时间】:2015-10-28 18:53:24
【问题描述】:
API 文档在这里:http://kafka-python.readthedocs.org/en/latest/apidoc/kafka.consumer.html
但是当我运行下面的代码时,异常是%d format: a number is required, not NoneType
client = KafkaClient("localhost:9092")
consumer = SimpleConsumer(client, "test-group", "test")
consumer.seek(0, whence=None)# (0,2) and (0,0)
run = True
while( run ):
message = consumer.get_message(block=False, timeout=4000)
except Exception as e:
print "Exception while trying to read msg:", str(e)
当我使用下面这段代码时,异常是 seek() got an unexpected keyword argument 'partition'
consumer.seek(0, whence=None, partition=None)# (0,2) and (0,0)
有什么想法吗?谢谢。
【问题讨论】:
标签: python apache-kafka kafka-consumer-api kafka-python