Re: migrating log data to new locations

2014-10-08 Thread Javier Alba
t possible to perform this migration without losing the data > > > currently > > > > stored in the kafka cluster? > > > > > > > > Though I haven't tested this, the way this is designed should allow you > > > to > > >

migrating log data to new locations

2014-10-07 Thread Javier Alba
Hi, I have a Kafka 0.8.1.1 cluster consisting in 4 servers with several topics on it. The cluster was initially configured to store kafka log data in a single directory on each server (log.dirs = /tmp/kafka-logs) Now, I have assigned 3 new disks to each server and I would like to use them to

Re: Embedding a Kafka 0.8 broker for testing

2013-12-14 Thread Javier Alba
Thanks for your responses! I could finally solve the issue (I used something like this https://gist.github.com/fjavieralba/7930018) Your references will be of great help, thanks! -- Javier Alba On Thursday, 12 de December de 2013 at 19:11, Jason Rosenberg wrote: > This is something we

Embedding a Kafka 0.8 broker for testing

2013-12-12 Thread Javier Alba
Hi, I would like to embed a Kafka broker in my Java program, for testing purposes. The idea is being capable of running a Junit test that starts a local kafka broker, and then perform tests on some custom producers and consumers. After searching around, I've found some pieces of code but none of