docs: add string_split processor to Cloud#547
Conversation
Added new string_split processor (available in Redpanda Connect 4.86.0) to Cloud documentation. Changes: - Created processor page with include directive from redpanda-connect - Added to navigation (alphabetically after split) - Added to April 2026 what's new section - Included page alias for backward compatibility The string_split processor splits strings into multiple parts using a delimiter, creating new messages or fields for each part. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
✅ Deploy Preview for rp-cloud ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
📝 WalkthroughWalkthroughThree documentation files were updated to introduce the Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
micheleRP
left a comment
There was a problem hiding this comment.
Review Summary
Small, clean PR. One ordering fix needed.
Findings
1. Nav ordering is wrong (Bug)
string_split is placed after split, but alphabetically it should come after sql_select:
split
sql_insert ← "sql" < "str"
sql_raw
sql_select
string_split ← should be here
switch
Currently the diff inserts it between split and sql_insert, which breaks alphabetical ordering. Move it to after sql_select (before switch).
2. Page and include look correct (Positive)
Standard pattern: title, page-alias, include with tag=single-source. Consistent with other processor pages.
3. What's New entry looks good (Positive)
Properly placed in April 2026 section with a clear description and xref link.
Verdict
Move the nav entry from after split to after sql_select, then good to merge.
micheleRP
left a comment
There was a problem hiding this comment.
one little fix please!
Move string_split processor to correct alphabetical position after sql_select (before switch). Previously placed between split and sql_insert which broke alphabetical ordering. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Summary
Adds the new
string_splitprocessor to Redpanda Cloud documentation. This processor was added in Redpanda Connect 4.86.0.Changes
✅ Processor page created:
modules/develop/pages/connect/components/processors/string_split.adoc✅ Navigation updated:
modules/ROOT/nav.adocsplitprocessor✅ What's New updated:
What is string_split?
The
string_splitprocessor splits strings into multiple parts using a delimiter, creating new messages or fields for each part. It's useful for:Testing
Related
Co-Authored-By: Claude Sonnet 4.5 noreply@anthropic.com