You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Andrew Sherman (JIRA)" <ji...@apache.org> on 2019/02/12 18:49:00 UTC

[jira] [Created] (IMPALA-8190) Query on kudu table failed with 'Network error: recv error from 0.0.0.0:0: Transport endpoint is not connected (error 107)'

Andrew Sherman created IMPALA-8190:
--------------------------------------

             Summary: Query on kudu table failed with 'Network error: recv error from 0.0.0.0:0: Transport endpoint is not connected (error 107)'
                 Key: IMPALA-8190
                 URL: https://issues.apache.org/jira/browse/IMPALA-8190
             Project: IMPALA
          Issue Type: Bug
            Reporter: Andrew Sherman


query_test.test_exprs.TestExprs.test_exprs failed, apparently because the impalad could not communicate with kudu

{quote}
I0212 00:31:23.577960 19873 query-state.cc:624] 9d4b9e304c9e5939:875e611d00000002] Executing instance. instance_id=9d4b9e304c9e5939:875e611d00000002 fragment_idx=3 per_fragment_instance_idx=0 coord_state_idx=1 #in-flight=6
I0212 00:31:23.590092 19842 query-state.cc:632] 1040c1d1f33cc9b8:72e8231d00000003] Instance completed. instance_id=1040c1d1f33cc9b8:72e8231d00000003 #in-flight=5 status=OK
I0212 00:31:23.603977 19354 stopwatch.h:190] bb48cb270b9b0b6c:68821dde00000003] WARNING: time went backwards from 40193644228664 to 40193644228661
I0212 00:31:23.627945 19873 query-state.cc:632] 9d4b9e304c9e5939:875e611d00000002] Instance completed. instance_id=9d4b9e304c9e5939:875e611d00000002 #in-flight=4 status=OK
I0212 00:31:23.628665 19876 krpc-data-stream-mgr.cc:294] 9d4b9e304c9e5939:875e611d00000003] DeregisterRecvr(): fragment_instance_id=9d4b9e304c9e5939:875e611d00000003, node=4
I0212 00:31:23.636126 19354 stopwatch.h:190] bb48cb270b9b0b6c:68821dde00000003] WARNING: time went backwards from 40193676228721 to 40193676228718
I0212 00:31:23.650511 19871 client-internal.cc:219] 9d4b9e304c9e5939:875e611d00000001] Unable to send the request (table { table_name: "impala::functional_kudu.alltypes" }) to leader Master (localhost:7051): Network error: recv error from 0.0.0.0:0: Transport endpoint is not connected (error 107)
I0212 00:31:23.831434 19354 stopwatch.h:190] bb48cb270b9b0b6c:68821dde00000003] WARNING: time went backwards from 40193872229014 to 40193872229013
I0212 00:31:23.831465 19354 stopwatch.h:190] bb48cb270b9b0b6c:68821dde00000003] WARNING: time went backwards from 40193872229014 to 40193872229013
I0212 00:31:23.872483  9184 krpc-data-stream-mgr.cc:408] Reduced stream ID cache from 953 items, to 897, eviction took: 0
I0212 00:31:24.273738 19871 status.cc:124] 9d4b9e304c9e5939:875e611d00000001] Unable to open Kudu table: Network error: recv error from 0.0.0.0:0: Transport endpoint is not connected (error 107)
    @          0x1a612f6  impala::Status::Status()
    @          0x23b28e0  impala::KuduScanNodeBase::Open()
    @          0x23ae8c9  impala::KuduScanNode::Open()
    @          0x1f4f0b3  impala::FragmentInstanceState::Open()
    @          0x1f4bd77  impala::FragmentInstanceState::Exec()
    @          0x1f5f35d  impala::QueryState::ExecFInstance()
    @          0x1f5d63f  _ZZN6impala10QueryState15StartFInstancesEvENKUlvE_clEv
    @          0x1f6079e  _ZN5boost6detail8function26void_function_obj_invoker0IZN6impala10QueryState15StartFInstancesEvEUlvE_vE6invokeERNS1_15function_bufferE
    @          0x1d736b5  boost::function0<>::operator()()
    @          0x22202a2  impala::Thread::SuperviseThread()
    @          0x2228626  boost::_bi::list5<>::operator()<>()
    @          0x222854a  boost::_bi::bind_t<>::operator()()
    @          0x222850d  boost::detail::thread_data<>::run()
    @          0x3711249  thread_proxy
    @       0x3accc07850  (unknown)
    @       0x3acc8e894c  (unknown)
I0212 00:31:24.274066 19871 query-state.cc:632] 9d4b9e304c9e5939:875e611d00000001] Instance completed. instance_id=9d4b9e304c9e5939:875e611d00000001 #in-flight=3 status=GENERAL: Unable to open Kudu table: Network error: recv error from 0.0.0.0:0: Transport endpoint is not connected (error 107)
{quote}

There was a similar error in [IMPALA-8112]

Test failure was:

{quote}
query_test.test_exprs.TestExprs.test_exprs[protocol: beeswax | exec_option: {'batch_size': 0, 'num_nodes': 0, 'disable_codegen_rows_threshold': 0, 'disable_codegen': True, 'abort_on_error': 1, 'exec_single_node_rows_threshold': 0} | table_format: seq/gzip/block | enable_expr_rewrites: 1] (from pytest)

Failing for the past 1 build (Since Failed#257 )
Took 1 min 3 sec.
add description
Error Message
query_test/test_exprs.py:58: in test_exprs     self.run_test_case('QueryTest/exprs', vector) common/impala_test_suite.py:472: in run_test_case     result = self.__execute_query(target_impalad_client, query, user=user) common/impala_test_suite.py:699: in __execute_query     return impalad_client.execute(query, user=user) common/impala_connection.py:174: in execute     return self.__beeswax_client.execute(sql_stmt, user=user) beeswax/impala_beeswax.py:183: in execute     handle = self.__execute_query(query_string.strip(), user=user) beeswax/impala_beeswax.py:360: in __execute_query     self.wait_for_finished(handle) beeswax/impala_beeswax.py:381: in wait_for_finished     raise ImpalaBeeswaxException("Query aborted:" + error_log, None) E   ImpalaBeeswaxException: ImpalaBeeswaxException: E    Query aborted:Unable to open Kudu table: Network error: recv error from 0.0.0.0:0: Transport endpoint is not connected (error 107)
Stacktrace
query_test/test_exprs.py:58: in test_exprs
    self.run_test_case('QueryTest/exprs', vector)
common/impala_test_suite.py:472: in run_test_case
    result = self.__execute_query(target_impalad_client, query, user=user)
common/impala_test_suite.py:699: in __execute_query
    return impalad_client.execute(query, user=user)
common/impala_connection.py:174: in execute
    return self.__beeswax_client.execute(sql_stmt, user=user)
beeswax/impala_beeswax.py:183: in execute
    handle = self.__execute_query(query_string.strip(), user=user)
beeswax/impala_beeswax.py:360: in __execute_query
    self.wait_for_finished(handle)
beeswax/impala_beeswax.py:381: in wait_for_finished
    raise ImpalaBeeswaxException("Query aborted:" + error_log, None)
E   ImpalaBeeswaxException: ImpalaBeeswaxException:
E    Query aborted:Unable to open Kudu table: Network error: recv error from 0.0.0.0:0: Transport endpoint is not connected (error 107)
{quote}
 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)