The problem URID is referenced in 2 files:
/data/data020/pub/NPP_DATA/TILES/NovGroundCCR692Tiles/with-meta-all/with-meta-all.jasc
/data/data020/pub/NPP_DATA/TILES/NovGroundCCR692Tiles/GridIP-VIIRS-Snow-Ice-Cover-Rolling-Tile_Nov_2012/withMetadata/50c21318-126ef-9b9dea82-ec60c729.asc
As stated previously, the binary file must exist in the same directory as the .jasc or .asc files. The order that files are restored in can change a little because the restoration process uses multiple OpenMP threads to restore files. In the case of the log file you posted, the .jasc was restored first and the binary file was assumed to be in /data/data020/pub/NPP_DATA/TILES/NovGroundCCR692Tiles/with-meta-all/. That is why it says
Code: Select all
2013/10/02 19:01:47.093.262 (21595.47754486797600): DBG_LOW DmCoreFileTools.cpp|267| tid-47754486797600 isFile() /data/data020/pub/NPP_DATA/TILES/NovGroundCCR692Tiles/with-meta-all/50c21318-126ef-9b9dea82-ec60c729.GridIP-VIIRS-Snow-Ice-Cover-Rolling-Tile_20121115000000Z_ee000000000000000_CONST-NPP_VIIRS_4565_STAR-GMSI123200901-474-12-0726.bin not a file: path not found
around line 202786 in your log file.
When /data/data020/pub/NPP_DATA/TILES/NovGroundCCR692Tiles/GridIP-VIIRS-Snow-Ice-Cover-Rolling-Tile_Nov_2012/withMetadata/50c21318-126ef-9b9dea82-ec60c729.asc was restored sometime after the .jasc file, it was determined that URID 50c21318-126ef-9b9dea82-ec60c729 already existed in inventory. However, the metadata was identical, so no error was thrown. A warning was generated at 2340 saying "...Warning: The UR 50c21318-126ef-9b9dea82-ec60c729 already exists in inventory but is identical to the existing copy. This UR was not added."
As for how to fix your issue, your input directory is in a bad state because it has metadata (in the .jasc file), but no binary file in that same directory. So you need to recreate your .jasc file to only contain metadata for instances where you also have a binary file on disk.
If with-meta-all.jasc contains only SnowIce tiles it appears you could use $ADL_HOME/script/createJascFiles.sh to create a .jasc based on /data/data020/pub/NPP_DATA/TILES/NovGroundCCR692Tiles/GridIP-VIIRS-Snow-Ice-Cover-Rolling-Tile_Nov_2012/withMetadata.
If with-meta-all.jasc contains more than SnowIce tiles, you'll need to recreate it some other way.
FYI, while the presence of a .jasc causes .asc files to be ignored in a directory, it is acceptable to have multiple .jasc files in the same directory. So you could have snowIce.jasc and qstLwm.jasc in the same directory for example.