mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-09 16:32:07 +08:00
Add km module kafka
This commit is contained in:
14
tests/kafkatest/sanity_checks/__init__.py
Normal file
14
tests/kafkatest/sanity_checks/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
99
tests/kafkatest/sanity_checks/test_console_consumer.py
Normal file
99
tests/kafkatest/sanity_checks/test_console_consumer.py
Normal file
@@ -0,0 +1,99 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
import time
|
||||
|
||||
from ducktape.mark import matrix
|
||||
from ducktape.mark import parametrize
|
||||
from ducktape.mark.resource import cluster
|
||||
from ducktape.tests.test import Test
|
||||
from ducktape.utils.util import wait_until
|
||||
|
||||
from kafkatest.services.console_consumer import ConsoleConsumer
|
||||
from kafkatest.services.kafka import KafkaService
|
||||
from kafkatest.services.verifiable_producer import VerifiableProducer
|
||||
from kafkatest.services.zookeeper import ZookeeperService
|
||||
from kafkatest.utils.remote_account import line_count, file_exists
|
||||
from kafkatest.version import LATEST_0_8_2
|
||||
|
||||
|
||||
class ConsoleConsumerTest(Test):
|
||||
"""Sanity checks on console consumer service class."""
|
||||
def __init__(self, test_context):
|
||||
super(ConsoleConsumerTest, self).__init__(test_context)
|
||||
|
||||
self.topic = "topic"
|
||||
self.zk = ZookeeperService(test_context, num_nodes=1)
|
||||
self.kafka = KafkaService(self.test_context, num_nodes=1, zk=self.zk, zk_chroot="/kafka",
|
||||
topics={self.topic: {"partitions": 1, "replication-factor": 1}})
|
||||
self.consumer = ConsoleConsumer(self.test_context, num_nodes=1, kafka=self.kafka, topic=self.topic)
|
||||
|
||||
def setUp(self):
|
||||
self.zk.start()
|
||||
|
||||
@cluster(num_nodes=3)
|
||||
@matrix(security_protocol=['PLAINTEXT', 'SSL'])
|
||||
@cluster(num_nodes=4)
|
||||
@matrix(security_protocol=['SASL_SSL'], sasl_mechanism=['PLAIN', 'SCRAM-SHA-256', 'SCRAM-SHA-512'])
|
||||
@matrix(security_protocol=['SASL_PLAINTEXT', 'SASL_SSL'])
|
||||
def test_lifecycle(self, security_protocol, sasl_mechanism='GSSAPI'):
|
||||
"""Check that console consumer starts/stops properly, and that we are capturing log output."""
|
||||
|
||||
self.kafka.security_protocol = security_protocol
|
||||
self.kafka.client_sasl_mechanism = sasl_mechanism
|
||||
self.kafka.interbroker_sasl_mechanism = sasl_mechanism
|
||||
self.kafka.start()
|
||||
|
||||
self.consumer.security_protocol = security_protocol
|
||||
|
||||
t0 = time.time()
|
||||
self.consumer.start()
|
||||
node = self.consumer.nodes[0]
|
||||
|
||||
wait_until(lambda: self.consumer.alive(node),
|
||||
timeout_sec=20, backoff_sec=.2, err_msg="Consumer was too slow to start")
|
||||
self.logger.info("consumer started in %s seconds " % str(time.time() - t0))
|
||||
|
||||
# Verify that log output is happening
|
||||
wait_until(lambda: file_exists(node, ConsoleConsumer.LOG_FILE), timeout_sec=10,
|
||||
err_msg="Timed out waiting for consumer log file to exist.")
|
||||
wait_until(lambda: line_count(node, ConsoleConsumer.LOG_FILE) > 0, timeout_sec=1,
|
||||
backoff_sec=.25, err_msg="Timed out waiting for log entries to start.")
|
||||
|
||||
# Verify no consumed messages
|
||||
assert line_count(node, ConsoleConsumer.STDOUT_CAPTURE) == 0
|
||||
|
||||
self.consumer.stop_node(node)
|
||||
|
||||
@cluster(num_nodes=4)
|
||||
def test_version(self):
|
||||
"""Check that console consumer v0.8.2.X successfully starts and consumes messages."""
|
||||
self.kafka.start()
|
||||
|
||||
num_messages = 1000
|
||||
self.producer = VerifiableProducer(self.test_context, num_nodes=1, kafka=self.kafka, topic=self.topic,
|
||||
max_messages=num_messages, throughput=1000)
|
||||
self.producer.start()
|
||||
self.producer.wait()
|
||||
|
||||
self.consumer.nodes[0].version = LATEST_0_8_2
|
||||
self.consumer.new_consumer = False
|
||||
self.consumer.consumer_timeout_ms = 1000
|
||||
self.consumer.start()
|
||||
self.consumer.wait()
|
||||
|
||||
num_consumed = len(self.consumer.messages_consumed[1])
|
||||
num_produced = self.producer.num_acked
|
||||
assert num_produced == num_consumed, "num_produced: %d, num_consumed: %d" % (num_produced, num_consumed)
|
||||
58
tests/kafkatest/sanity_checks/test_kafka_version.py
Normal file
58
tests/kafkatest/sanity_checks/test_kafka_version.py
Normal file
@@ -0,0 +1,58 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from ducktape.tests.test import Test
|
||||
from ducktape.mark.resource import cluster
|
||||
|
||||
from kafkatest.services.kafka import KafkaService, config_property
|
||||
from kafkatest.services.zookeeper import ZookeeperService
|
||||
from kafkatest.utils import is_version
|
||||
from kafkatest.version import LATEST_0_8_2, DEV_BRANCH
|
||||
|
||||
|
||||
class KafkaVersionTest(Test):
|
||||
"""Sanity checks on kafka versioning."""
|
||||
def __init__(self, test_context):
|
||||
super(KafkaVersionTest, self).__init__(test_context)
|
||||
|
||||
self.topic = "topic"
|
||||
self.zk = ZookeeperService(test_context, num_nodes=1)
|
||||
|
||||
def setUp(self):
|
||||
self.zk.start()
|
||||
|
||||
@cluster(num_nodes=2)
|
||||
def test_0_8_2(self):
|
||||
"""Test kafka service node-versioning api - verify that we can bring up a single-node 0.8.2.X cluster."""
|
||||
self.kafka = KafkaService(self.test_context, num_nodes=1, zk=self.zk,
|
||||
topics={self.topic: {"partitions": 1, "replication-factor": 1}})
|
||||
node = self.kafka.nodes[0]
|
||||
node.version = LATEST_0_8_2
|
||||
self.kafka.start()
|
||||
|
||||
assert is_version(node, [LATEST_0_8_2], logger=self.logger)
|
||||
|
||||
@cluster(num_nodes=3)
|
||||
def test_multi_version(self):
|
||||
"""Test kafka service node-versioning api - ensure we can bring up a 2-node cluster, one on version 0.8.2.X,
|
||||
the other on the current development branch."""
|
||||
self.kafka = KafkaService(self.test_context, num_nodes=2, zk=self.zk,
|
||||
topics={self.topic: {"partitions": 1, "replication-factor": 2}})
|
||||
self.kafka.nodes[1].version = LATEST_0_8_2
|
||||
self.kafka.nodes[1].config[config_property.INTER_BROKER_PROTOCOL_VERSION] = "0.8.2.X"
|
||||
self.kafka.start()
|
||||
|
||||
assert is_version(self.kafka.nodes[0], [DEV_BRANCH.vstring], logger=self.logger)
|
||||
assert is_version(self.kafka.nodes[1], [LATEST_0_8_2], logger=self.logger)
|
||||
90
tests/kafkatest/sanity_checks/test_performance_services.py
Normal file
90
tests/kafkatest/sanity_checks/test_performance_services.py
Normal file
@@ -0,0 +1,90 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from ducktape.mark import parametrize
|
||||
from ducktape.mark.resource import cluster
|
||||
from ducktape.tests.test import Test
|
||||
|
||||
from kafkatest.services.kafka import KafkaService
|
||||
from kafkatest.services.performance import ProducerPerformanceService, ConsumerPerformanceService, EndToEndLatencyService
|
||||
from kafkatest.services.performance import latency, compute_aggregate_throughput
|
||||
from kafkatest.services.zookeeper import ZookeeperService
|
||||
from kafkatest.version import DEV_BRANCH, LATEST_0_8_2, LATEST_0_9, LATEST_1_1, KafkaVersion
|
||||
|
||||
|
||||
class PerformanceServiceTest(Test):
|
||||
def __init__(self, test_context):
|
||||
super(PerformanceServiceTest, self).__init__(test_context)
|
||||
self.record_size = 100
|
||||
self.num_records = 10000
|
||||
self.topic = "topic"
|
||||
|
||||
self.zk = ZookeeperService(test_context, 1)
|
||||
|
||||
def setUp(self):
|
||||
self.zk.start()
|
||||
|
||||
@cluster(num_nodes=5)
|
||||
# We are keeping 0.8.2 here so that we don't inadvertently break support for it. Since this is just a sanity check,
|
||||
# the overhead should be manageable.
|
||||
@parametrize(version=str(LATEST_0_8_2), new_consumer=False)
|
||||
@parametrize(version=str(LATEST_0_9), new_consumer=False)
|
||||
@parametrize(version=str(LATEST_0_9))
|
||||
@parametrize(version=str(LATEST_1_1), new_consumer=False)
|
||||
@parametrize(version=str(DEV_BRANCH))
|
||||
def test_version(self, version=str(LATEST_0_9), new_consumer=True):
|
||||
"""
|
||||
Sanity check out producer performance service - verify that we can run the service with a small
|
||||
number of messages. The actual stats here are pretty meaningless since the number of messages is quite small.
|
||||
"""
|
||||
version = KafkaVersion(version)
|
||||
self.kafka = KafkaService(
|
||||
self.test_context, 1,
|
||||
self.zk, topics={self.topic: {'partitions': 1, 'replication-factor': 1}}, version=version)
|
||||
self.kafka.start()
|
||||
|
||||
# check basic run of producer performance
|
||||
self.producer_perf = ProducerPerformanceService(
|
||||
self.test_context, 1, self.kafka, topic=self.topic,
|
||||
num_records=self.num_records, record_size=self.record_size,
|
||||
throughput=1000000000, # Set impossibly for no throttling for equivalent behavior between 0.8.X and 0.9.X
|
||||
version=version,
|
||||
settings={
|
||||
'acks': 1,
|
||||
'batch.size': 8*1024,
|
||||
'buffer.memory': 64*1024*1024})
|
||||
self.producer_perf.run()
|
||||
producer_perf_data = compute_aggregate_throughput(self.producer_perf)
|
||||
|
||||
# check basic run of end to end latency
|
||||
self.end_to_end = EndToEndLatencyService(
|
||||
self.test_context, 1, self.kafka,
|
||||
topic=self.topic, num_records=self.num_records, version=version)
|
||||
self.end_to_end.run()
|
||||
end_to_end_data = latency(self.end_to_end.results[0]['latency_50th_ms'], self.end_to_end.results[0]['latency_99th_ms'], self.end_to_end.results[0]['latency_999th_ms'])
|
||||
|
||||
# check basic run of consumer performance service
|
||||
self.consumer_perf = ConsumerPerformanceService(
|
||||
self.test_context, 1, self.kafka, new_consumer=new_consumer,
|
||||
topic=self.topic, version=version, messages=self.num_records)
|
||||
self.consumer_perf.group = "test-consumer-group"
|
||||
self.consumer_perf.run()
|
||||
consumer_perf_data = compute_aggregate_throughput(self.consumer_perf)
|
||||
|
||||
return {
|
||||
"producer_performance": producer_perf_data,
|
||||
"end_to_end_latency": end_to_end_data,
|
||||
"consumer_performance": consumer_perf_data
|
||||
}
|
||||
84
tests/kafkatest/sanity_checks/test_verifiable_producer.py
Normal file
84
tests/kafkatest/sanity_checks/test_verifiable_producer.py
Normal file
@@ -0,0 +1,84 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
from ducktape.mark import parametrize
|
||||
from ducktape.mark.resource import cluster
|
||||
from ducktape.tests.test import Test
|
||||
from ducktape.utils.util import wait_until
|
||||
|
||||
from kafkatest.services.kafka import KafkaService
|
||||
from kafkatest.services.verifiable_producer import VerifiableProducer
|
||||
from kafkatest.services.zookeeper import ZookeeperService
|
||||
from kafkatest.utils import is_version
|
||||
from kafkatest.version import LATEST_0_8_2, LATEST_0_9, LATEST_0_10_0, LATEST_0_10_1, DEV_BRANCH, KafkaVersion
|
||||
|
||||
|
||||
class TestVerifiableProducer(Test):
|
||||
"""Sanity checks on verifiable producer service class."""
|
||||
def __init__(self, test_context):
|
||||
super(TestVerifiableProducer, self).__init__(test_context)
|
||||
|
||||
self.topic = "topic"
|
||||
self.zk = ZookeeperService(test_context, num_nodes=1)
|
||||
self.kafka = KafkaService(test_context, num_nodes=1, zk=self.zk,
|
||||
topics={self.topic: {"partitions": 1, "replication-factor": 1}})
|
||||
|
||||
self.num_messages = 1000
|
||||
# This will produce to source kafka cluster
|
||||
self.producer = VerifiableProducer(test_context, num_nodes=1, kafka=self.kafka, topic=self.topic,
|
||||
max_messages=self.num_messages, throughput=self.num_messages/5)
|
||||
|
||||
def setUp(self):
|
||||
self.zk.start()
|
||||
self.kafka.start()
|
||||
|
||||
@cluster(num_nodes=3)
|
||||
@parametrize(producer_version=str(LATEST_0_8_2))
|
||||
@parametrize(producer_version=str(LATEST_0_9))
|
||||
@parametrize(producer_version=str(LATEST_0_10_0))
|
||||
@parametrize(producer_version=str(LATEST_0_10_1))
|
||||
@parametrize(producer_version=str(DEV_BRANCH))
|
||||
def test_simple_run(self, producer_version=DEV_BRANCH):
|
||||
"""
|
||||
Test that we can start VerifiableProducer on the current branch snapshot version or against the 0.8.2 jar, and
|
||||
verify that we can produce a small number of messages.
|
||||
"""
|
||||
node = self.producer.nodes[0]
|
||||
node.version = KafkaVersion(producer_version)
|
||||
self.producer.start()
|
||||
wait_until(lambda: self.producer.num_acked > 5, timeout_sec=5,
|
||||
err_msg="Producer failed to start in a reasonable amount of time.")
|
||||
|
||||
# using version.vstring (distutils.version.LooseVersion) is a tricky way of ensuring
|
||||
# that this check works with DEV_BRANCH
|
||||
# When running VerifiableProducer 0.8.X, both the current branch version and 0.8.X should show up because of the
|
||||
# way verifiable producer pulls in some development directories into its classpath
|
||||
#
|
||||
# If the test fails here because 'ps .. | grep' couldn't find the process it means
|
||||
# the login and grep that is_version() performs is slower than
|
||||
# the time it takes the producer to produce its messages.
|
||||
# Easy fix is to decrease throughput= above, the good fix is to make the producer
|
||||
# not terminate until explicitly killed in this case.
|
||||
if node.version <= LATEST_0_8_2:
|
||||
assert is_version(node, [node.version.vstring, DEV_BRANCH.vstring], logger=self.logger)
|
||||
else:
|
||||
assert is_version(node, [node.version.vstring], logger=self.logger)
|
||||
|
||||
self.producer.wait()
|
||||
num_produced = self.producer.num_acked
|
||||
assert num_produced == self.num_messages, "num_produced: %d, num_messages: %d" % (num_produced, self.num_messages)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user