Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion local-antora-playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ content:
- url: .
branches: HEAD
- url: https://github.com/redpanda-data/documentation
branches: [main, v/*, shared, site-search]
branches: [DOC-1907-paginate-messages-events, v/*, shared, site-search]
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

Revert non-standard docs branch to pass CI.

Line 18 is triggering the Check playbook branches failure. This committed feature-branch override should be reverted to the standard branch before merge.

Suggested fix
-    branches: [DOC-1907-paginate-messages-events, v/*, shared, site-search]
+    branches: [main, v/*, shared, site-search]
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
branches: [DOC-1907-paginate-messages-events, v/*, shared, site-search]
branches: [main, v/*, shared, site-search]
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@local-antora-playbook.yml` at line 18, The playbook's branches list contains
a non-standard feature branch "DOC-1907-paginate-messages-events" which is
causing the "Check playbook branches" CI failure; edit the branches array (the
line with branches: [...]) to remove that feature branch and restore the
standard set (e.g., keep only the canonical entries such as v/*, shared,
site-search) so the committed playbook no longer overrides branches for CI.

- url: https://github.com/redpanda-data/docs-site
branches: [main]
start_paths: [home]
Expand Down
1 change: 1 addition & 0 deletions modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@
** xref:develop:consume-data/index.adoc[Consume Data]
*** xref:develop:consume-data/consumer-offsets.adoc[Consumer Offsets]
*** xref:develop:consume-data/follower-fetching.adoc[Follower Fetching]
*** xref:develop:consume-data/paginate-messages-events.adoc[]
** xref:develop:http-proxy.adoc[]
** xref:develop:data-transforms/index.adoc[]
*** xref:develop:data-transforms/how-transforms-work.adoc[Overview]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= Paginate Messages in Redpanda Console
:description: Retrieve more than the default batch of messages in Redpanda Console by paging through larger result sets.

include::ROOT:console:ui/paginate-messages-events.adoc[tag=single-source]
4 changes: 4 additions & 0 deletions modules/get-started/pages/whats-new-cloud.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ Serverless clusters now support up to 100 Redpanda Connect pipelines and 100 MCP

== March 2026

=== Redpanda Console: unlimited pagination for messages

Redpanda Console now supports paginating past the previous 500-record cap when you browse topic messages, so you can inspect large topics without being limited to the initial result set. See xref:develop:consume-data/paginate-messages-events.adoc[].

=== Redpanda Connect updates

* Inputs:
Expand Down
Loading