-
-
Save lucentcosmos/d48bd66350bed6b9b9e94e151157b429 to your computer and use it in GitHub Desktop.
Embedding Kafka+Zookeeper for testing purposes.
Tested with Apache Kafka 0.8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.IOException; | |
import java.util.Properties; | |
import kafka.server.KafkaConfig; | |
import kafka.server.KafkaServerStartable; | |
public class KafkaLocal { | |
public KafkaServerStartable kafka; | |
public ZooKeeperLocal zookeeper; | |
public KafkaLocal(Properties kafkaProperties, Properties zkProperties) throws IOException, InterruptedException{ | |
KafkaConfig kafkaConfig = new KafkaConfig(kafkaProperties); | |
//start local zookeeper | |
System.out.println("starting local zookeeper..."); | |
zookeeper = new ZooKeeperLocal(zkProperties); | |
System.out.println("done"); | |
//start local kafka broker | |
kafka = new KafkaServerStartable(kafkaConfig); | |
System.out.println("starting local kafka broker..."); | |
kafka.startup(); | |
System.out.println("done"); | |
} | |
public void stop(){ | |
//stop kafka broker | |
System.out.println("stopping kafka..."); | |
kafka.shutdown(); | |
System.out.println("done"); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyTest { | |
static KafkaLocal kafka; | |
@BeforeClass | |
public static void startKafka(){ | |
Properties kafkaProperties = new Properties(); | |
Properties zkProperties = new Properties(); | |
try { | |
//load properties | |
kafkaProperties.load(Class.class.getResourceAsStream("/kafkalocal.properties")); | |
zkProperties.load(Class.class.getResourceAsStream("/zklocal.properties")); | |
//start kafka | |
kafka = new KafkaLocal(kafkaProperties, zkProperties); | |
Thread.sleep(5000); | |
} catch (Exception e){ | |
e.printStackTrace(System.out); | |
fail("Error running local Kafka broker"); | |
e.printStackTrace(System.out); | |
} | |
//do other things | |
} | |
@Test | |
public void testSomething() { | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import java.util.Properties; | |
import org.apache.zookeeper.server.ServerConfig; | |
import org.apache.zookeeper.server.ZooKeeperServerMain; | |
import org.apache.zookeeper.server.quorum.QuorumPeerConfig; | |
public class ZooKeeperLocal { | |
ZooKeeperServerMain zooKeeperServer; | |
public ZooKeeperLocal(Properties zkProperties) throws FileNotFoundException, IOException{ | |
QuorumPeerConfig quorumConfiguration = new QuorumPeerConfig(); | |
try { | |
quorumConfiguration.parseProperties(zkProperties); | |
} catch(Exception e) { | |
throw new RuntimeException(e); | |
} | |
zooKeeperServer = new ZooKeeperServerMain(); | |
final ServerConfig configuration = new ServerConfig(); | |
configuration.readFrom(quorumConfiguration); | |
new Thread() { | |
public void run() { | |
try { | |
zooKeeperServer.runFromConfig(configuration); | |
} catch (IOException e) { | |
System.out.println("ZooKeeper Failed"); | |
e.printStackTrace(System.err); | |
} | |
} | |
}.start(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment