From: Kai Moritz Date: Tue, 11 Jun 2024 18:41:30 +0000 (+0200) Subject: query: 2.0.0 - Values are serialized as JSON X-Git-Tag: query-with-kafkaproducer~5 X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=0648885ec026d7434561060dc7edb703efea6853;hp=0648885ec026d7434561060dc7edb703efea6853;p=demos%2Fkafka%2Fwordcount query: 2.0.0 - Values are serialized as JSON -- works, still startling, but explainable * Splitting the command ``table()``, that reads the input-topic and materializes it as ``KTable()``, into the two statements ``stream()``, that reads the input-topic into a ``KStream``, and ``toTable()``, that turns the `KStream` into a ``KTable``, the ``JsonSerde``, that is specified via ``Consumed.with(..)``, is only used for the serialization and deserialization concerning the ``KTable`` -- not the deserialization of the values, that are read from the input-topic. * Hence, the type-mappings does not have to be specified for the ``JsonSerde``, resulting in better understandable code. * __Note__, that the resulting topology does not differe, because the DSL is able to combine the effects of the two statements. ---