It means that the offset you're requesting doesn't exist. Since you're
asking for offset 0, it's likely that that offset has already been expired
and you'll need to ask for a later offset. You can make an offsets request
using the EARLIEST_OFFSET constant to get the earliest offset that still
exist
How do I fix?
In python
for offset, message in brod.Kafka.fetch(kafka,pixel_topic, offset=0):
print message
File
"/usr/local/lib/python2.7/dist-packages/brod-0.3.2-py2.7.egg/brod/blocking.py",
line 70, in _read
return callback(output)
File
"/usr/local/lib/python2.7/dist-packa