Re: Globalktable usage in a multi microservices application

2021-11-03 Thread Vincent Maurin
Hello The idea behind a GlobalKTable is to materiliaze data (a kafka topic) close from where it is used. Actually, each task/worker will materialize the full GlobalKTable in order to use it. So in your scenario, what should be shared between your services is ideally the Kafka topic used to bu

Globalktable usage in a multi microservices application

2021-11-02 Thread Sigalit Eliazov
we have 2 microservices: responsible for consuming message and update a globalKtable with configuration information (key=id, value=myObject) once it is activated with some id as an input it should look into the configuration globalKtable and retrieve data by that id how is it possible to access

Globalktable usage

2021-11-02 Thread Sigalit Eliazov
Hi i am trying to build globalktable from a topic which consumes avro messages. I am using apicurio for the schema registry. My problem is that even after the serialisation i receive a GenericRecord and then i need to map it to my object. I expected to get my object after the seriliaztion. Any t