[
https://issues.apache.org/jira/browse/HIVE-24266?focusedWorklogId=500045&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-500045
]
ASF GitHub Bot logged work on HIVE-24266:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 13/Oct/20 13:00
Start Date: 13/Oct/20 13:00
Worklog Time Spent: 10m
Work Description: szlta opened a new pull request #1576:
URL: https://github.com/apache/hive/pull/1576
in HDFS environment if a writer is using hflush to write ORC ACID files
during a transaction commit, the results might be seen as missing when reading
the table before this file is completely persisted to disk (thus synced)
This is due to hflush not persisting the new buffers to disk, it rather just
ensures that new readers can see the new content. This causes the block
information to be incomplete, on which BISplitStrategy relies on. Although the
side file (_flush_length) tracks the proper end of the file that is being
written, this information is neglected in the favour of block information, and
we may end up generating a very short split instead of the larger, available
length.
When ETLSplitStrategy is used there is not even a try to rely on ACID side
file when calculating file length, so that needs to fixed too.
Moreover we might see the newly committed rows not to appear due to OrcTail
caching in ETLSplitStrategy. For now I'm just going to recommend turning that
cache off to anyone that wants real time row updates to be read in:
set hive.orc.cache.stripe.details.mem.size=0;
..as tweaking with that code would probably open a can of worms..
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 500045)
Remaining Estimate: 0h
Time Spent: 10m
> Committed rows in hflush'd ACID files may be missing from query result
> ----------------------------------------------------------------------
>
> Key: HIVE-24266
> URL: https://issues.apache.org/jira/browse/HIVE-24266
> Project: Hive
> Issue Type: Bug
> Reporter: Ádám Szita
> Assignee: Ádám Szita
> Priority: Major
> Time Spent: 10m
> Remaining Estimate: 0h
>
> in HDFS environment if a writer is using hflush to write ORC ACID files
> during a transaction commit, the results might be seen as missing when
> reading the table before this file is completely persisted to disk (thus
> synced)
> This is due to hflush not persisting the new buffers to disk, it rather just
> ensures that new readers can see the new content. This causes the block
> information to be incomplete, on which BISplitStrategy relies on. Although
> the side file (_flush_length) tracks the proper end of the file that is being
> written, this information is neglected in the favour of block information,
> and we may end up generating a very short split instead of the larger,
> available length.
> When ETLSplitStrategy is used there is not even a try to rely on ACID side
> file when calculating file length, so that needs to fixed too.
> Moreover we might see the newly committed rows not to appear due to OrcTail
> caching in ETLSplitStrategy. For now I'm just going to recommend turning that
> cache off to anyone that wants real time row updates to be read in:
> {code:java}
> set hive.orc.cache.stripe.details.mem.size=0; {code}
> ..as tweaking with that code would probably open a can of worms..
--
This message was sent by Atlassian Jira
(v8.3.4#803005)