This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-04-15
Channels
- # announcements (10)
- # beginners (113)
- # calva (2)
- # cider (75)
- # clj-kondo (1)
- # cljdoc (2)
- # clojure (142)
- # clojure-europe (11)
- # clojure-gamedev (6)
- # clojure-italy (7)
- # clojure-nl (8)
- # clojure-spec (3)
- # clojure-uk (50)
- # clojurescript (47)
- # cursive (7)
- # data-science (22)
- # datomic (12)
- # dirac (3)
- # events (1)
- # fulcro (114)
- # gorilla (1)
- # jackdaw (5)
- # joker (3)
- # kaocha (10)
- # leiningen (1)
- # liberator (2)
- # mount (6)
- # nrepl (1)
- # off-topic (16)
- # pathom (34)
- # pedestal (3)
- # re-frame (19)
- # reagent (11)
- # remote-jobs (5)
- # shadow-cljs (127)
- # spacemacs (12)
- # test-check (15)
- # tools-deps (8)
- # vim (4)
Hey guys. I think we may have ran into a bug but trying to confirm. We are trying to use the streams/kstreams api to setup a stream on multiple input topics. However when doing this it does not seem to be losing the serializer that is defined with this topic. I think I have tracked it to this code but I am not sure
(kstreams
[_ topic-configs]
(clj-kstream
(let [topic-names (clojure.core/map :topic-name topic-configs)]
(.stream streams-builder
^Collection topic-names)))
if this is the code being used its just setting the name but doing nothing with the serializer
Actually maybe this is an issue with kafka streams in general. Not sure you can consume from multiple topics and these topics each have different formats
4