Hi team,
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));
}
Does anybody know if we plan to support IGFS?
Best regards,
ANDREY KUZNETSOV