# HG changeset patch # User Jeff Hammel # Date 1498428725 25200 # Node ID 6aaf70296c5a7227f32914dda798de1a1aa04617 # Parent 4583d0d9331adbb08fc184db41441ac1c2822d53 move to supervisor for operations diff -r 4583d0d9331a -r 6aaf70296c5a README.txt --- a/README.txt Sun Jun 25 15:03:54 2017 -0700 +++ b/README.txt Sun Jun 25 15:12:05 2017 -0700 @@ -84,6 +84,11 @@ ## Deployment notes +`supervisor` (http://supervisord.org/) was used to ensure +a continuously running web daemon. The included +`globalneighbors.ini` should be copied to the appropriate +supervisor directory and the service loaded. + - parallelism: the distance calculation is done serially. As such it is a `O(10^10)` operation on the dataset. This should be improved and parallelized diff -r 4583d0d9331a -r 6aaf70296c5a globalneighbors.ini --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/globalneighbors.ini Sun Jun 25 15:12:05 2017 -0700 @@ -0,0 +1,2 @@ +[program:globalneighbors] +command=/home/jhammel/GlobalNeighbors/bin/global-web /home/jhammel/GlobalNeighbors/cities1000.txt \ No newline at end of file