Skip to content

SR on kafka RPCs#30046

Draft
oleiman wants to merge 25 commits intodevfrom
sr/noticket/sr-on-kdrpc
Draft

SR on kafka RPCs#30046
oleiman wants to merge 25 commits intodevfrom
sr/noticket/sr-on-kdrpc

Conversation

@oleiman
Copy link
Copy Markdown
Member

@oleiman oleiman commented Apr 2, 2026

.

Backports Required

  • none - not a bug fix
  • none - this is a backport
  • none - issue does not exist in previous branches
  • none - papercut/not impactful enough to backport
  • v26.1.x
  • v25.3.x
  • v25.2.x

Release Notes

Improvements

  • Adds the option to configure Schema Registry to use internal RPCs for interacting with the schemas topic. No explicit authN/Z or ephemeral credentials required.

@oleiman oleiman self-assigned this Apr 2, 2026
@oleiman oleiman requested a review from a team as a code owner April 2, 2026 05:44
@oleiman oleiman added the claude-review Adding this label to a PR will trigger a workflow to review the code using claude. label Apr 2, 2026
Copilot AI review requested due to automatic review settings April 2, 2026 05:44
Comment on lines 140 to 144
if (fut.failed()) {
if (attempts < max_client_retries) {
co_return co_await std::move(fut);
}
continue;
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug (pre-existing, but relevant to this refactor): The exception-handling logic here appears inverted. When attempts < max_client_retries (retries remaining), the failed future is returned immediately (propagating the exception). When attempts >= max_client_retries (exhausted), continue retries. This means exceptions are never retried when we can retry, and always retried when we can't.

Should this be:

Suggested change
if (fut.failed()) {
if (attempts < max_client_retries) {
co_return co_await std::move(fut);
}
continue;
if (fut.failed()) {
if (attempts >= max_client_retries) {
co_return co_await std::move(fut);
}
continue;

Comment on lines +67 to +90
}
co_return kafka::offset_cast(result.value().high_watermark);
}

ss::future<> rpc_transport::consume_range(
model::offset start,
model::offset end,
ss::noncopyable_function<ss::future<>(model::record_batch)> consumer) {
// The RPC consume API may not return all records in a single call,
// so loop until we've consumed up to the desired end offset.
constexpr size_t max_bytes = 1 << 20; // 1 MiB per fetch
auto current = start;
while (current < end) {
auto result = co_await _client.consume(
model::schema_registry_internal_tp,
offset_cast(current),
offset_cast(end),
1,
max_bytes,
std::chrono::seconds(5));
if (result.has_error()) {
throw_as_kafka_error("RPC consume failed", result.error());
}
auto& reply = result.value();
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Concern: no overall timeout on consume loop. Each individual RPC call has a 5s timeout, but the outer while (current < end) loop has no overall deadline. If the partition keeps returning small batches that never advance current to end (e.g., due to a bug in offset calculation), or if end is set to a very high value, this could loop for a very long time.

Consider adding a deadline or iteration cap, e.g.:

constexpr int max_iterations = 1000;
int iterations = 0;
while (current < end && ++iterations <= max_iterations) {

Comment on lines +2009 to 2017
, schema_registry_use_rpc(
*this,
"schema_registry_use_rpc",
"Produce schema registry messages using internal Redpanda RPCs. When "
"disabled, produce schema registry messages using a Kafka client "
"instead.",
{.needs_restart = needs_restart::yes, .visibility = visibility::tunable},
true)
, cloud_storage_enabled(
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question: default true for a new feature? This means all existing deployments will switch to the RPC transport path on upgrade (assuming cluster version is sufficient). While the feature-gating on v26_1_1 in api.cc is a good safety net for mixed-version clusters, defaulting to true is aggressive for a brand new code path.

Consider defaulting to false for the initial release and switching to true once the RPC path has been validated in production. This gives operators an opt-in experience rather than a surprise behavioral change on upgrade.

Comment on lines +83 to +86
offset_cast(end),
1,
max_bytes,
std::chrono::seconds(5));
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Edge case: If the RPC returns successfully but with an empty batches vector, this throws unconditionally. However, this could legitimately happen if the partition has no data in the requested range (e.g., after log truncation/compaction). Should this break out of the loop instead of throwing?

Also, since the retry logic in client.cc already handles not_leader/timeout for the consume path, returning 0 batches on success would indicate the data genuinely isn't there.

Comment on lines +97 to +102

leader_mitigating_retry_policy(
ss::abort_source& as,
partition_leader_cache& leaders,
model::topic_namespace_view tp_ns,
model::partition_id pid)
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: prepare() snapshots the leader term before the attempt, but the actual RPC call in do_produce_once/do_consume_once independently looks up the leader. There's an inherent race: leadership could change between prepare() and the RPC lookup. This means _stale_term might already be outdated before the attempt even starts, causing mitigate() to skip the wait (since the table already advanced).

In practice this is benign — the retry loop handles it — but a comment documenting this intended behavior would help future readers.

Comment on lines +103 to +118
const bool rpc_available
= _controller->get_feature_table().local().get_active_version()
>= features::to_cluster_version(features::release_version::v26_1_1);
if (!rpc_available) {
vlog(
srlog.warn,
"schema_registry_use_rpc enabled but cluster version too old. "
"Falling back to Kafka client. RPC mode will be available "
"on the next restart after all brokers are upgraded.");
return false;
}
return true;
}();

if (use_rpc) {
vlog(srlog.info, "Schema registry in RPC mode");
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: When _transport is still std::monostate and the kafka _client error callback fires during _client.start(), the monostate visitor rethrows the exception. This is fine for correctness but worth a brief comment explaining that _client shouldn't invoke the error callback during start(), or that the rethrow is the intended fallback behavior during the initialization window.

Comment on lines +247 to +260
// Count records before moving batches — needed to convert the
// last_offset returned by replicate() into a base_offset.
// Same arithmetic as kafka/server/handlers/produce.cc.
int32_t total_records = 0;
for (const auto& b : data.batches) {
total_records += b.record_count();
}
auto result = co_await produce(ktp, std::move(data.batches), timeout);
auto ec = result.has_error() ? result.error() : cluster::errc::success;
co_return kafka_topic_data_result(data.tp, ec);
if (result.has_error()) {
co_return kafka_topic_data_result(data.tp, result.error());
}
auto last_offset = result.value();
auto base_offset = model::offset{last_offset() - (total_records - 1)};
co_return kafka_topic_data_result(
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correctness check: The base_offset calculation last_offset() - (total_records - 1) assumes all records land in a single batch at contiguous offsets. This matches the Kafka produce handler's arithmetic, but if data.batches contains multiple batches, total_records sums all of them while last_offset is the offset of the very last record across all batches. This is correct as long as the batches are replicated atomically as a single group. Worth a brief assertion or comment that multi-batch produces yield contiguous offsets.

Comment on lines +601 to +612
}
// Subject was already deleted before our first attempt.
co_return co_await _store.get_versions(sub, include_deleted::yes);
}

// Grab the versions before they're gone.
auto versions = co_await _store.get_versions(sub, include_deleted::no);

// Inspect the subject to see if its already deleted
if (co_await _store.is_subject_deleted(sub)) {
co_return std::make_optional(std::move(versions));
}
// Cache versions for potential retry — after a subject-level soft
// delete all versions are marked deleted and the pre-delete list
// cannot be reconstructed from the store. Tagged with subject so
// stale entries from a prior delete of a different subject are ignored.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good fix for the retry-after-collision bug. One thought: the _delete_versions_cache is protected by _write_sem (single-writer serialization), so concurrent deletes of different subjects are properly serialized and the subject tag prevents stale entries. But the cache is never cleared on exceptions — if produce_and_apply throws, the cache persists to the next do_delete_subject_impermanent call. If that call is for a different subject, the tag check handles it correctly. Just confirming the design: the cache is intentionally sticky across exceptions, relying on the subject tag for staleness detection?

@claude
Copy link
Copy Markdown

claude bot commented Apr 2, 2026

PR Review: SR on kafka RPCs

Summary

This PR introduces a polymorphic transport abstraction for schema registry's internal _schemas topic I/O, with two implementations:

  • kafka_client_transport (legacy): uses the Kafka client with full auth/ACL management
  • rpc_transport (new): uses internal kafka::data::rpc::client, bypassing Kafka auth overhead

The refactoring is well-structured — the transport interface is clean, the separation of concerns is good, and the leadership-aware retry policy (leader_mitigating_retry_policy) is a nice improvement over blind exponential backoff. The produce_with_offset, get_single_partition_offsets, and retry-mitigating consume additions to the RPC client are well-motivated by the schema registry's single-partition access pattern.

Test coverage is solid: new C++ unit tests for both rpc_transport and produce_with_offset, plus Python integration tests running the full SR test suites against both transport modes, and a leadership-transfer stress test.

Issues Found

Potential bugs:

  1. Inverted exception retry logic in retry_with_backoff (pre-existing, but surfaced by this refactor) — when a future fails with an exception, the code returns immediately when retries are available and retries when they're exhausted. See inline comment with suggested fix.
  2. rpc_transport::consume_range empty batch handling — throws on an empty batches vector, but this could be a legitimate response after compaction/truncation. Should this break the loop instead?

Robustness concerns:
3. consume_range has no overall timeout/iteration cap — individual RPCs timeout at 5s, but the outer loop could spin indefinitely on slow-advancing offsets.
4. Config default trueschema_registry_use_rpc defaults to true, meaning all deployments switch to the new RPC path on upgrade. The cluster-version gate is good, but consider defaulting to false for the initial release to give operators an opt-in path.

Minor/Nits:
5. Race between prepare() term snapshot and the actual leader lookup in do_produce_once/do_consume_once — benign but worth documenting.
6. monostate branch in the kafka client error callback during api::start() — works correctly but a comment would help.

What looks good

  • Clean transport abstraction with sensible default implementations for optional methods
  • Leadership-aware retry with mitigate_not_leader using notification-based waiting rather than polling
  • Proper serde versioning (kafka_topic_data_result v0→v1 with compat_version 0)
  • _delete_versions_cache in seq_writer correctly handles the retry-after-collision edge case
  • Comprehensive test matrix: both transport modes tested across local/remote leader configurations
  • Good feature gating: cluster version check + graceful fallback with logging

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new “transport” abstraction for Schema Registry internal topic I/O, enabling an internal Kafka data RPC-based path (no client auth overhead) alongside the existing kafka::client-based path, and updates tests to explicitly select transport mode.

Changes:

  • Introduce pandaproxy::schema_registry::transport with rpc_transport and kafka_client_transport implementations, wired through Schema Registry api/service/seq_writer.
  • Extend kafka data RPC to return base/last offsets from produce, add leadership-mitigating retries, and add targeted unit tests.
  • Update rptest coverage to explicitly set schema_registry_use_rpc per test and add RPC-transport variants/stress coverage.

Reviewed changes

Copilot reviewed 44 out of 44 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
tests/rptest/tests/tls_version_test.py Explicitly disables SR RPC transport for TLS version tests.
tests/rptest/tests/tls_metrics_test.py Explicitly disables SR RPC transport for TLS metrics tests.
tests/rptest/tests/security_report_test.py Forces SR RPC transport off for security-report related SR tests.
tests/rptest/tests/schema_registry_test.py Requires explicit schema_registry_use_rpc, adds RPC variants + stress test.
tests/rptest/tests/rpk_registry_test.py Disables SR RPC transport for rpk registry tests.
tests/rptest/tests/redpanda_oauth_test.py Disables SR RPC transport for OAuth test cluster config.
tests/rptest/tests/metrics_reporter_test.py Enables SR RPC transport for metrics reporter SR usage.
tests/rptest/tests/crl_test.py Disables SR RPC transport for CRL-related TLS config.
tests/rptest/tests/cluster_linking_topic_syncing_test.py Enables SR RPC transport for cluster-linking topic syncing test config.
tests/rptest/tests/audit_log_test.py Disables SR RPC transport for audit log test setup.
tests/rptest/tests/admin_api_auth_test.py Disables SR RPC transport for auto-auth admin API test setup.
src/v/redpanda/application_runtime.cc Passes kafka data RPC client into Schema Registry API wiring.
src/v/pandaproxy/schema_registry/transport.h Adds transport interface for SR internal topic I/O.
src/v/pandaproxy/schema_registry/test/utils.h Adds noop_transport for seq_writer-related tests.
src/v/pandaproxy/schema_registry/test/rpc_transport_test.cc Adds unit tests for SR rpc_transport behavior.
src/v/pandaproxy/schema_registry/test/consume_to_store.cc Switches tests from dummy kafka client to noop transport.
src/v/pandaproxy/schema_registry/test/compatibility_3rdparty.cc Switches 3rd-party compatibility test to noop transport.
src/v/pandaproxy/schema_registry/test/BUILD Adds deps for transport and new rpc_transport gtest.
src/v/pandaproxy/schema_registry/service.h Replaces kafka client dependency with transport pointer; delegates mitigation/ephemeral checks.
src/v/pandaproxy/schema_registry/service.cc Routes internal topic reads/writes via transport; adds startup retry loop for topic metadata race.
src/v/pandaproxy/schema_registry/seq_writer.h Replaces kafka client with transport; adds delete-subject retry cache state.
src/v/pandaproxy/schema_registry/seq_writer.cc Uses transport for HWM/consume/produce; implements delete-subject retry caching behavior.
src/v/pandaproxy/schema_registry/rpc_transport.h Declares RPC-based SR transport using kafka data RPC client.
src/v/pandaproxy/schema_registry/rpc_transport.cc Implements RPC-based SR internal topic produce/consume/HWM.
src/v/pandaproxy/schema_registry/kafka_client_transport.h Introduces kafka::client-backed SR transport (legacy path).
src/v/pandaproxy/schema_registry/kafka_client_transport.cc Implements legacy transport, including ephemeral-credential mitigation logic.
src/v/pandaproxy/schema_registry/fwd.h Adds forward declarations for new transport types.
src/v/pandaproxy/schema_registry/BUILD Adds build targets/deps for transport and implementations.
src/v/pandaproxy/schema_registry/api.h Adds rpc client input + transport variant storage for SR API.
src/v/pandaproxy/schema_registry/api.cc Selects RPC vs Kafka-client transport using config + feature table; wires transport into service/seq_writer.
src/v/kafka/data/rpc/test/kafka_data_rpc_test.cc Adds tests for produce_with_offset returning base/last offsets.
src/v/kafka/data/rpc/test/deps.h Extends fake leader cache with leader-term + not-leader mitigation hooks.
src/v/kafka/data/rpc/service.h Documents produce() return semantics for offsets.
src/v/kafka/data/rpc/service.cc Returns base/last offsets in produce reply; computes base from last+record_count.
src/v/kafka/data/rpc/serde.h Bumps kafka_topic_data_result serde version and adds optional base/last offsets.
src/v/kafka/data/rpc/serde.cc Extends formatting to include optional base/last offsets.
src/v/kafka/data/rpc/deps.h Extends leader cache interface with leader-term lookup and mitigation API.
src/v/kafka/data/rpc/deps.cc Implements leadership-change wait mitigation via partition_leaders_table notifications.
src/v/kafka/data/rpc/client.h Adds produce_with_offset and get_single_partition_offsets; adds retry_mitigating helpers.
src/v/kafka/data/rpc/client.cc Adds leadership-mitigating retry policy and exposes new client methods.
src/v/kafka/data/rpc/BUILD Adds expiring_promise dependency for mitigation implementation.
src/v/config/configuration.h Adds schema_registry_use_rpc tunable property.
src/v/config/configuration.cc Defines schema_registry_use_rpc property and help text (default true).
src/v/cluster_link/tests/deps.h Updates fake leader cache to satisfy new leader-term/mitigation interface.

Comment on lines 138 to 145
auto fut = co_await ss::coroutine::as_future<result_type>(
ss::futurize_invoke(func));
backoff.next_backoff();
if (fut.failed()) {
if (attempts < max_client_retries) {
co_return co_await std::move(fut);
}
continue;
}
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In retry_with_backoff(), the exception path is inverted: when fut.failed() and attempts < max_client_retries, the code co_return co_await fut, which immediately rethrows and prevents any retries. Conversely, once attempts >= max_client_retries, it hits continue and can loop forever without mitigation/backoff. Suggestion: when fut.failed(), retry (optionally policy.mitigate(extract_errc/timeout)) while attempts < max_client_retries, and only rethrow/return on the final attempt.

Copilot uses AI. Check for mistakes.
for (int attempts = 0;; ++attempts) {
auto fut = co_await ss::coroutine::as_future(
s.fetch_internal_topic());
if (fut.available()) {
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The retry loop in service::do_start() will never retry as written: auto fut = co_await ss::coroutine::as_future(s.fetch_internal_topic()); waits for completion, so fut.available() will always be true and the function will co_return even when fetch_internal_topic threw. This also bypasses the intended exception inspection in the block below. Suggestion: check fut.failed() (or !fut.failed()) instead of available(), and only co_return on success; on failure, inspect/rethrow and sleep before retrying.

Suggested change
if (fut.available()) {
if (!fut.failed()) {

Copilot uses AI. Check for mistakes.
Comment on lines +95 to +96
throw kafka::exception(
kafka::error_code::unknown_server_error, "No records returned");
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rpc_transport::consume_range() throws an unknown_server_error when reply.batches is empty. The underlying local_service::consume can legitimately return an empty batch vector for a valid range (e.g., no records available in [start,end)), and throwing here can break schema registry startup reads or cause spurious failures under race/compaction. Suggestion: treat an empty response as end-of-stream (e.g., set current=end / break) or implement a bounded retry/backoff, rather than throwing.

Suggested change
throw kafka::exception(
kafka::error_code::unknown_server_error, "No records returned");
// Treat an empty response as end-of-stream rather than an error.
current = end;
break;

Copilot uses AI. Check for mistakes.
Comment on lines +10896 to +10904
# Start 2 reader threads and 1 writer thread
threads = []
for _ in range(2):
t = threading.Thread(target=reader_worker, daemon=True)
t.start()
threads.append(t)
t = threading.Thread(target=writer_worker, daemon=True)
t.start()
threads.append(t)
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In SchemaRegistryRpcTransportStressTest, worker threads are started as daemon threads and then joined with a 30s timeout, but each SR request defaults to a 60s timeout (SchemaRegistryRedpandaClient.request). This can let threads continue running past teardown if they’re blocked in a request, which can make the test flaky and cause background traffic after the assertion. Consider making the threads non-daemon and joining without timeout (or using a shorter per-request timeout / checking thread liveness after join).

Copilot uses AI. Check for mistakes.
@oleiman oleiman marked this pull request as draft April 3, 2026 02:31
@oleiman oleiman force-pushed the sr/noticket/sr-on-kdrpc branch from 529dcbe to 8852936 Compare April 3, 2026 03:09
@oleiman
Copy link
Copy Markdown
Member Author

oleiman commented Apr 3, 2026

/ci-repeat 1
tests/rptest/tests/schema_registry_test.py

@oleiman
Copy link
Copy Markdown
Member Author

oleiman commented Apr 3, 2026

replace with #30062

@oleiman oleiman closed this Apr 3, 2026
@oleiman oleiman deleted the sr/noticket/sr-on-kdrpc branch April 3, 2026 03:33
@oleiman oleiman restored the sr/noticket/sr-on-kdrpc branch April 3, 2026 03:42
@oleiman oleiman reopened this Apr 3, 2026
@oleiman
Copy link
Copy Markdown
Member Author

oleiman commented Apr 3, 2026

/ci-repeat 1
tests/rptest/tests/schema_registry_test.py

@oleiman
Copy link
Copy Markdown
Member Author

oleiman commented Apr 3, 2026

/ci-repeat 1
skip-redpanda-build
skip-units
skip-rebase

@vbotbuildovich
Copy link
Copy Markdown
Collaborator

vbotbuildovich commented Apr 3, 2026

Retry command for Build#82720

please wait until all jobs are finished before running the slash command

/ci-repeat 1
skip-redpanda-build
skip-units
skip-rebase
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"DELETE_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_MODE"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"PUT_CONFIG"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz_get_subjects@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_public@{"audit_transport_mode":"kclient","endpoint_name":"GET_SCHEMAS_TYPES"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"DELETE_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SUBJECT_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"POST_SUBJECT_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz_get_schemas_ids_id@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_get_contexts@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"COMPATIBILITY_SUBJECT_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_CONFIG"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SCHEMAS_IDS_ID_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"POST_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"PUT_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_delete_context@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"DELETE_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SUBJECT_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"POST_SUBJECT_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz_get_schemas_ids_id@{"audit_transport_mode":"rpc"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_get_contexts@{"audit_transport_mode":"rpc"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"COMPATIBILITY_SUBJECT_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_CONFIG"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SCHEMAS_IDS_ID_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"POST_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"PUT_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_delete_context@{"audit_transport_mode":"rpc"}
tests/rptest/tests/schema_registry_test.py::SchemaRegistryRpcTransportStressTest.test_no_errors_during_leadership_transfers
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"DELETE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION_REFERENCED_BY"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"PUT_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_context_config_authz@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_public@{"audit_transport_mode":"kclient","endpoint_name":"SCHEMA_REGISTRY_STATUS_READY"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"DELETE_SUBJECT_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SCHEMAS_IDS_ID_SUBJECTS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION_SCHEMA"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"PUT_MODE"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_context_qualified_subjects@{"audit_transport_mode":"rpc"}
tests/rptest/tests/datalake/custom_partitioning_test.py::DatalakeCustomPartitioningTest.test_basic@{"catalog_type":"nessie","cloud_storage_type":1}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"DELETE_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_MODE"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"PUT_CONFIG"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz_get_subjects@{"audit_transport_mode":"rpc"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_public@{"audit_transport_mode":"rpc","endpoint_name":"GET_SCHEMAS_TYPES"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"DELETE_SUBJECT_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SCHEMAS_IDS_ID_SUBJECTS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION_SCHEMA"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"PUT_MODE"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_context_qualified_subjects@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"DELETE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION_REFERENCED_BY"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"PUT_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_context_config_authz@{"audit_transport_mode":"rpc"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_public@{"audit_transport_mode":"rpc","endpoint_name":"SCHEMA_REGISTRY_STATUS_READY"}

@vbotbuildovich
Copy link
Copy Markdown
Collaborator

vbotbuildovich commented Apr 3, 2026

CI test results

test results on build#82720
test_status test_class test_method test_arguments test_kind job_url passed reason test_history
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "COMPATIBILITY_SUBJECT_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-47de-b095-c8cbacd72638 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "COMPATIBILITY_SUBJECT_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc28-491d-b88a-f3390f3ed176 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "COMPATIBILITY_SUBJECT_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-44f1-af72-c7451e86c480 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "COMPATIBILITY_SUBJECT_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc23-4d95-bc9a-88e224809e2b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "DELETE_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-4922-af99-d4650604e478 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "DELETE_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-4053-83f1-57c6916ece10 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "DELETE_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4457-9220-f4534b34e657 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "DELETE_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-48c7-a26f-8c18ec16b6ea 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "DELETE_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4538-bae6-e600d346b2c8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "DELETE_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4591-b75d-f8f6fd543998 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "DELETE_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-467e-8c8c-6112dd7e79b8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "DELETE_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4633-91f8-4d54ab4d5c4e 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "DELETE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-46ca-a406-1024892127de 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "DELETE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-4d06-9207-6fdb08b0fb94 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "DELETE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-44c4-9ea4-ff6d335a37e6 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "DELETE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-43d0-877a-86869a1bdf5b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "DELETE_SUBJECT_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-468c-8a87-8119c32eda64 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "DELETE_SUBJECT_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-41c9-833f-7be3e5e8c6ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "DELETE_SUBJECT_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-499a-ae76-20b9b506affe 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "DELETE_SUBJECT_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-4581-86da-6c8b4297f8ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_CONFIG"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-47de-b095-c8cbacd72638 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_CONFIG"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc28-491d-b88a-f3390f3ed176 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_CONFIG"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-44f1-af72-c7451e86c480 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_CONFIG"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc23-4d95-bc9a-88e224809e2b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-4922-af99-d4650604e478 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-4053-83f1-57c6916ece10 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4457-9220-f4534b34e657 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-48c7-a26f-8c18ec16b6ea 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_MODE"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4538-bae6-e600d346b2c8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_MODE"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4591-b75d-f8f6fd543998 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_MODE"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-467e-8c8c-6112dd7e79b8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_MODE"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4633-91f8-4d54ab4d5c4e 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-46ca-a406-1024892127de 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-4d06-9207-6fdb08b0fb94 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-44c4-9ea4-ff6d335a37e6 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-43d0-877a-86869a1bdf5b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SCHEMAS_IDS_ID_SUBJECTS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-468c-8a87-8119c32eda64 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SCHEMAS_IDS_ID_SUBJECTS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-41c9-833f-7be3e5e8c6ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SCHEMAS_IDS_ID_SUBJECTS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-499a-ae76-20b9b506affe 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SCHEMAS_IDS_ID_SUBJECTS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-4581-86da-6c8b4297f8ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SCHEMAS_IDS_ID_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-47de-b095-c8cbacd72638 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SCHEMAS_IDS_ID_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc28-491d-b88a-f3390f3ed176 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SCHEMAS_IDS_ID_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-44f1-af72-c7451e86c480 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SCHEMAS_IDS_ID_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc23-4d95-bc9a-88e224809e2b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SUBJECT_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-4922-af99-d4650604e478 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SUBJECT_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-4053-83f1-57c6916ece10 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SUBJECT_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4457-9220-f4534b34e657 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SUBJECT_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-48c7-a26f-8c18ec16b6ea 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4538-bae6-e600d346b2c8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4591-b75d-f8f6fd543998 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-467e-8c8c-6112dd7e79b8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4633-91f8-4d54ab4d5c4e 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION_REFERENCED_BY"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-46ca-a406-1024892127de 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION_REFERENCED_BY"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-4d06-9207-6fdb08b0fb94 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION_REFERENCED_BY"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-44c4-9ea4-ff6d335a37e6 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION_REFERENCED_BY"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-43d0-877a-86869a1bdf5b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION_SCHEMA"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-468c-8a87-8119c32eda64 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION_SCHEMA"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-41c9-833f-7be3e5e8c6ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION_SCHEMA"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-499a-ae76-20b9b506affe 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "GET_SUBJECT_VERSIONS_VERSION_SCHEMA"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-4581-86da-6c8b4297f8ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "POST_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-47de-b095-c8cbacd72638 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "POST_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc28-491d-b88a-f3390f3ed176 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "POST_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-44f1-af72-c7451e86c480 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "POST_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc23-4d95-bc9a-88e224809e2b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "POST_SUBJECT_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-4922-af99-d4650604e478 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "POST_SUBJECT_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-4053-83f1-57c6916ece10 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "POST_SUBJECT_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4457-9220-f4534b34e657 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "POST_SUBJECT_VERSIONS"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-48c7-a26f-8c18ec16b6ea 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "PUT_CONFIG"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4538-bae6-e600d346b2c8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "PUT_CONFIG"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4591-b75d-f8f6fd543998 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "PUT_CONFIG"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-467e-8c8c-6112dd7e79b8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "PUT_CONFIG"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4633-91f8-4d54ab4d5c4e 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "PUT_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-46ca-a406-1024892127de 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "PUT_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-4d06-9207-6fdb08b0fb94 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "PUT_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-44c4-9ea4-ff6d335a37e6 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "PUT_CONFIG_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-43d0-877a-86869a1bdf5b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "PUT_MODE"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-468c-8a87-8119c32eda64 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "PUT_MODE"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-41c9-833f-7be3e5e8c6ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "PUT_MODE"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-499a-ae76-20b9b506affe 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "PUT_MODE"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-4581-86da-6c8b4297f8ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "PUT_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-47de-b095-c8cbacd72638 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "kclient", "endpoint_name": "PUT_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc28-491d-b88a-f3390f3ed176 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "PUT_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-44f1-af72-c7451e86c480 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz {"audit_transport_mode": "rpc", "endpoint_name": "PUT_MODE_SUBJECT"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc23-4d95-bc9a-88e224809e2b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz_get_schemas_ids_id {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-4922-af99-d4650604e478 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz_get_schemas_ids_id
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz_get_schemas_ids_id {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-4053-83f1-57c6916ece10 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz_get_schemas_ids_id
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz_get_schemas_ids_id {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4457-9220-f4534b34e657 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz_get_schemas_ids_id
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz_get_schemas_ids_id {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-48c7-a26f-8c18ec16b6ea 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz_get_schemas_ids_id
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz_get_subjects {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4538-bae6-e600d346b2c8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz_get_subjects
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz_get_subjects {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4591-b75d-f8f6fd543998 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz_get_subjects
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz_get_subjects {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-467e-8c8c-6112dd7e79b8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz_get_subjects
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_authz_get_subjects {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4633-91f8-4d54ab4d5c4e 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_authz_get_subjects
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_context_config_authz {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-46ca-a406-1024892127de 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_context_config_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_context_config_authz {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-4d06-9207-6fdb08b0fb94 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_context_config_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_context_config_authz {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-44c4-9ea4-ff6d335a37e6 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_context_config_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_context_config_authz {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-43d0-877a-86869a1bdf5b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_context_config_authz
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_context_qualified_subjects {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-468c-8a87-8119c32eda64 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_context_qualified_subjects
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_context_qualified_subjects {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-41c9-833f-7be3e5e8c6ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_context_qualified_subjects
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_context_qualified_subjects {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-499a-ae76-20b9b506affe 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_context_qualified_subjects
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_context_qualified_subjects {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc27-4581-86da-6c8b4297f8ad 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_context_qualified_subjects
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_delete_context {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc21-47de-b095-c8cbacd72638 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_delete_context
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_delete_context {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc28-491d-b88a-f3390f3ed176 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_delete_context
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_delete_context {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-44f1-af72-c7451e86c480 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_delete_context
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_delete_context {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc23-4d95-bc9a-88e224809e2b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_delete_context
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_get_contexts {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-4922-af99-d4650604e478 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_get_contexts
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_get_contexts {"audit_transport_mode": "kclient"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-4053-83f1-57c6916ece10 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_get_contexts
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_get_contexts {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4457-9220-f4534b34e657 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_get_contexts
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_get_contexts {"audit_transport_mode": "rpc"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc24-48c7-a26f-8c18ec16b6ea 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_get_contexts
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_public {"audit_transport_mode": "kclient", "endpoint_name": "GET_SCHEMAS_TYPES"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1e-4538-bae6-e600d346b2c8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_public
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_public {"audit_transport_mode": "kclient", "endpoint_name": "GET_SCHEMAS_TYPES"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4591-b75d-f8f6fd543998 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_public
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_public {"audit_transport_mode": "rpc", "endpoint_name": "GET_SCHEMAS_TYPES"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-467e-8c8c-6112dd7e79b8 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_public
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_public {"audit_transport_mode": "rpc", "endpoint_name": "GET_SCHEMAS_TYPES"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4633-91f8-4d54ab4d5c4e 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_public
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_public {"audit_transport_mode": "kclient", "endpoint_name": "SCHEMA_REGISTRY_STATUS_READY"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-46ca-a406-1024892127de 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_public
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_public {"audit_transport_mode": "kclient", "endpoint_name": "SCHEMA_REGISTRY_STATUS_READY"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-4d06-9207-6fdb08b0fb94 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_public
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_public {"audit_transport_mode": "rpc", "endpoint_name": "SCHEMA_REGISTRY_STATUS_READY"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc20-44c4-9ea4-ff6d335a37e6 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_public
FAIL AuditLogTestSchemaRegistryACLs test_sr_audit_public {"audit_transport_mode": "rpc", "endpoint_name": "SCHEMA_REGISTRY_STATUS_READY"} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc26-43d0-877a-86869a1bdf5b 0/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=AuditLogTestSchemaRegistryACLs&test_method=test_sr_audit_public
FLAKY(PASS) DataMigrationsApiTest test_conflicting_names null integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1d-44f1-af72-c7451e86c480 10/11 Test PASSES after retries.No significant increase in flaky rate(baseline=0.0000, p0=1.0000, reject_threshold=0.0100. adj_baseline=0.1000, p1=0.3487, trust_threshold=0.5000) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=DataMigrationsApiTest&test_method=test_conflicting_names
FLAKY(FAIL) DatalakeCustomPartitioningTest test_basic {"catalog_type": "nessie", "cloud_storage_type": 1} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc1f-467e-8c8c-6112dd7e79b8 9/11 Test FAILS after retries.Significant increase in flaky rate(baseline=0.0000, p0=0.0000, reject_threshold=0.0100) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=DatalakeCustomPartitioningTest&test_method=test_basic
FLAKY(FAIL) SchemaRegistryRpcTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4591-b75d-f8f6fd543998 10/11 The test was found to be new, and no failures are allowed https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryRpcTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY(PASS) ShardPlacementTest test_node_join {"disable_license": false} integration https://buildkite.com/redpanda/redpanda/builds/82720#019d519f-dc25-4633-91f8-4d54ab4d5c4e 10/11 Test PASSES after retries.No significant increase in flaky rate(baseline=0.0000, p0=1.0000, reject_threshold=0.0100. adj_baseline=0.1000, p1=0.3487, trust_threshold=0.5000) https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=ShardPlacementTest&test_method=test_node_join
test results on build#82735
test_status test_class test_method test_arguments test_kind job_url passed reason test_history
FLAKY(FAIL) SchemaRegistryRpcTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82735#019d522c-05b4-426a-8d72-b58382d88765 10/11 The test was found to be new, and no failures are allowed https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryRpcTransportStressTest&test_method=test_no_errors_during_leadership_transfers
test results on build#82745
test_status test_class test_method test_arguments test_kind job_url passed reason test_history
FLAKY SchemaRegistryKafkaClientTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82745#019d545c-26ad-40e8-aefe-76e530d2de34 18/19 https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryKafkaClientTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY SchemaRegistryKafkaClientTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82745#019d545c-26ad-4822-be74-983c51e4512e 16/19 https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryKafkaClientTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY(FAIL) SchemaRegistryKafkaClientTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82745#019d545c-26ad-48d2-947a-720eaf5e7d21 28/30 The test was found to be new, and no failures are allowed https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryKafkaClientTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY SchemaRegistryKafkaClientTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82745#019d545c-4c9c-4b80-997a-61d0de1c2617 16/17 https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryKafkaClientTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY SchemaRegistryRpcTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82745#019d545c-26ad-40e8-aefe-76e530d2de34 18/19 https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryRpcTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY SchemaRegistryRpcTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82745#019d545c-26ad-4822-be74-983c51e4512e 16/19 https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryRpcTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY(FAIL) SchemaRegistryRpcTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82745#019d545c-26ad-48d2-947a-720eaf5e7d21 27/30 The test was found to be new, and no failures are allowed https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryRpcTransportStressTest&test_method=test_no_errors_during_leadership_transfers
test results on build#82754
test_status test_class test_method test_arguments test_kind job_url passed reason test_history
FLAKY SchemaRegistryKafkaClientTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82754#019d54e7-d915-4bed-b93f-69aa2e25ed6c 94/98 https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryKafkaClientTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY SchemaRegistryKafkaClientTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82754#019d54e7-d91a-4cca-8471-cac7d5c9346f 86/93 https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryKafkaClientTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY SchemaRegistryRpcTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82754#019d54e7-d915-4bed-b93f-69aa2e25ed6c 93/98 https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryRpcTransportStressTest&test_method=test_no_errors_during_leadership_transfers
FLAKY SchemaRegistryRpcTransportStressTest test_no_errors_during_leadership_transfers null integration https://buildkite.com/redpanda/redpanda/builds/82754#019d54e7-d91a-4cca-8471-cac7d5c9346f 88/94 https://redpanda.metabaseapp.com/dashboard/87-tests?tab=142-dt-individual-test-history&test_class=SchemaRegistryRpcTransportStressTest&test_method=test_no_errors_during_leadership_transfers

do_delete_subject_impermanent had a latent ordering bug:
get_versions(include_deleted::no) was called BEFORE
is_subject_deleted(), so on retry after a write collision
where the subject was already soft-deleted (by the winning
writer), get_versions would throw subject_not_found — which
propagated as HTTP 404 to the client.

Fix by checking is_subject_deleted first. A cached version
list (via lw_shared_ptr) preserves the pre-delete version
list across retries, since after a subject-level soft delete
all versions are marked deleted and the store can no longer
distinguish individually-deleted versions from those deleted
as part of the subject-level operation.

This bug was never observed on the kafka::client transport
because the full Kafka protocol round-trip (SASL, request
queuing, acks) acts as a natural pacer between different
nodes' writes, making write collisions rare. The RPC
transport's lower latency tightens the timing window enough
to trigger collisions routinely in integration tests.

Co-Authored-By: Claude Opus 4.6 <[email protected]>
Signed-off-by: Oren Leiman <[email protected]>
oleiman added 4 commits April 2, 2026 23:52
Returns the term of the currently cached leader.

Signed-off-by: Oren Leiman <[email protected]>
Allows clients to proactively clear the leaders cache entry for some ntp
and wait for the metadata dissemination service to repopulate it. This is
particularly useful for servicing RPC-based read operations that might have
a tighter deadline upstream (e.g. an HTTP GET).

Signed-off-by: Oren Leiman <[email protected]>
Also adds partition_operation_failed to list of retriable errors

Signed-off-by: Oren Leiman <[email protected]>
@oleiman oleiman force-pushed the sr/noticket/sr-on-kdrpc branch from 8852936 to 5f0fbab Compare April 3, 2026 06:53
@oleiman
Copy link
Copy Markdown
Member Author

oleiman commented Apr 3, 2026

/ci-repeat 1
skip-units
skip-rebase
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"DELETE_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_MODE"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"PUT_CONFIG"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz_get_subjects@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_public@{"audit_transport_mode":"kclient","endpoint_name":"GET_SCHEMAS_TYPES"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"DELETE_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SUBJECT_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"POST_SUBJECT_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz_get_schemas_ids_id@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_get_contexts@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"COMPATIBILITY_SUBJECT_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_CONFIG"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SCHEMAS_IDS_ID_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"POST_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"PUT_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_delete_context@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"DELETE_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SUBJECT_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"POST_SUBJECT_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz_get_schemas_ids_id@{"audit_transport_mode":"rpc"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_get_contexts@{"audit_transport_mode":"rpc"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"COMPATIBILITY_SUBJECT_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_CONFIG"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SCHEMAS_IDS_ID_VERSIONS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"POST_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"PUT_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_delete_context@{"audit_transport_mode":"rpc"}
tests/rptest/tests/schema_registry_test.py::SchemaRegistryRpcTransportStressTest.test_no_errors_during_leadership_transfers
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"DELETE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION_REFERENCED_BY"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"PUT_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_context_config_authz@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_public@{"audit_transport_mode":"kclient","endpoint_name":"SCHEMA_REGISTRY_STATUS_READY"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"DELETE_SUBJECT_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SCHEMAS_IDS_ID_SUBJECTS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION_SCHEMA"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"PUT_MODE"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_context_qualified_subjects@{"audit_transport_mode":"rpc"}
tests/rptest/tests/datalake/custom_partitioning_test.py::DatalakeCustomPartitioningTest.test_basic@{"catalog_type":"nessie","cloud_storage_type":1}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"DELETE_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_MODE"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"PUT_CONFIG"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz_get_subjects@{"audit_transport_mode":"rpc"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_public@{"audit_transport_mode":"rpc","endpoint_name":"GET_SCHEMAS_TYPES"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"DELETE_SUBJECT_VERSION"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SCHEMAS_IDS_ID_SUBJECTS"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION_SCHEMA"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"kclient","endpoint_name":"PUT_MODE"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_context_qualified_subjects@{"audit_transport_mode":"kclient"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"DELETE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_MODE_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"GET_SUBJECT_VERSIONS_VERSION_REFERENCED_BY"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_authz@{"audit_transport_mode":"rpc","endpoint_name":"PUT_CONFIG_SUBJECT"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_context_config_authz@{"audit_transport_mode":"rpc"}
tests/rptest/tests/audit_log_test.py::AuditLogTestSchemaRegistryACLs.test_sr_audit_public@{"audit_transport_mode":"rpc","endpoint_name":"SCHEMA_REGISTRY_STATUS_READY"}

@vbotbuildovich
Copy link
Copy Markdown
Collaborator

Retry command for Build#82735

please wait until all jobs are finished before running the slash command

/ci-repeat 1
skip-redpanda-build
skip-units
skip-rebase
tests/rptest/tests/schema_registry_test.py::SchemaRegistryRpcTransportStressTest.test_no_errors_during_leadership_transfers

oleiman added 13 commits April 3, 2026 09:56
tries to refresh the leader cache on not_leader error. Useful for situations
where calling code is latency sensitive, e.g. servicing a schema registry
request.

Signed-off-by: Oren Leiman <[email protected]>
Required for usage in SR

Signed-off-by: Oren Leiman <[email protected]>
Reliable version that tries to mitigate not_leader errors

Signed-off-by: Oren Leiman <[email protected]>
Signed-off-by: Oren Leiman <[email protected]>
Some of this might be better placed under k/d/rpc/tests, but this is the
specific functionality required by schema registry itself.

Signed-off-by: Oren Leiman <[email protected]>
And plumb into seq_writer & service.

Selected at runtime, dependent on use_rpc config and cluster version.

Signed-off-by: Oren Leiman <[email protected]>
SchemaRegistryEndpoints now asserts that every subclass explicitly sets
schema_registry_use_rpc.

RPC-transport-enabled tests:
- SchemaRegistryModeNotMutableTest
- SchemaRegistryModeMutableTest
- SchemaRegistryContextRpcTransportTest
- SchemaRegistryBasicAuthRpcTransportTest
- SchemaRegistryRpcTransportTest
- SchemaRegistryAutoAuthTest
- SchemaRegistryConfluentClient
- SchemaRegistryCompatibilityModes
- SchemaRegistryACLTest
- SchemaRegistryContextAuthzRpcTransportTest
- SchemaRegistryRpcTransportStressTest
- ClusterLinkingSchemaRegistry
- SchemaRegistryContextMetricsTest

Signed-off-by: Oren Leiman <[email protected]>
kafka/data/rpc & pp/schema_registry
@oleiman oleiman force-pushed the sr/noticket/sr-on-kdrpc branch from 5f0fbab to 2bda853 Compare April 3, 2026 16:58
@oleiman
Copy link
Copy Markdown
Member Author

oleiman commented Apr 3, 2026

/ci-repeat 3
skip-units
dt-repeat=20
tests/rptest/tests/schema_registry_test.py::SchemaRegistryRpcTransportStressTest
tests/rptest/tests/schema_registry_test.py::SchemaRegistryKafkaClientTransportStressTest

@vbotbuildovich
Copy link
Copy Markdown
Collaborator

Retry command for Build#82745

please wait until all jobs are finished before running the slash command

/ci-repeat 1
skip-redpanda-build
skip-units
skip-rebase
tests/rptest/tests/schema_registry_test.py::SchemaRegistryKafkaClientTransportStressTest.test_no_errors_during_leadership_transfers
tests/rptest/tests/schema_registry_test.py::SchemaRegistryRpcTransportStressTest.test_no_errors_during_leadership_transfers

@oleiman oleiman force-pushed the sr/noticket/sr-on-kdrpc branch from 28bfbd9 to fdad016 Compare April 3, 2026 17:53
@oleiman
Copy link
Copy Markdown
Member Author

oleiman commented Apr 3, 2026

ci-repeat 3
skip-units
dt-repeat=20
tests/rptest/tests/schema_registry_test.py::SchemaRegistryRpcTransportStressTest
tests/rptest/tests/schema_registry_test.py::SchemaRegistryKafkaClientTransportStressTest

@oleiman
Copy link
Copy Markdown
Member Author

oleiman commented Apr 3, 2026

/ci-repeat 3
skip-units
dt-repeat=20
tests/rptest/tests/schema_registry_test.py::SchemaRegistryRpcTransportStressTest
tests/rptest/tests/schema_registry_test.py::SchemaRegistryKafkaClientTransportStressTest

@vbotbuildovich
Copy link
Copy Markdown
Collaborator

vbotbuildovich commented Apr 3, 2026

Retry command for Build#82751

please wait until all jobs are finished before running the slash command

/ci-repeat 1
skip-redpanda-build
skip-units
skip-rebase
tests/rptest/tests/schema_registry_test.py::SchemaRegistryKafkaClientTransportStressTest.test_no_errors_during_leadership_transfers
tests/rptest/tests/schema_registry_test.py::SchemaRegistryRpcTransportStressTest.test_no_errors_during_leadership_transfers

@oleiman oleiman force-pushed the sr/noticket/sr-on-kdrpc branch from fdad016 to 6daa586 Compare April 3, 2026 19:51
@oleiman
Copy link
Copy Markdown
Member Author

oleiman commented Apr 3, 2026

/ci-repeat 1
skip-redpanda-build
skip-units
skip-rebase
dt-repeat=100
tests/rptest/tests/schema_registry_test.py::SchemaRegistryKafkaClientTransportStressTest.test_no_errors_during_leadership_transfers
tests/rptest/tests/schema_registry_test.py::SchemaRegistryRpcTransportStressTest.test_no_errors_during_leadership_transfers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/build area/redpanda claude-review Adding this label to a PR will trigger a workflow to review the code using claude.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants