Select to view content in your preferred language

Create Spatial Asset Management Catalog - Not populating

547
1
Jump to solution
09-01-2025 07:32 PM
JamesHead-Mears1
Occasional Contributor

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.

0 Kudos
1 Solution

Accepted Solutions
JamesHead-Mears1
Occasional Contributor

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? 

View solution in original post

0 Kudos
1 Reply
JamesHead-Mears1
Occasional Contributor

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? 

0 Kudos