Skip to content

Instantly share code, notes, and snippets.

@sunnylbk
sunnylbk / keybase.md
Last active November 16, 2020 13:24
keybase

Keybase proof

I hereby claim:

  • I am sunnylbk on github.
  • I am sunnylbkr (https://keybase.io/sunnylbkr) on keybase.
  • I have a public key ASCvF3dc7QIP5u62fw37HmaEr5k4hG_v0pGqQZKeWy050wo

To claim this, I am signing this object:

@sunnylbk
sunnylbk / kafka_run.sh
Created February 15, 2015 17:35
Run kafka and zoo-keeper in same terminal (Run the two commands separately to start them in different terminals)
$KAFKA/zookeeper-server-start.sh $KAFKA_CONFIG/zookeeper.properties
$KAFKA/kafka-server-start.sh $KAFKA_CONFIG/server.properties
@sunnylbk
sunnylbk / kafka_setup.sh
Created February 15, 2015 17:34
Script to install Kafka-0.8.2 (pre-requisite: sbt)
cd /tmp
wget http://apache.bytenet.in/kafka/0.8.2.0/kafka_2.11-0.8.2.0.tgz
tar -zxvf kafka_2.11-0.8.2.0.tgz -C /usr/local/
cd /usr/local/kafka_2.11-0.8.2.0
sbt update
sbt package
cd /usr/local