Fix DynamoDB CDC S3 example startup failure in integration workflow#434
Closed
Copilot wants to merge 2 commits into
Closed
Fix DynamoDB CDC S3 example startup failure in integration workflow#434Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
Conversation
✅ Deploy Preview for redpanda-connect ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job for integration tests - dynamodb_cdc
Fix DynamoDB CDC S3 example startup failure in integration workflow
Jun 1, 2026
JakeSCahill
approved these changes
Jun 2, 2026
JakeSCahill
added a commit
that referenced
this pull request
Jun 16, 2026
…L example - Add gcp_bigquery_write_api cookbook with 7 tested example pipelines (basic stream, exactly-once, auto-create table, CDC upsert/upsert_delete, multi-table routing, throughput tuning) plus nav entry, test-config, README - Fix doris_stream_load: correct introduced version to 4.96.0 and expand FE/BE acronyms (page + overrides.json) - Set valid object_canned_acl on dynamodb_cdc to-s3 example (closes #434) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Integration Tests - dynamodb_cdcfailed becauseto-s3.yamlinitializedaws_s3with an invalid empty canned ACL. This change makes the S3 output config explicitly valid so the example pipeline can start under current Redpanda Connect validation.Root cause
aws_s3output rejected an emptyobject_canned_aclvalue during pipeline initialization.Change
modules/cookbooks/examples/dynamodb_cdc/to-s3.yamlto set a valid canned ACL:object_canned_acl: privateWhy this is scoped
to-s3cookbook path.