GWT 2.7 - Xmx with localWorkers flag and <collapse-all-properties />

483 views Asked by At

Query 1 - If we have set -Xmx12288m in extraJvmArgs and set localWorkers flag to 4. Will this allot 12Gigs to each thread or split the 12 gigs into 3gigs each for the 4 threads?

Query 2 - If we use <collapse-all-properties /> then will the compiler still use 4 threads from localWorkers for single permutation? ( Not likely as per documentation )

1

There are 1 answers

1
geert3 On BEST ANSWER

1) it's the maximum heap space so it's split over your threads, on a per need basis (not necessarily 3/3/3/3)

2) not sure, suggest you try it. collapse-all-properties will produce a single output file, but I'm not sure if that means that only single permutation is computed (skipping the need for localWorkers) or that still several permutations are computed but merged into one file. Any case, if localWorkers=4 won't help, it won't hurt either.