Kafka Connect เป็นเฟรมเวิร์กสำหรับ การเชื่อมต่อ Kafka เข้ากับระบบภายนอก (ฐานข้อมูล, storage, services) — ย้ายข้อมูลเข้าและออกจาก Kafka โดยไม่ต้องเขียนโค้ดเอง โดยใช้ connectors ที่นำกลับมาใช้ซ้ำได้ ช่วยให้การสร้าง data pipeline ง่ายขึ้น
Kafka Connect ทำอะไรได้บ้าง
KAFKA CONNECT → a framework for streaming data BETWEEN Kafka and external systems:
→ SOURCE connectors → pull data FROM external systems INTO Kafka (e.g. a database → Kafka)
→ SINK connectors → push data FROM Kafka TO external systems (e.g. Kafka → a data warehouse)
→ uses reusable CONNECTORS (pre-built integrations) instead of custom producer/consumer code
→ "plug in" connectors to integrate systems with Kafka
