m1a2st commented on PR #20899:
URL: https://github.com/apache/kafka/pull/20899#issuecomment-3540102939

   Test result: 
   ```
   
====================================================================================================
   SESSION REPORT (ALL TESTS)
   ducktape version: 0.12.0
   session_id:       2025-11-16--001
   run time:         264 minutes 13.879 seconds
   tests run:        117
   passed:           115
   flaky:            0
   failed:           1
   ignored:          1
   
====================================================================================================
   
====================================================================================================
   SESSION REPORT (ALL TESTS)
   ducktape version: 0.12.0
   session_id:       2025-11-16--001
   run time:         264 minutes 13.879 seconds
   tests run:        117
   passed:           115
   flaky:            0
   failed:           1
   ignored:          1
   
====================================================================================================
   
----------------------------------------------------------------------------------------------------
   test_id:    
kafkatest.tests.core.network_degrade_test.NetworkDegradeTest.test_rate.task_name=rate-1000-latency-50.device_name=eth0.latency_ms=50.rate_limit_kbit=1000000.metadata_quorum=COMBINED_KRAFT
   status:     FAIL
   run time:   57.895 seconds
   
   
       AssertionError('Expected most of the measured rates to be within an 
order of magnitude of target 1000000. This means `tc` did not limit the 
bandwidth as expected.')
   Traceback (most recent call last):
     File 
"/usr/local/lib/python3.10/dist-packages/ducktape/tests/runner_client.py", line 
351, in _do_run
       data = self.run_test()
     File 
"/usr/local/lib/python3.10/dist-packages/ducktape/tests/runner_client.py", line 
411, in run_test
       return self.test_context.function(self.test)
     File "/usr/local/lib/python3.10/dist-packages/ducktape/mark/_mark.py", 
line 438, in wrapper
       return functools.partial(f, *args, **kwargs)(*w_args, **w_kwargs)
     File "/opt/kafka-dev/tests/kafkatest/tests/core/network_degrade_test.py", 
line 146, in test_rate
       assert len(acceptable_rates) > 5, msg
   AssertionError: Expected most of the measured rates to be within an order of 
magnitude of target 1000000. This means `tc` did not limit the bandwidth as 
expected.
   
   
----------------------------------------------------------------------------------------------------
   
====================================================================================================
   SESSION REPORT (ALL TESTS)
   ducktape version: 0.12.0
   session_id:       2025-11-16--001
   run time:         270 minutes 5.300 seconds
   tests run:        117
   passed:           116
   flaky:            0
   failed:           0
   ignored:          1
   
====================================================================================================
   
====================================================================================================
   SESSION REPORT (ALL TESTS)
   ducktape version: 0.12.0
   session_id:       2025-11-16--001
   run time:         254 minutes 57.627 seconds
   tests run:        117
   passed:           117
   flaky:            0
   failed:           0
   ignored:          0
   
====================================================================================================
   
====================================================================================================
   SESSION REPORT (ALL TESTS)
   ducktape version: 0.12.0
   session_id:       2025-11-16--001
   run time:         256 minutes 41.429 seconds
   tests run:        117
   passed:           114
   flaky:            0
   failed:           3
   ignored:          0
   
====================================================================================================
   
----------------------------------------------------------------------------------------------------
   test_id:    
kafkatest.tests.client.consumer_protocol_migration_test.ConsumerProtocolMigrationTest.test_consumer_offline_migration.static_membership=True.metadata_quorum=ISOLATED_KRAFT.consumer_group_migration_policy=disabled.consumer_version=dev.assignment_strategy=org.apache.kafka.clients.consumer.CooperativeStickyAssignor
   status:     FAIL
   run time:   3 minutes 24.214 seconds
   
   
       AssertionError('Node ducker@ducker12: did not stop within the specified 
timeout of 30 seconds')
   Traceback (most recent call last):
     File 
"/usr/local/lib/python3.10/dist-packages/ducktape/tests/runner_client.py", line 
351, in _do_run
       data = self.run_test()
     File 
"/usr/local/lib/python3.10/dist-packages/ducktape/tests/runner_client.py", line 
411, in run_test
       return self.test_context.function(self.test)
     File "/usr/local/lib/python3.10/dist-packages/ducktape/mark/_mark.py", 
line 438, in wrapper
       return functools.partial(f, *args, **kwargs)(*w_args, **w_kwargs)
     File 
"/opt/kafka-dev/tests/kafkatest/tests/client/consumer_protocol_migration_test.py",
 line 173, in test_consumer_offline_migration
       consumer.stop_all()
     File "/opt/kafka-dev/tests/kafkatest/services/verifiable_consumer.py", 
line 454, in stop_all
       self.stop_node(node)
     File "/opt/kafka-dev/tests/kafkatest/services/verifiable_consumer.py", 
line 468, in stop_node
       assert stopped, "Node %s: did not stop within the specified timeout of 
%s seconds" % \
   AssertionError: Node ducker@ducker12: did not stop within the specified 
timeout of 30 seconds
   
----------------------------------------------------------------------------------------------------
   test_id:    
kafkatest.tests.streams.streams_smoke_test.StreamsSmokeTest.test_streams.processing_guarantee=at_least_once.crash=True.metadata_quorum=COMBINED_KRAFT.group_protocol=classic
   status:     FAIL
   run time:   6 minutes 50.404 seconds
   
   
       TimeoutError("Never saw 'REBALANCING -> RUNNING' message 
ducker@ducker07")
   Traceback (most recent call last):
     File 
"/usr/local/lib/python3.10/dist-packages/ducktape/tests/runner_client.py", line 
351, in _do_run
       data = self.run_test()
     File 
"/usr/local/lib/python3.10/dist-packages/ducktape/tests/runner_client.py", line 
411, in run_test
       return self.test_context.function(self.test)
     File "/usr/local/lib/python3.10/dist-packages/ducktape/mark/_mark.py", 
line 438, in wrapper
       return functools.partial(f, *args, **kwargs)(*w_args, **w_kwargs)
     File "/opt/kafka-dev/tests/kafkatest/tests/streams/streams_smoke_test.py", 
line 61, in test_streams
       monitor1.wait_until('REBALANCING -> RUNNING',
     File 
"/usr/local/lib/python3.10/dist-packages/ducktape/cluster/remoteaccount.py", 
line 753, in wait_until
       return wait_until(lambda: self.acct.ssh("tail -c +%d %s | grep '%s'" % 
(self.offset + 1, self.log, pattern),
     File "/usr/local/lib/python3.10/dist-packages/ducktape/utils/util.py", 
line 58, in wait_until
       raise TimeoutError(err_msg() if callable(err_msg) else err_msg) from 
last_exception
   ducktape.errors.TimeoutError: Never saw 'REBALANCING -> RUNNING' message 
ducker@ducker07
   
   
----------------------------------------------------------------------------------------------------
   test_id:    
kafkatest.tests.tools.replica_verification_test.ReplicaVerificationToolTest.test_replica_lags.metadata_quorum=ISOLATED_KRAFT
   status:     FAIL
   run time:   56.432 seconds
   
   
       TimeoutError('Timed out waiting to reach non-zero number of replica 
lags.')
   Traceback (most recent call last):
     File 
"/usr/local/lib/python3.10/dist-packages/ducktape/tests/runner_client.py", line 
351, in _do_run
       data = self.run_test()
     File 
"/usr/local/lib/python3.10/dist-packages/ducktape/tests/runner_client.py", line 
411, in run_test
       return self.test_context.function(self.test)
     File "/usr/local/lib/python3.10/dist-packages/ducktape/mark/_mark.py", 
line 438, in wrapper
       return functools.partial(f, *args, **kwargs)(*w_args, **w_kwargs)
     File 
"/opt/kafka-dev/tests/kafkatest/tests/tools/replica_verification_test.py", line 
93, in test_replica_lags
       wait_until(lambda: self.replica_verifier.get_lag_for_partition(TOPIC, 0) 
> 0, timeout_sec=10,
     File "/usr/local/lib/python3.10/dist-packages/ducktape/utils/util.py", 
line 58, in wait_until
       raise TimeoutError(err_msg() if callable(err_msg) else err_msg) from 
last_exception
   ducktape.errors.TimeoutError: Timed out waiting to reach non-zero number of 
replica lags.
   
   
----------------------------------------------------------------------------------------------------
   
====================================================================================================
   SESSION REPORT (ALL TESTS)
   ducktape version: 0.12.0
   session_id:       2025-11-16--001
   run time:         262 minutes 42.874 seconds
   tests run:        117
   passed:           117
   flaky:            0
   failed:           0
   ignored:          0
   
====================================================================================================
   
====================================================================================================
   SESSION REPORT (ALL TESTS)
   ducktape version: 0.12.0
   session_id:       2025-11-16--001
   run time:         268 minutes 58.231 seconds
   tests run:        117
   passed:           117
   flaky:            0
   failed:           0
   ignored:          0
   
====================================================================================================
   
====================================================================================================
   SESSION REPORT (ALL TESTS)
   ducktape version: 0.12.0
   session_id:       2025-11-16--001
   run time:         277 minutes 15.955 seconds
   tests run:        116
   passed:           116
   flaky:            0
   failed:           0
   ignored:          0
   
====================================================================================================
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to