Skip to content

Commit

Permalink
tests/migrations: add scale test
Browse files Browse the repository at this point in the history
  • Loading branch information
bashtanov committed Sep 17, 2024
1 parent dff91ba commit 4fe0465
Show file tree
Hide file tree
Showing 3 changed files with 423 additions and 370 deletions.
22 changes: 22 additions & 0 deletions tests/rptest/scale_tests/data_migrations_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2022 Redpanda Data, Inc.
#
# Use of this software is governed by the Business Source License
# included in the file licenses/BSL.md
#
# As of the Change Date specified in that file, in accordance with
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0

from rptest.services.cluster import cluster
from ducktape.mark import parametrize
from rptest.tests.data_migrations import DataMigrationsTest


class DataMigrationsScaleTest(DataMigrationsTest):
@cluster(num_nodes=3,
log_allow_list=DataMigrationsTest.MIGRATION_LOG_ALLOW_LIST)
@parametrize(topics_count=10000, partitions_count=3)
@parametrize(topics_count=3, partitions_count=10000)
def test_migrate(self, topics_count, partitions_count):
self.do_test_creating_and_listing_migrations(topics_count,
partitions_count)
Loading

0 comments on commit 4fe0465

Please sign in to comment.