Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/kafkatest/sanity_checks/test_console_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import time

from ducktape.mark import matrix
from ducktape.mark import matrix, ignore
from ducktape.mark.resource import cluster
from ducktape.tests.test import Test
from ducktape.utils.util import wait_until
Expand Down Expand Up @@ -47,7 +47,7 @@ def setUp(self):
@matrix(security_protocol=['PLAINTEXT', 'SSL'], metadata_quorum=quorum.all_kraft)
@cluster(num_nodes=4)
@matrix(security_protocol=['SASL_SSL'], sasl_mechanism=['PLAIN'], metadata_quorum=quorum.all_kraft)
@matrix(security_protocol=['SASL_SSL'], sasl_mechanism=['SCRAM-SHA-256', 'SCRAM-SHA-512']) # SCRAM not yet supported with KRaft
# @matrix(security_protocol=['SASL_SSL'], sasl_mechanism=['SCRAM-SHA-256', 'SCRAM-SHA-512']) # SCRAM not yet supported with KRaft
@matrix(security_protocol=['SASL_PLAINTEXT', 'SASL_SSL'], metadata_quorum=quorum.all_kraft)
def test_lifecycle(self, security_protocol, sasl_mechanism='GSSAPI', metadata_quorum=quorum.zk):
"""Check that console consumer starts/stops properly, and that we are capturing log output."""
Expand Down Expand Up @@ -78,6 +78,7 @@ def test_lifecycle(self, security_protocol, sasl_mechanism='GSSAPI', metadata_qu

self.consumer.stop_node(node)

@ignore # AutoMQ doesn't support ZK mode
@cluster(num_nodes=4)
def test_version(self):
"""Check that console consumer v0.8.2.X successfully starts and consumes messages."""
Expand Down
9 changes: 0 additions & 9 deletions tests/kafkatest/services/kafka/templates/kafka.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,6 @@ process.roles=controller
autobalancer.controller.enable=true
autobalancer.controller.anomaly.detect.interval.ms=60000
autobalancer.controller.metrics.delay.ms=20000
autobalancer.controller.network.in.usage.distribution.detect.threshold=0.2
autobalancer.controller.network.in.distribution.detect.avg.deviation=0.2
autobalancer.controller.network.out.usage.distribution.detect.threshold=0.2
autobalancer.controller.network.out.distribution.detect.avg.deviation=0.2
autobalancer.controller.network.in.utilization.threshold=0.8
autobalancer.controller.network.out.utilization.threshold=0.8
autobalancer.controller.execution.interval.ms=100
autobalancer.controller.load.aggregation=true
autobalancer.controller.exclude.topics=__consumer_offsets
{% else %}
process.roles=broker
{% endif %}
Expand Down