Hi, is anyone here familiar with Quarkus Kafka Streams applications? If so - is there a way to control output topic configuration when streaming aggregate data into a sink like so:
KTable<K, V> aggregate = ...; aggregate.toStream().to("topic", <SerDes>); -> Can I programmatically (or by application config) define that the output "topic" should e.g. use lz4 compression or a compact cleanup policy? Best wishes, Karsten