Redpanda
Step 1: Set up the collect buffer bucket
Step 2: Deliver Redpanda topics to S3
Option A: Redpanda Cloud managed S3 Sink connector
Option B: Kafka Connect with an S3 sink connector (self-hosted)
Option C: Redpanda Connect
input:
kafka:
addresses: ["localhost:9092"]
topics: ["my-logs-topic"]
consumer_group: "scanner-collect-buffer"
output:
aws_s3:
bucket: my-company-scanner-collect-buffer
path: 'redpanda/my-logs-topic/${! now().ts_format("2006/01/02") }/${! timestamp_unix_nano() }.jsonl.gz'
region: us-east-1
batching:
count: 10000
period: 60s
processors:
- archive:
format: lines
- compress:
algorithm: gzipStep 3: Ingest via Scanner Collect
Last updated
Was this helpful?