forked from husky-team/husky
-
Notifications
You must be signed in to change notification settings - Fork 0
Config How to
YANG Fan edited this page Sep 12, 2016
·
1 revision
Here is a short example.
# Required
master_host=master
master_port=10086
comm_port=12306
# Worker information
[worker]
info=worker1:4
info=worker2:4
The example above shows all parameters required by Husky itself. Master will run on a machine named "master". 8 threads will be started, 4 on worker1, and another 4 on worker2. Master listens to 10086, and workers listen to 12306. To run Husky with this configuration, please do the following,
./program --conf=/path/to/config.ini
If Husky is compiled with HDFS support, one may want to provide HDFS information as well. For example, the following in the configuration file tells Husky the host and port of the HDFS namenode.
hdfs_namenode=master
hdfs_namenode_port=9000
You may also pass the arguments in the command line. For example,
./program --conf=/path/to/config.ini --hdfs_namenode=master --hdfs_namenode_port=9000
Arguments in the command line will override those specified in the configuration file.