Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build 2451 for main with status FAILURE #38663

Closed
elasticmachine opened this issue Mar 27, 2024 · 2 comments
Closed

Build 2451 for main with status FAILURE #38663

elasticmachine opened this issue Mar 27, 2024 · 2 comments
Labels
automation build-failures Build failures in the CI. ci-reported Issues that have been automatically reported from the CI Team:Elastic-Agent-Data-Plane Label for the Agent Data Plane team

Comments

@elasticmachine
Copy link
Collaborator

💔 Tests Failed

the below badges are clickable and redirect to their specific view in the CI or DOCS
Pipeline View Test View Changes Artifacts preview preview

Expand to view the summary

Build stats

  • Start Time: 2024-03-27T15:26:20.899+0000

  • Duration: 136 min 45 sec

Test stats 🧪

Test Results
Failed 25
Passed 29208
Skipped 2060
Total 31293

Test errors 25

Expand to view the tests failures

> Show only the first 10 test failures

Build&Test / metricbeat-pythonIntegTest / test_metricsets_0_stats – metricbeat.module.beat.test_beat.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_beat.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 203898e27f3e_metricbeat_7918a246f6f8_metricbeat_1 (203898)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_1_state – metricbeat.module.beat.test_beat.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_beat.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 203898e27f3e_metricbeat_7918a246f6f8_metricbeat_1 (203898)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_xpack – metricbeat.module.beat.test_beat.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_beat.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 203898e27f3e_metricbeat_7918a246f6f8_metricbeat_1 (203898)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_0_ccr – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_elasticsearch.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 3811d9433c73_metricbeat_7918a246f6f8_elasticsearch_1 (3811d9)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_1_enrich – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_elasticsearch.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 3811d9433c73_metricbeat_7918a246f6f8_elasticsearch_1 (3811d9)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_2_index – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_elasticsearch.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 3811d9433c73_metricbeat_7918a246f6f8_elasticsearch_1 (3811d9)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_3_index_summary – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_elasticsearch.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 3811d9433c73_metricbeat_7918a246f6f8_elasticsearch_1 (3811d9)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_4_ml_job – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_elasticsearch.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 3811d9433c73_metricbeat_7918a246f6f8_elasticsearch_1 (3811d9)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_5_index_recovery – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_elasticsearch.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 3811d9433c73_metricbeat_7918a246f6f8_elasticsearch_1 (3811d9)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_6_node_stats – metricbeat.module.elasticsearch.test_elasticsearch.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_elasticsearch.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 3811d9433c73_metricbeat_7918a246f6f8_elasticsearch_1 (3811d9)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Steps errors 4

Expand to view the steps failures

metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 31 min 38 sec . View more details here
  • Description: mage pythonIntegTest
metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 19 min 26 sec . View more details here
  • Description: mage pythonIntegTest
metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 19 min 27 sec . View more details here
  • Description: mage pythonIntegTest
Error signal
  • Took 0 min 0 sec . View more details here
  • Description: Error "hudson.AbortException: script returned exit code 1"

@elasticmachine elasticmachine added automation build-failures Build failures in the CI. ci-reported Issues that have been automatically reported from the CI Team:Elastic-Agent-Data-Plane Label for the Agent Data Plane team labels Mar 27, 2024
@elasticmachine
Copy link
Collaborator Author

Pinging @elastic/elastic-agent-data-plane (Team:Elastic-Agent-Data-Plane)

@pierrehilbert
Copy link
Collaborator

Same than #38539

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automation build-failures Build failures in the CI. ci-reported Issues that have been automatically reported from the CI Team:Elastic-Agent-Data-Plane Label for the Agent Data Plane team
Projects
None yet
Development

No branches or pull requests

2 participants