increased memory
This commit is contained in:
parent
2e11197142
commit
773346f638
|
@ -114,6 +114,10 @@ public class BaseAnalyzerJob {
|
|||
final long i = recordsCounter.incrementAndGet();
|
||||
if ((i % 10000) == 0) {
|
||||
log.info("# Read records: " + i);
|
||||
log.info("# fields: " + fields.size());
|
||||
log.info("# types: " + types.size());
|
||||
log.info("# collections: " + collections.size());
|
||||
log.info("# totals: " + totals.size());
|
||||
}
|
||||
|
||||
final List<String> recTypes = new ArrayList<>();
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
</property>
|
||||
<property>
|
||||
<name>sparkExecutorMemory</name>
|
||||
<value>6G</value>
|
||||
<value>10G</value>
|
||||
</property>
|
||||
<property>
|
||||
<name>sparkExecutorCores</name>
|
||||
|
|
Loading…
Reference in New Issue