I have a python 3 script that grabs a set of 3500 rasters and mosaics them using the Mosaic to New Raster tool.
At the start of my script I have set the parallel processing environment setting to 100%
arcpy.env.parallelProcessingFactor = "100%"
The machine I am running has 20 virtual processors and 64 GB of RAM.
I'm only getting 6% CPU utilization and only 8 GB of RAM usage. My understanding is that using parallel processing at 100% would use all the cores. Is there something obvious I'm missing or need to change to make the script run faster?
