You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Andrey Kuznetsov (JIRA)" <ji...@apache.org> on 2017/08/30 13:39:00 UTC

[jira] [Created] (IMPALA-5862) IGFS (Ignite FS) support

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)