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

Tim Armstrong commented on IMPALA-4631:
---------------------------------------

{noformat}

F0619 02:51:02.015914  9248 runtime-profile-counters.h:321] 
634465dfcb8fe9db:26a226c400000000] Check failed: offset_ >= -3 (-5 vs. -3) 
{noformat}
{noformat}
F0526 02:51:41.276341 14161 fragment-instance-state.cc:330] Check failed: 
other_time <= total_time + 3 (59001395 vs. 59001392) 
{noformat}


> plan-fragment-executor.cc:518] Check failed: other_time <= total_time 
> (25999394 vs. 25999393)
> ---------------------------------------------------------------------------------------------
>
>                 Key: IMPALA-4631
>                 URL: https://issues.apache.org/jira/browse/IMPALA-4631
>             Project: IMPALA
>          Issue Type: Bug
>          Components: Backend
>    Affects Versions: Impala 2.8.0
>            Reporter: Dan Hecht
>            Priority: Major
>              Labels: flaky
>
> This dcheck occasionally fires:
> {code}
> impalad.FATAL:F1201 22:35:58.617157 30293 plan-fragment-executor.cc:518] 
> Check failed: other_time <= total_time (25999394 vs. 25999393)
> {code}
> I suspect the problem is with using floating point operations in places like 
> this:
> {code}
>    timespec ts;
>     clock_gettime(OsInfo::fast_clock(), &ts);
>     return ts.tv_sec * 1e9 + ts.tv_nsec;
> {code}
> and because floating point doesn't distribute, and we can end up with 
> {noformat} c * (a + b) < c * a + c * b {noformat} which is effectively what 
> the dcheck does.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

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

Reply via email to