Copy a Kafka topic from/to another topic or S3 or local directory.
$ kafkacp <source> <destination>
Source and destination can be any stage URL.
In order to use Kafka as a source or destination, use the following URL scheme:
kafka://host/topic
Use a file URL to represent a source or destination, a trailing slash is optional.
file:///tmp/backups/
Use an S3 URL with optional credentials. For example:
s3://AWS_KEY:AWS_SECRET@BUCKET:AWS_REGION/path
- No support for authentication, yet.
- Messages should have a string key.
- Can only copy the entire topic.