-
Notifications
You must be signed in to change notification settings - Fork 592
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
APIs for disabling topics/partitions and listing them #14461
Conversation
f11f023
to
825b518
Compare
ducktape was retried in job https://buildkite.com/redpanda/redpanda/builds/39882#018b6ca7-4f80-45c1-98d4-111b7d568b2c |
ducktape was retried in job https://buildkite.com/redpanda/redpanda/builds/39882#018b6cc7-9c99-468d-aeec-8adebf699b05 |
cc9ede4
to
0fcaaa3
Compare
{ | ||
"method": "GET", | ||
"summary": "Get cluster-level metadata for a single partition", | ||
"nickname": "get_cluster_partitions_topic_partition", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this different from /v1/partitions/<ns>/<topic>/<id>
?
The code lgtm, but i am wondering why we need |
0fcaaa3
to
0451ed9
Compare
ducktape was retried in job https://buildkite.com/redpanda/redpanda/builds/40389#018b95d3-aa02-4a91-8298-e7966182ac28 |
ducktape was retried in job https://buildkite.com/redpanda/redpanda/builds/40389#018b95e3-dab4-41e4-8a91-ff3ea6656c3d |
Tests passed, ducktape errors should be fixed by https://github.com/redpanda-data/vtools/pull/2296 |
Currently the only functionality is setting topic/partitions disabled
Viewing cluster-wide info for partitions of a single topic + disabled filter.
Viewing cluster-wide info for all partitions + disabled filter.
0451ed9
to
62477b6
Compare
new failures detected in https://buildkite.com/redpanda/redpanda/builds/40521#018ba5f3-fcc5-48be-b826-1f9f4375a34c: "rptest.tests.cloud_storage_timing_stress_test.CloudStorageTimingStressTest.test_cloud_storage.cleanup_policy=delete" |
scrub failure in CloudStorageTimingStressTest unrelated, probably related to #14349 |
Add admin APIs for setting the disabled flag and storing it in the topic table.
Also add APIs for viewing the cluster-wide list of partitions/list of partitions of a single topic with filtering by the
disabled
flag.Backports Required
Release Notes
Improvements