summaryrefslogtreecommitdiffstats
path: root/docker/kafka/start_kafka.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/kafka/start_kafka.sh')
-rwxr-xr-xdocker/kafka/start_kafka.sh13
1 files changed, 11 insertions, 2 deletions
diff --git a/docker/kafka/start_kafka.sh b/docker/kafka/start_kafka.sh
index 41388c46..abde2d13 100755
--- a/docker/kafka/start_kafka.sh
+++ b/docker/kafka/start_kafka.sh
@@ -13,6 +13,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-zookeeper-server start
-kafka_2.11-1.0.0/bin/kafka-server-start.sh kafka_2.11-1.0.0/config/server.properties > kafka_2.11-1.0.0/kafka.log 2>&1
+if [ -n "$broker_id" ]
+then
+ sed -i "s/broker.id=0/broker.id=$broker_id/" \
+ kafka_2.11-1.0.0/config/server.properties
+fi
+if [ -n "$zookeeper_node" ]
+then
+ sed -i "s/localhost:2181/$zookeeper_node:2181/" \
+ kafka_2.11-1.0.0/config/server.properties
+fi
+kafka_2.11-1.0.0/bin/kafka-server-start.sh kafka_2.11-1.0.0/config/server.properties > kafka_2.11-1.0.0/kafka.log 2>&1