Hello, I'm using MDCS in my workflow to create, configure mosaic datasets and then populating them with data. I'm running MDCS script in to a machine in which there is ArcMap 10.8 installed.
I've found that the AddRaster command fails because I have to set the parallel processing factor to 0.
I've added in the config file the node inside the node <Processes>:
<Environment>
<parallelProcessingFactor>0</parallelProcessingFactor>
</Environment>
Unfortunately this node seems not be considered by the AR (AddRaster) command of MDCS.
To fix this trouble I have to add the following line code in the python script AddRasters.py:
arcpy.env.parallelProcessingFactor = "0"
Really do I have to modify the original MCDS script to run successfully the AR command ?