dkangala / hamake

Automatically exported from code.google.com/p/hamake
0 stars 0 forks source link

only first target in the chain executed #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I have a build file with three targets chained "map->map->reduce". see 
test/resources/class-size.xml file

when I run hamake java only first map gets executed.

it is easy to reproduce: 
run "ant test"
check "build/test" directory
it will have only "jar-listings" subdir generated by first map, but not the 
others

Original issue reported on code.google.com by alex.s...@gmail.com on 10 Mar 2010 at 12:37

GoogleCodeExporter commented 9 years ago

Original comment by alex.s...@gmail.com on 11 Mar 2010 at 10:08

GoogleCodeExporter commented 9 years ago

Original comment by alex.s...@gmail.com on 11 Mar 2010 at 10:09

GoogleCodeExporter commented 9 years ago
Issue 5 has been merged into this issue.

Original comment by alex.s...@gmail.com on 16 Mar 2010 at 12:50

GoogleCodeExporter commented 9 years ago
this is happening because user MR tasks call System.exit(). We need to be able 
to handle 
such tasks

one solution is to disable System.exit() with custom SecurityManager. Another 
solution 
is to run each task in separate JVM

Original comment by alex.s...@gmail.com on 16 Mar 2010 at 12:53

GoogleCodeExporter commented 9 years ago
have it been fixed? how?

Original comment by kroko...@gmail.com on 19 Mar 2010 at 4:00

GoogleCodeExporter commented 9 years ago

Original comment by vorl.s...@gmail.com on 23 Mar 2010 at 10:57

GoogleCodeExporter commented 9 years ago
fixed in r103

Original comment by vorl.s...@gmail.com on 23 Mar 2010 at 1:29