Skip to content

chore(deps): update scylladb/cql-stress docker tag to v0.3.0#15184

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/scylladb-cql-stress-0.x
Open

chore(deps): update scylladb/cql-stress docker tag to v0.3.0#15184
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/scylladb-cql-stress-0.x

Conversation

@renovate

@renovate renovate Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change
scylladb/cql-stress minor 0.2.90.3.0

Release Notes

scylladb/cql-stress (scylladb/cql-stress)

v0.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: scylladb/cql-stress@v0.2.9...v0.3.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

| datasource | package             | from  | to    |
| ---------- | ------------------- | ----- | ----- |
| docker     | scylladb/cql-stress | 0.2.9 | 0.3.0 |
@renovate renovate Bot added the backport/none Backport is not required label Jun 23, 2026
@renovate renovate Bot requested a review from fruch as a code owner June 23, 2026 20:58
@renovate renovate Bot added dependencies Pull requests that update a dependency file renovate test-integration Enable running the integration tests suite labels Jun 23, 2026
@scylladb-promoter

Copy link
Copy Markdown
Collaborator

❌ Test Summary: FAILED

✅ Precommit: PASSED

Total Passed Failed Skipped
26 15 0 11

❌ Tests: FAILED

Total Passed Failed Errors Skipped
3905 3852 1 0 52

Failed Tests

integration.test_latte_thread.test_03_latte_run

Type: FAILURE
Message: assert 'sct_latte_user_gauge' in '# HELP python_gc_objects_collected_total Objects collected during gc\n# TYPE python_gc_objects_collected_total counter\npython_gc_objects_collected_total{generation="0"} 0.0\npython_gc_objects_collected_total{generation="1"} 803319.0\npython_gc_objects_collected_total{generation="2"} 0.0\n# HELP python_gc_objects_uncollectable_total Uncollectable object found during GC\n# TYPE python_gc_objects_uncollectable_total counter\npython_gc_objects_uncollectable_total{generation="0"} 0.0\npython_gc_objects_uncollectable_total{generation="1"} 0.0\npython_gc_objects_uncollectable_total{generation="2"} 0.0\n# HELP python_gc_collections_total Number of times this generation was collected\n# TYPE python_gc_collections_total counter\npython_gc_collections_total{generation="0"} 0.0\npython_gc_collections_total{generation="1"} 1832.0\npython_gc_collections_total{generation="2"} 0.0\n# HELP python_info Python platform information\n# TYPE python_info gauge\npython_info{implementation="CPython",major="3",minor="14",patchlevel="0",version="3.14.0"} 1.0\n# HELP process_virtual_memory_bytes Virtual memory size in bytes.\n# TYPE process_virtual_memory_bytes gauge\nprocess_virtual_memory_bytes 2.293141504e+09\n# HELP process_resident_memory_bytes Resident memory size in bytes.\n# TYPE process_resident_memory_bytes gauge\nprocess_resident_memory_bytes 8.74594304e+08\n# HELP process_start_time_seconds Start time of the process since unix epoch in seconds.\n# TYPE process_start_time_seconds gauge\nprocess_start_time_seconds 1.78224922708e+09\n# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds.\n# TYPE process_cpu_seconds_total counter\nprocess_cpu_seconds_total 35.949999999999996\n# HELP process_open_fds Number of open file descriptors.\n# TYPE process_open_fds gauge\nprocess_open_fds 73.0\n# HELP process_max_fds Maximum number of open file descriptors.\n# TYPE process_max_fds gauge\nprocess_max_fds 65536.0\n'

Traceback
request = <FixtureRequest for <Function test_03_latte_run>>
docker_scylla = <sdcm.utils.docker_remote.RemoteDocker object at 0x76c66fd7a0d0>
prom_address = '10.4.3.101:37353'
params = SCTConfiguration(perf_simple_query_extra_command=None, force_run_iotune=None, data_volume_disk_throughput=None, multi_...d_regions=['eu-west-1', 'eu-west-2', 'eu-west-3', 'us-west-2', 'us-east-1', 'us-east-2', 'eu-north-1', 'eu-central-1'])

    @pytest.mark.integration
    def test_03_latte_run(request, docker_scylla, prom_address, params):
        params["enable_argus"] = False
        loader_set = LocalLoaderSetDummy(params=params)
    
        cmd = "latte run --function run -d 10s docker/latte/workloads/workload.rn --generate-report"
    
        latte_thread = LatteStressThread(loader_set, cmd, node_list=[docker_scylla], timeout=5, params=params)
    
        def cleanup_thread():
            latte_thread.kill()
    
        request.addfinalizer(cleanup_thread)
    
        latte_thread.run()
    
        @timeout(timeout=60)
        def check_metrics():
            output = requests.get(f"http://{prom_address}/metrics").text
            assert "sct_latte_user_gauge" in output
    
            regex = re.compile(r"^sct_latte_user_gauge.*?([0-9\.]*?)$", re.MULTILINE)
            matches = regex.findall(output)
            assert all(float(i) > 0 for i in matches), output
    
>       check_metrics()

unit_tests/integration/test_latte_thread.py:90: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
sdcm/utils/decorators.py:79: in inner
    return func(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    @timeout(timeout=60)
    def check_metrics():
        output = requests.get(f"http://{prom_address}/metrics").text
>       assert "sct_latte_user_gauge" in output
E       assert 'sct_latte_user_gauge' in '# HELP python_gc_objects_collected_total Objects collected during 

Full build log

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport/none Backport is not required dependencies Pull requests that update a dependency file renovate test-integration Enable running the integration tests suite

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant