This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-10-06
Channels
- # announcements (1)
- # babashka (118)
- # beginners (108)
- # calva (20)
- # chlorine-clover (3)
- # clara (10)
- # clj-kondo (47)
- # cljsrn (10)
- # clojure (144)
- # clojure-australia (5)
- # clojure-czech (2)
- # clojure-dev (11)
- # clojure-europe (94)
- # clojure-france (4)
- # clojure-nl (5)
- # clojure-spec (3)
- # clojure-sweden (2)
- # clojure-uk (11)
- # clojuredesign-podcast (5)
- # clojurescript (56)
- # cloverage (1)
- # code-reviews (6)
- # conjure (1)
- # cursive (13)
- # datascript (1)
- # datomic (16)
- # defnpodcast (1)
- # emacs (1)
- # etaoin (1)
- # events (7)
- # fulcro (21)
- # graalvm (3)
- # helix (17)
- # jackdaw (3)
- # jobs-discuss (2)
- # lambdaisland (2)
- # london-clojurians (2)
- # meander (2)
- # mid-cities-meetup (2)
- # midje (1)
- # off-topic (1)
- # pathom (3)
- # pedestal (12)
- # reagent (7)
- # reitit (15)
- # reveal (12)
- # shadow-cljs (6)
- # sql (14)
- # test-check (3)
- # vim (13)
maybe dumb question… in the following code (that creates a cached registry client to talk to confluent), where does RestService.
come from? Pretty sure I’m missing an import but no idea which one. Code came from https://clojurians-log.clojureverse.org/jackdaw/2019-05-17 (@billh ?)
(defn cached-schema-registry-cli []
(let [restService (RestService. "")]
(CachedSchemaRegistryClient. restService 10 (doto (new java.util.HashMap) (.put "basic.auth.credentials.source" "URL")))))
(def serde-resolver
(partial resolver/serde-resolver :schema-registry-url "" :schema-registry-client (cached-schema-registry-cli)))
nevermind, finally answered my own questtion. For anyone else coming behind me on this, the two classpaths I was missing are:
io.confluent.kafka.schemaregistry.client.rest.RestService.
io.confluent.kafka.schemaregistry.client.CachedSchemaRegistryClient.
Maybe useful for you. I saw that there's an open PR that adds support for schema registry basic auth https://github.com/FundingCircle/jackdaw/pull/265
👍 6