I'm using esri's new Spatial Asset Management Toolbox to try and generate an asset catalog. Unfortunatly, it doesn't appear to be populating the table even though I get a successful completion of the tool. Has anyone come across this before?
The documentation mentions that not all raster types are supported. However, I am working with TIFF files and I am also testing it on another folder which has COG_JPEG generated files from the OptimiseRasters tool. Furthermore, I can generate a folderlist though the same toolbox and it lists that there are rasters in that folder.
Solved! Go to Solution.
For anyone else that runs into this issue I had to enable logging to determine that the create_fc.py tool attempts to utilise all logical cores on the machine but the ProcessPoolExecutor (line 678) cannot have more then 61 workers. I had to limit the number of cores to less than this number if the logic in the code tried to use more with the following:
if max_workers >= 60:
logger.warning(f"Max workers capped at 60.")
max_workers = 60
Does anyone know who at ESRI I can provide feedback on this to?
For anyone else that runs into this issue I had to enable logging to determine that the create_fc.py tool attempts to utilise all logical cores on the machine but the ProcessPoolExecutor (line 678) cannot have more then 61 workers. I had to limit the number of cores to less than this number if the logic in the code tried to use more with the following:
if max_workers >= 60:
logger.warning(f"Max workers capped at 60.")
max_workers = 60
Does anyone know who at ESRI I can provide feedback on this to?