Amazon S3 Sink Connector for Confluent Cloud¶
Note
If you are installing the connector locally for Confluent Platform, see Amazon S3 Sink Connector for Confluent Platform.
You can use the Kafka Connect Amazon S3 sink connector to export data from Apache Kafka® topics to S3 objects in either Avro, JSON, or Bytes formats. Depending on your environment, the S3 connector can export data by guaranteeing exactly-once delivery semantics to consumers of the S3 objects it produces.
The Amazon S3 sink connector periodically polls data from Kafka and in turn uploads it to S3. A partitioner is used to split the data of every Kafka partition into chunks. Each chunk of data is represented as an S3 object. The key name encodes the topic, the Kafka partition, and the start offset of this data chunk. If no partitioner is specified in the configuration, the default partitioner which preserves Kafka partitioning is used. The size of each data chunk is determined by the number of records written to S3 and by schema compatibility.
Features¶
The Amazon S3 Sink connector for Confluent Cloud provides the following features:
- Exactly Once Delivery: Records that are exported using a deterministic partitioner are delivered with exactly-once semantics regardless of the eventual consistency of S3.
- Data Format with or without Schema: Out of the box, the connector supports writing data to S3 in Avro, JSON, and Bytes. Schema validation is disabled for JSON.
- Schema Evolution:
schema.compatibility
is set toNONE
. - Partitioner: The connector supports the
TimeBasedPartitioner
class based on the Kafka classTimeStamp
. - Flush size:
flush.size
defaults to 1000. For example, if you use the default setting of 1000 and your topic has six partitions, files start to be created in the storage bucket after more than 1000 records exist in each partition. Note that the default value of 1000 can be increased if needed.
Refer to Confluent Cloud connector limitations for additional information.
S3 Bucket Policy¶
The AWS account accessing the S3 bucket must have the following permissions:
- ListAllMyBuckets
- ListBucket
- GetBucketLocation
- PutObject
- GetObject
- AbortMultipartUpload
- ListMultipartUpload
- ListMultipartUploadParts
- ListBucketMultipartUploads
You can copy the following JSON when creating the bucket policy. Change <bucket-name>
to a real bucket name. For more information, see How Do I Add an S3 Bucket Policy.
{
"Version":"2012-10-17",
"Statement":[
{
"Effect":"Allow",
"Action":[
"s3:ListAllMyBuckets"
],
"Resource":"arn:aws:s3:::*"
},
{
"Effect":"Allow",
"Action":[
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource":"arn:aws:s3:::<bucket-name>"
},
{
"Effect":"Allow",
"Action":[
"s3:PutObject",
"s3:GetObject",
"s3:AbortMultipartUpload",
"s3:ListMultipartUploadParts",
"s3:ListBucketMultipartUploads"
],
"Resource":"arn:aws:s3:::<bucket-name>/*"
}
]
}
Quick Start¶
Use this quick start to get up and running with the Confluent Cloud S3 sink connector. The quick start provides the basics of selecting the connector and configuring it to stream events to an S3 bucket.
- Prerequisites
- Authorized access to a Confluent Cloud cluster on AWS.
- The Confluent Cloud CLI installed and configured for the cluster. See Install and Configure the Confluent Cloud CLI.
- An AWS S3 bucket in the same region as your Confluent Cloud cluster.
- An AWS S3 Bucket Policy configured for bucket access.
- An AWS account configured with Access Keys. You use these access keys when setting up the connector.
- Either one of the following to use for the Kafka cluster credentials fields:
- A Confluent Cloud API key and secret. After you have created your cluster, go to Cluster settings > API access > Create Key.
- A Confluent Cloud service account for the S3 connector.
- (Optional) Confluent Cloud Schema Registry enabled for your cluster, if you are using a messaging schema (like Apache Avro). See Managing Schemas for Topics in Confluent Cloud.
See also
For an example that shows fully-managed Confluent Cloud connectors in action with Confluent Cloud KSQL, see the Cloud ETL demo. The demo also shows how to use Confluent Cloud CLI to manage your resources in Confluent Cloud.
Using the Confluent Cloud GUI¶
Step 1: Launch your Confluent Cloud cluster.¶
See the Confluent Cloud Quick Start for installation instructions.
Step 3: Select your connector.¶
Click the Amazon S3 Sink connector icon.
Step 4: Enter the connector details.¶
Note
- Make sure you have all your prerequisites completed.
- An asterisk (
*
) designates a required entry.
Complete the following and click Continue.
Enter a Connector Name.
Enter your Kafka Cluster credentials. The credentials are either the API key and secret or the service account API key and secret.
Enter one or more Topic names. Separate multiple topic names with a comma.
Step 5: Enter the destination details.¶
Complete the following and click Continue.
Important
Your AWS credentials and bucket name are validated here. Make sure you enter these correctly.
Enter your AWS credentials.
Enter the S3 bucket name.
Select the message format. Note that you have to have Confluent Cloud Schema Registry configured if using a schema-based message format (like Avro). See Managing Schemas for Topics in Confluent Cloud.
Select the Time interval that sets how you want your messages grouped in the S3 bucket. For example, if you select Hourly, messages are grouped into folders for each hour data is streamed to the bucket.
Enter the Flush size. This value defaults to 1000. For example, if you use the default setting of 1000 and your topic has six partitions, files start to be created in the storage bucket after more than 1000 records exist in each partition. Note that the default value of 1000 can be increased if needed.
Enter the number of tasks in use by the connector. Do not enter a value that exceeds the Max number displayed.
Configuration properties that are not shown in the Confluent Cloud UI use the default values. See Amazon S3 Sink Configuration Properties for default values and property definitions.
Step 6: Launch the connector.¶
Verify the following and click Launch.
Make sure your data is going to the correct bucket.
Check that the last directory in the path shown is using the Time Interval you entered earlier.
Step 7: Check the connector status.¶
The status for the connector should go from Provisioning to Running.
Step 8: Check the S3 bucket.¶
Go to the AWS Management Console and select Storage > S3.
Open your S3 bucket.
Open your topic folder and each subsequent folder until you see your messages displayed.
For additional information about the S3 connector see Amazon S3 Sink Connector for Confluent Platform. Note that not all Confluent Platform S3 connector features are provided in the Confluent Cloud S3 connector.
Using the Confluent Cloud CLI¶
Complete the following steps to set up and run the connector using the Confluent Cloud CLI.
Note
Make sure you have all your prerequisites completed.
Step 1: List the available connectors.¶
Enter the following command to list available connectors:
ccloud connector-catalog list
Step 2: Show the required connector configuration properties.¶
Enter the following command to show the required connector properties:
ccloud connector-catalog describe <connector-catalog-name>
For example:
ccloud connector-catalog describe S3_SINK
Example output:
Following are the required configs:
connector.class
kafka.api.key
kafka.api.secret
aws.access.key.id
aws.secret.access.key
topics
data.format
s3.bucket.name
time.interval
tasks.max
Step 3: Create the connector configuration file.¶
Create a JSON file that contains the connector configuration properties. The following example shows the required connector properties.
{
"name" : "confluent-s3-sink",
"connector.class": "S3_SINK",
"kafka.api.key": "<my-kafka-api-key>",
"kafka.api.secret" : "<my-kafka-api-secret>",
"aws.access.key.id" : "<my-aws-access-key>",
"aws.secret.access.key": "<my-aws-access-key-secret>",
"topics": "pageviews, users",
"data.format": "AVRO",
"s3.bucket.name": "s3-connector-dev",
"time.interval" : "HOURLY",
"tasks.max" : "1"
}
Note the following property definitions:
"name"
: Sets a name for your new connector."connector.class"
: Identifies the connector plugin name."topics"
: Identifies the topic name or a comma-separated list of topic names."data.format"
: Sets the message format. Valid entries are AVRO, JSON, or BYTES."time.interval"
: Sets how your messages grouped in the S3 bucket. Valid entries are DAILY or HOURLY.
Configuration properties that are not listed use the default values. See Amazon S3 Sink Configuration Properties for default values and property definitions.
Step 3: Load the properties file and create the connector.¶
Enter the following command to load the configuration and start the connector:
ccloud connector create --config <file-name>.json
For example:
ccloud connector create --config s3-sink-config.json
Example output:
Created connector confluent-s3-sink jtt-ix4dl
Step 4: Check the connector status.¶
Enter the following command to check the connector status:
ccloud connector list
Example output:
ID | Name | Status | Type
+-----------+-------------------+---------+------+
jtt-ix4dl | confluent-s3-sink | RUNNING | sink
Step 4: Check the S3 bucket.¶
Go to the AWS Management Console and select Storage > S3.
Open your S3 bucket.
Open your topic folder and each subsequent folder until you see your messages displayed.
For additional information about the S3 connector see Amazon S3 Sink Connector for Confluent Platform. Note that not all Confluent Platform S3 connector features are provided in the Confluent Cloud S3 connector.