-
Notifications
You must be signed in to change notification settings - Fork 586
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
423 additions
and
370 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Oops, something went wrong.