Amazon S3 connector
Use the s3: scheme. S3 is sink-only and supports complete replication. It
does not provide table merge or complete-atomic behavior; choose the object
layout and replacement convention in the job that consumes the output.
Object layout
Section titled “Object layout”In object-per-row mode, row.keyColumn supplies each object key and
row.contentColumn supplies its content. In file mode, the selected file
manager streams all rows to one key identified by keyFileName; choose CSV or
ORC according to the local file constraints.
Existing objects at the selected keys can be replaced. There is no transaction
covering a group of objects, no incremental table merge, and no rollback of
objects already uploaded when a later write fails.
The s3: connection identifies the service endpoint and bucket path. Keep
layout-only settings under sink.connect.parameter.*:
mode=completesink.connect=${S3_ENDPOINT_AND_BUCKET}sink.file.format=csvsink.connect.parameter.row.isObject=falsesink.connect.parameter.keyFileName=${S3_OBJECT_KEY}The current manager requires explicit S3 credentials. Supply them through the deployment’s environment-managed secret injection and never place resolved keys in a connection string, committed options file, command history, image caption, or support log. Confirm endpoint, bucket, prefix, encryption policy, and object-write permissions with the same runtime identity before a large transfer.

