You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues-all@impala.apache.org by "Tim Armstrong (Jira)" <ji...@apache.org> on 2020/08/17 16:11:00 UTC

[jira] [Comment Edited] (IMPALA-10087) IMPALA-6050 causes alluxio not to be supported

    [ https://issues.apache.org/jira/browse/IMPALA-10087?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17179090#comment-17179090 ] 

Tim Armstrong edited comment on IMPALA-10087 at 8/17/20, 4:10 PM:
------------------------------------------------------------------

Hi [~abeltian] we never actually have claimed support for Alluxio (we haven't set up any test infra and nobody in the community as far as I'm aware has reached out about this).

Can you elaborate more on what configuration you're running and how to reproduce this?

Are you saying that the Alluxio URLs have a different prefix?


was (Author: tarmstrong):
Hi [~abeltian] we never actually have claimed support for Alluxio and nobody in the community as far as I'm aware has reached out about this.

Can you elaborate more on what configuration you're running and how to reproduce this?

Are you saying that the Alluxio URLs have a different prefix?

>  IMPALA-6050 causes alluxio not to be supported
> -----------------------------------------------
>
>                 Key: IMPALA-10087
>                 URL: https://issues.apache.org/jira/browse/IMPALA-10087
>             Project: IMPALA
>          Issue Type: Bug
>          Components: Frontend
>    Affects Versions: Impala 3.3.0, Impala 3.4.0
>            Reporter: abeltian
>            Priority: Major
>
> IMPALA-6050 causes alluxio not to be supported.
> {code:java}
> if (sampledFiles != null) {
>     numPartitionsPerFs_ = sampledFiles.keySet().stream().collect(Collectors.groupingBy(
>         SampledPartitionMetadata::getPartitionFsType, Collectors.counting()));    
> } else {
>   numPartitionsPerFs_.putAll(partitions_.stream().collect(  
>       Collectors.groupingBy(FeFsPartition::getFsType, Collectors.counting())));
> }{code}
> {code:java}
> public enum FsType {
>     ADLS,
>     HDFS,
>     LOCAL,
>     S3,
>     OZONE;
> private static final Map<String, FsType> SCHEME_TO_FS_MAPPING =
>     ImmutableMap.<String, FsType>builder()
>        .put("abfs", ADLS)
>        .put("abfss", ADLS)
>        .put("adl", ADLS)
>        .put("file", LOCAL)
>        .put("hdfs", HDFS)
>        .put("s3a", S3) 
>        .put("o3fs", OZONE)
>        .build();{code}
> {code:java}
> 10:58:47.793 AM INFO cc:288 10:58:47.793 AM INFO cc:288 0543f5853d94c127:7a4e836900000000] java.lang.NullPointerException: element cannot be mapped to a null key
>  at java.util.Objects.requireNonNull(Objects.java:228) at java.util.stream.Collectors.lambda$groupingBy$45(Collectors.java:907)
>  at java.util.stream.ReduceOps$3ReducingSink.accept(ReduceOps.java:169) at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382)
>  at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481) at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)
>  at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
>  at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499) at org.apache.impala.planner.HdfsScanNode.computeScanRangeLocations(HdfsScanNode.java:822)
>  at org.apache.impala.planner.HdfsScanNode.init(HdfsScanNode.java:381)
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-all-unsubscribe@impala.apache.org
For additional commands, e-mail: issues-all-help@impala.apache.org