Andrey Kuznetsov created IMPALA-5862:
----------------------------------------
Summary: IGFS (Ignite FS) support
Key: IMPALA-5862
URL: https://issues.apache.org/jira/browse/IMPALA-5862
Project: IMPALA
Issue Type: Bug
Reporter: Andrey Kuznetsov
Hi team, [~ferus.tigris],
My team has faced with follow issue:
Impala doesn’t work with IGFS because IgniteHadoopFileSystem is not validated
as WritableFilesystem, because IgniteHadoopFileSystem does not extend
org.apache.hadoop.hdfs.DistributedFileSystem and not listed in others
acceptable file systems list:
* Returns true iff the given location is on a filesystem that Impala can
write to.
*/
public static boolean isImpalaWritableFilesystem(String location)
throws IOException {
Path path = new Path(location);
return (FileSystemUtil.isDistributedFileSystem(path) ||
FileSystemUtil.isLocalFileSystem(path) ||
FileSystemUtil.isS3AFileSystem(path) ||
FileSystemUtil.isADLFileSystem(path));
}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)