v0.13
🚀 What’s New?
This release introduces templating for the target table name 🎯 and includes no other changes.
🔧 Features
It enables dynamic generation of the QuestDB target table name based on the message key and the originating topic.
For example: table=${topic}_${key}
or table=from_kafka_${topic}
Supported placeholders: ${key}
and ${topic}
. Placeholders are case-sensitive and an unsupported placeholder will throw an error on connector startup. When a message does not have a key then ${key}
resolves to a string null
.
🔗 More Info
For more details, see the original PR: #24.
Full Changelog: v0.12...v0.13