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 "Quanlong Huang (Jira)" <ji...@apache.org> on 2022/01/25 07:16:00 UTC

[jira] [Created] (IMPALA-11088) Crash in PeriodicCounterUpdater::UpdateLoop

Quanlong Huang created IMPALA-11088:
---------------------------------------

             Summary: Crash in PeriodicCounterUpdater::UpdateLoop
                 Key: IMPALA-11088
                 URL: https://issues.apache.org/jira/browse/IMPALA-11088
             Project: IMPALA
          Issue Type: Bug
            Reporter: Quanlong Huang
            Assignee: Quanlong Huang


Saw a crash in a CORE run of the master branch:
{code:java}
Operating system: Linux
                  0.0.0 Linux 3.10.0-693.5.2.el7.x86_64 #1 SMP Fri Oct 20 20:32:50 UTC 2017 x86_64
CPU: amd64
     family 6 model 85 stepping 7
     1 CPU


GPU: UNKNOWN


Crash reason:  SIGFPE
Crash address: 0x2a0505a
Process uptime: not available


Thread 3 (crashed)
 0  impalad!impala::PeriodicCounterUpdater::UpdateLoop() [periodic-counter-updater.cc : 157 + 0x23]
 1  impalad!boost::_mfi::mf0<void, impala::PeriodicCounterUpdater>::operator()(impala::PeriodicCounterUpdater*) const [mem_fn_template.hpp : 49 + 0x5]
 2  impalad!void boost::_bi::list1<boost::_bi::value<impala::PeriodicCounterUpdater*> >::operator()<boost::_mfi::mf0<void, impala::PeriodicCounterUpdater>, boost::_bi::list0>(boost::_bi::type<void>, boost::_mfi::mf0<void, impala::PeriodicCounterUpdater>&, boost::_bi::list0&, int) [bind.hpp : 259 + 0x35]
 3  impalad!boost::_bi::bind_t<void, boost::_mfi::mf0<void, impala::PeriodicCounterUpdater>, boost::_bi::list1<boost::_bi::value<impala::PeriodicCounterUpdater*> > >::operator()() [bind.hpp : 1294 + 0x22]
 4  impalad!boost::detail::thread_data<boost::_bi::bind_t<void, boost::_mfi::mf0<void, impala::PeriodicCounterUpdater>, boost::_bi::list1<boost::_bi::value<impala::PeriodicCounterUpdater*> > > >::run() [thread.hpp : 120 + 0x12]
 5  impalad!thread_proxy + 0xa1
 6  libpthread-2.17.so + 0x7e25
 7  libc-2.17.so + 0xf834d {code}
Code snipper:
{code:java}
152           value = it->second.src_counter->value();
153         } else {
154           DCHECK(it->second.sample_fn != NULL);
155           value = it->second.sample_fn();
156         }
157         int64_t rate = value * 1000 / (it->second.elapsed_ms);
158         it->first->Set(rate);
159       }
160     } {code}
elapsed_ms might be 0 in the crash.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

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