Maybe 6, yes. For Ni it's also important to have a high enough mesh cut-off, at least above 200 Ry.
But before getting into that, you have another big problem that must be solved first. The calculation is not running properly in parallel; all nodes think they are master nodes, as can be seen from the fact that you have multiple output in the log file (each node writes the same information to the log file). In addition to messing up the log file, which is a small problem, this also means that the calculation is not running as fast as it would with proper parallelization.
Are you using OpenMPI? That doesn't work, you must use an MPICH2-compatible MPI-library.
To check that the parallelization runs properly, you should run a small test script with the contents
from ATK.MPI import processIsMaster
if processIsMaster():
print 'Master node'
else:
print 'Slave node'
If you run this on your current setup, you will see all nodes printing "Master node", whereas the proper output is "Master" once and only once, and several "Slave".