Re: Creating topic partitions automatically using python

2017-02-26 Thread VIVEK KUMAR MISHRA 13BIT0066
There is one partition class in pykafka package in partition.py .Could you please tell me how to use that class. On Fri, Feb 24, 2017 at 12:36 AM, Jeff Widman wrote: > This is probably a better fit for the pykafka issue tracker. > > AFAIK, there's no public kafka API for creating partitions righ

Re: Creating topic partitions automatically using python

2017-02-23 Thread Jeff Widman
This is probably a better fit for the pykafka issue tracker. AFAIK, there's no public kafka API for creating partitions right now, so pykafka is likely hacking around this by calling out to internal Java APIs, so it will be brittle On Thu, Feb 23, 2017 at 5:13 AM, VIVEK KUMAR MISHRA 13BIT0066 < v

Creating topic partitions automatically using python

2017-02-23 Thread VIVEK KUMAR MISHRA 13BIT0066
Hi All, I am trying to create partitions automatically using python script instead of doing the same through terminal. I am using partition class of pykafka package to do so and kafka_2.11-0.9.0.0,but I am not getting the desired output, only one partition is getting created. Please do suggest me