mirror of
https://github.com/apache/druid.git
synced 2025-02-15 14:34:57 +00:00
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
mkdir -p logs
|
|
source env-cluster.sh
|
|
|
|
(
|
|
cd firehose
|
|
bin/start-firehose.sh -rate $FIREHOSE_RATE_PER_SEC -zk "$ZK_CONNECT_STRING" -out kafka -topic $KAFKA_TOPIC >> ../logs/firehose.log 2>&1 &
|
|
)
|