You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Taras Bobrovytsky (JIRA)" <ji...@apache.org> on 2017/11/16 03:00:00 UTC

[jira] [Created] (IMPALA-6198) Error starting cluster for a custom cluster test on a release build

Taras Bobrovytsky created IMPALA-6198:
-----------------------------------------

             Summary: Error starting cluster for a custom cluster test on a release build
                 Key: IMPALA-6198
                 URL: https://issues.apache.org/jira/browse/IMPALA-6198
             Project: IMPALA
          Issue Type: Bug
          Components: Infrastructure
    Affects Versions: Impala 2.11.0
            Reporter: Taras Bobrovytsky
            Priority: Blocker


We see the following failure on a release exhaustive build:
{code}
self = <test_catalog_wait.TestCatalogWait object at 0x54af950>

    @pytest.mark.execute_serially
    def test_delayed_catalog(self):
      """ Tests client interactions with the cluster when one of the daemons,
            impalad[2], is delayed in initializing its local catalog replica."""
    
      # On startup, expect only two executors to be registered.
      self._start_impala_cluster(["--catalog_init_delays=0,0,200000"],
>                                expected_num_executors=2)

custom_cluster/test_catalog_wait.py:48: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
common/custom_cluster_test_suite.py:135: in _start_impala_cluster
    check_call(cmd + options, close_fds=True)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

popenargs = (['/data/jenkins/workspace/impala-umbrella-build-and-test/repos/Impala/bin/start-impala-cluster.py', '--cluster_size=3...umbrella-build-and-test/repos/Impala/logs/custom_cluster_tests', '--log_level=1', '--catalog_init_delays=0,0,200000'],)
kwargs = {'close_fds': True}, retcode = 1
cmd = ['/data/jenkins/workspace/impala-umbrella-build-and-test/repos/Impala/bin/start-impala-cluster.py', '--cluster_size=3'...a-umbrella-build-and-test/repos/Impala/logs/custom_cluster_tests', '--log_level=1', '--catalog_init_delays=0,0,200000']

    def check_call(*popenargs, **kwargs):
        """Run command with arguments.  Wait for command to complete.  If
        the exit code was zero then return, otherwise raise
        CalledProcessError.  The CalledProcessError object will have the
        return code in the returncode attribute.
    
        The arguments are the same as for the Popen constructor.  Example:
    
        check_call(["ls", "-l"])
        """
        retcode = call(*popenargs, **kwargs)
        cmd = kwargs.get("args")
        if cmd is None:
            cmd = popenargs[0]
        if retcode:
>           raise CalledProcessError(retcode, cmd)
E           CalledProcessError: Command '['/data/jenkins/workspace/impala-umbrella-build-and-test/repos/Impala/bin/start-impala-cluster.py', '--cluster_size=3', '--num_coordinators=3', '--log_dir=/data/jenkins/workspace/impala-umbrella-build-and-test/repos/Impala/logs/custom_cluster_tests', '--log_level=1', '--catalog_init_delays=0,0,200000']' returned non-zero exit status 1
{code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)