[
https://issues.apache.org/jira/browse/IMPALA-11081?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17691983#comment-17691983
]
ASF subversion and git services commented on IMPALA-11081:
----------------------------------------------------------
Commit 47e67afbcaa14d9b72f5bcb48555cce5eb2fb3a5 in impala's branch
refs/heads/master from zhangyifan27
[ https://gitbox.apache.org/repos/asf?p=impala.git;h=47e67afbc ]
IMPALA-11932: skip test_partition_key_scans_with_multiple_blocks_table under
erasure coding
The erasure coding policy used in our test is RS-3-2-1024k, which
requires the block size should not less than 1MB. The test introduced
in IMPALA-11081 use 'dfs.block.size=1024' to create multiple blocks
table, we should skip this test under erasure coding to avoid test
failures.
Change-Id: I0f088102c380df89f56870d901852f7dde2d72fe
Reviewed-on: http://gerrit.cloudera.org:8080/19515
Reviewed-by: Quanlong Huang <[email protected]>
Tested-by: Impala Public Jenkins <[email protected]>
> Partition key scan optimization may return incorrect results when partition
> file have more than one block
> ---------------------------------------------------------------------------------------------------------
>
> Key: IMPALA-11081
> URL: https://issues.apache.org/jira/browse/IMPALA-11081
> Project: IMPALA
> Issue Type: Bug
> Affects Versions: Impala 4.0.0
> Reporter: carolinchen
> Assignee: YifanZhang
> Priority: Critical
> Fix For: Impala 4.3.0
>
>
> In https://issues.apache.org/jira/browse/IMPALA-8834 will only generate one
> scan range for partition key's scan, but it may cause wrong result.
> In this case, when a file with more than one block.
> # The planner will only transforms the first block into TScanRange, which
> does not include footer.
> # The backend can't find the split with the footer, so that can neither
> parse the footer nor do the scan.
> so that the paritition key scan's result will be incorrect.
>
> see this snippet in HdfsScanNode.java:
>
> {code:java}
> private Pair<Boolean, Long> transformBlocksToScanRanges(
> FeFsPartition partition, FileDescriptor fileDesc,
> boolean fsHasBlocks, long scanRangeBytesLimit,
> Analyzer analyzer) {
> for (int i = 0; i < fileDesc.getNumFileBlocks(); ++i) {
> // Only generate one scan range for partition key scans.
> if (isPartitionKeyScan_) break;
> }
> }{code}
> In FE, if file with more than one block do partition key scan,
> transformBlocksToScanRanges will not include footer range.
>
> see this snippet in hdfs-scanner.cc:
>
> {code:java}
> /// Issue just the footer range for each file. This function is only used ///
> in parquet and orc scanners. We'll then parse the footer and pick out /// the
> columns we want.
> Status HdfsScanner::IssueFooterRanges(HdfsScanNodeBase* scan_node,
> const THdfsFileFormat::type& file_type,
> const std::vector<HdfsFileDesc*>& files) {
> // Try to find the split with the footer.
> ScanRange* footer_split = FindFooterSplit(files[i]);
> }{code}
> In BE, there no footer split won't add range to do the scan.
>
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]