diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2011-06-08 22:35:06 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2011-06-08 22:35:06 -0400 |
commit | 572f12ba11cee5ca55f292a89d4c5130f8b261eb (patch) | |
tree | 8595878b5fbaa47fcbaad73a4441a38b1da1e292 /vest | |
parent | dc9cd6987abdfc703f50e924fa9e55dc702d5242 (diff) |
rudimentary support for meteor via an external process. still needs configuration of path, but it should work
Diffstat (limited to 'vest')
-rwxr-xr-x | vest/dist-vest.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vest/dist-vest.pl b/vest/dist-vest.pl index 789b5b14..b7a862c4 100755 --- a/vest/dist-vest.pl +++ b/vest/dist-vest.pl @@ -118,6 +118,8 @@ if ($usefork) { $usefork = "--use-fork"; } else { $usefork = ''; } if ($metric =~ /^(combi|ter)$/i) { $lines_per_mapper = 40; +} elsif ($metric =~ /^meteor$/i) { + $lines_per_mapper = 2000; # start up time is really high } ($iniFile) = @ARGV; |