mirror of https://github.com/apache/kafka.git
Tweaked readme, added example Vagrantfile.local
This commit is contained in:
parent
3d738578d2
commit
f469f84e6d
|
@ -27,8 +27,10 @@ This quickstart will help you run the Kafka system tests on your local machine.
|
||||||
* Setup a testing cluster with Vagrant. Configure your Vagrant setup by creating the file
|
* Setup a testing cluster with Vagrant. Configure your Vagrant setup by creating the file
|
||||||
`Vagrantfile.local` in the directory of your Kafka checkout. At a minimum, you *MUST*
|
`Vagrantfile.local` in the directory of your Kafka checkout. At a minimum, you *MUST*
|
||||||
set `mode = "test"` and the value of `num_workers` high enough for the test(s) you're trying to run.
|
set `mode = "test"` and the value of `num_workers` high enough for the test(s) you're trying to run.
|
||||||
|
An example resides in kafka/vagrant/system-test-Vagrantfile.local
|
||||||
|
|
||||||
# Example Vagrantfile.local for use on local machine
|
# Example Vagrantfile.local for use on local machine
|
||||||
|
# Vagrantfile.local should reside in the base Kafka directory
|
||||||
mode = "test"
|
mode = "test"
|
||||||
num_workers = 9
|
num_workers = 9
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Use this Vagrantfile.local for running system tests
|
||||||
|
mode = "test"
|
||||||
|
num_workers = 9
|
Loading…
Reference in New Issue