Github user blrunner commented on a diff in the pull request:
https://github.com/apache/tajo/pull/772#discussion_r40167828
--- Diff:
tajo-storage/tajo-storage-hdfs/src/main/java/org/apache/tajo/storage/FileTablespace.java
---
@@ -343,7 +343,7 @@ public boolean accept(Path path) {
FileStatus[] matches = fs.globStatus(p, inputFilter);
if (matches == null) {
- errors.add(new IOException("Input path does not exist: " + p));
+ LOG.warn("Input path does not exist: " + p);
} else if (matches.length == 0) {
errors.add(new IOException("Input Pattern " + p + " matches 0
files"));
--- End diff --
If users can easily recognize this case, it doesn't matter.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---