Tweaked readme, added example Vagrantfile.local

This commit is contained in:
Geoff Anderson 2015-06-15 13:13:17 -07:00
parent 3d738578d2
commit f469f84e6d
2 changed files with 5 additions and 0 deletions

View File

@ -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
`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.
An example resides in kafka/vagrant/system-test-Vagrantfile.local
# Example Vagrantfile.local for use on local machine
# Vagrantfile.local should reside in the base Kafka directory
mode = "test"
num_workers = 9

View File

@ -0,0 +1,3 @@
# Use this Vagrantfile.local for running system tests
mode = "test"
num_workers = 9