Doesn't look like there is a JIRA yet:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20IMPALA%20AND%20text%20~%20%22ignite%22

https://issues.apache.org/jira/issues/?jql=project%20%3D%20IMPALA%20AND%20text%20~%20%22igfs%22

You might want to file one as a single point of coordination for
people interested in this work.

On Wed, Aug 30, 2017 at 2:59 AM, Andrey Kuznetsov
<[email protected]> wrote:
> 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

Reply via email to