Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 1.5 KB

quickstartdev.adoc

File metadata and controls

56 lines (43 loc) · 1.5 KB

Quickstart using Bash scripts

Create, start, and stop Kudu cluster using shell scripts

Start Kudu cluster

Create and start Kudu cluster with one master and three tablet servers

cd build/latest
../../src/kudu/scripts/start_kudu.sh

Check Kudu master server web interface

Open in browser: http://localhost:8764/

Generate and load some data into Kudu

./bin/kudu perf loadgen 127.0.0.1:8765 --keep_auto_table=true --num_rows_per_thread=100000 --run_scan=true

Query Kudu servers

./bin/kudu master get_flags 127.0.0.1:8765
./bin/kudu tserver get_flags 127.0.0.1:9870

Stop Kudu cluster

../../src/kudu/scripts/stop_kudu.sh