re nailgun, what controls the number of nailgun se...
# development
f
re nailgun, what controls the number of nailgun servers that are spawned? context: while working on the Java plugin, I see 16
Starting new nailgun server with cmd
log lines which seems excessive.
e
It cribs from local parallelism: https://github.com/pantsbuild/pants/blob/6037e699b881011f845b5f7ad109fa8eae39cc3b/src/rust/engine/src/context.rs#L178-L191 So if 16 normal local Process executions can happen in parallel, a pool is created such that 16 JVM processes can be executed in parallel.
f
ack. that log line is info level, seems chatty then