Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rptest: mark test_throttling as ok_to_fail #18414

Closed
Closed
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/rptest/tests/e2e_shadow_indexing_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from datetime import datetime, timedelta
from typing import Optional

from ducktape.mark import matrix
from ducktape.mark import matrix, ok_to_fail
from ducktape.tests.test import TestContext
from ducktape.utils.util import wait_until
from requests.exceptions import HTTPError
Expand Down Expand Up @@ -1312,7 +1312,7 @@ def __init__(self, test_context):
log_segment_size=1024 * 1024,
fast_uploads=True,
# Set small throughput limit to trigger throttling
cloud_storage_max_throughput_per_shard=4 * 1024 * 1024)
cloud_storage_max_throughput_per_shard=8 * 1024 * 1024)

super(EndToEndThrottlingTest, self).__init__(test_context=test_context,
si_settings=si_settings)
Expand Down Expand Up @@ -1362,6 +1362,7 @@ def consume(self):
consumer.free()

@cluster(num_nodes=4)
@ok_to_fail # https://github.com/redpanda-data/redpanda/issues/18413
@matrix(cloud_storage_type=get_cloud_storage_type())
def test_throttling(self, cloud_storage_type):

Expand Down
Loading