keith-turner commented on issue #5087:
URL: https://github.com/apache/accumulo/issues/5087#issuecomment-2489552520

   May be able to fix this with a change like the folowing.  However need to do 
more research on the `fs.listStatus` failure modes to be sure.
   
   ```java
                       FileStatus[] files;
                      try{
                          files = fs.listStatus(new Path(volPath), (path) -> {
                           return path.getName().endsWith(fileSuffix);
                         });
                       }(catch FileNotFoundException e){
                         log.trace("failed to list tablet dir {}", volPath, e);
                         files = new FilesStatus[0];
                      }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to