Kafka Stream Processing | Spring Boot

  Рет қаралды 19,183

Fullstack Mania

Fullstack Mania

Күн бұрын

Пікірлер: 37
@francksgenlecroyant
@francksgenlecroyant 2 жыл бұрын
Thanks brother Mania! it helps a lot! Keep producing videos about Spring Boot + Kafka!
@FullstackMania
@FullstackMania 2 жыл бұрын
More to come!
@dynamicdivyavlogs8101
@dynamicdivyavlogs8101 Жыл бұрын
@@FullstackMania We are deploying springboot microservice in EKS cluster. We have new requirement to consume Kafka messages of other organisation. But is it required to configure in our AWS environment. Or can we consume with zookeeper broker instance.
@BallaPruthviraj
@BallaPruthviraj 3 күн бұрын
Thank you sir
@amitbarud
@amitbarud Жыл бұрын
Thank you my friend, I am new to kafka stream world and I was exactly looking for this. God bless you
@Software.Engineering.in.Action
@Software.Engineering.in.Action 11 ай бұрын
Perfect explanation, but unfortunately not all my questions closed. The simplest question can be answered here. 1. Is it possible to specify kafka `group-id` for input stream? And more complex one needs different video maybe. 2. How to connect to secured kafka using jks?
@yashchudasama3078
@yashchudasama3078 9 ай бұрын
Question1:- Properties properties = new Properties(); properties.put(StreamsConfig.APPLICATION_ID_CONFIG, "your-application-id"); properties.put(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG, "your-bootstrap-servers"); StreamsBuilder builder = new StreamsBuilder(); KStream inputTopic = builder.stream("your-input-topic"); // Group by key and perform further processing inputTopic.groupByKey().count().toStream().to("output-topic"); KafkaStreams streams = new KafkaStreams(builder.build(), properties); streams.start(); Question 2:- In your Java code, you need to configure the Kafka client with security properties Make sure to adapt the configuration according to your specific Kafka security settings (SSL, SASL, etc.). Additionally, handle exceptions and errors appropriately in your code.
@Software.Engineering.in.Action
@Software.Engineering.in.Action 9 ай бұрын
@@yashchudasama3078 Thanks for you answer. ...but why do you use java configuration at time when streaming is configured in `yml`? I think security configuration must be managed in the same way.
@vino7tech
@vino7tech Жыл бұрын
The best example and nice explanation sir. Tq very much siir
@duylong3684
@duylong3684 Ай бұрын
Why the Input and Output have through line, they are out of technology?, Can you make a video again about this content with new Kafa Stream Processing nowaday. Tks you so much
@anandlshinde
@anandlshinde 2 жыл бұрын
Thanks a lot . most valuable topic . Hi please make video on Kafka consumer
@FullstackMania
@FullstackMania 2 жыл бұрын
Sure . Will make video on the same.
@phanimc11211
@phanimc11211 2 жыл бұрын
very good explanation to point, the entire video was interesting to listen, plz keep posting more videos of Spring cloud and kafka, THX A LOT
@FullstackMania
@FullstackMania 2 жыл бұрын
Will do that bro
@HimanshuSingh-ti6qw
@HimanshuSingh-ti6qw 5 ай бұрын
How will these two listeners listen simultaneously from one topic and the make sure that takeaway will always listen to takeaway order ,what will happen if it receives home delivery order
@anushbabu5023
@anushbabu5023 Жыл бұрын
Thanks for your explanation Bro. It's very nice & clean explanation. Could you please make complete Docker videos for beginner to experts. I will keep following you Bro
@FullstackMania
@FullstackMania Жыл бұрын
Sure, will do it
@rroy2812
@rroy2812 2 жыл бұрын
For the streams service -- there is no need of JsonDeserializer ? How does Spring Cloud know that data is json type ?
@FullstackMania
@FullstackMania 2 жыл бұрын
Json is the default format and it is assumed to be json
@Xavier12329
@Xavier12329 Жыл бұрын
Thanks bro,its clearly understandable.
@FullstackMania
@FullstackMania Жыл бұрын
Thank you
@SachinK-q7j
@SachinK-q7j 7 ай бұрын
You did not speak about partition, which you told you will cover on the latter part of the video
@JS-eh9kl
@JS-eh9kl 6 ай бұрын
Excellent!
@vasudevayakrishna68
@vasudevayakrishna68 2 жыл бұрын
I have tried the same but didn't receive messages in takeaway-service and home-service console
@FullstackMania
@FullstackMania 2 жыл бұрын
It should work. Please try again or else reach out to me over mail
@aakashkhatavkar7877
@aakashkhatavkar7877 Жыл бұрын
I tried your approach but for me I received messages in home-service but not on takeaway-service 😥 Have you got that working !!
@MehdiBENGHAZI
@MehdiBENGHAZI 8 ай бұрын
me too @@aakashkhatavkar7877
@gnanaprakasam131
@gnanaprakasam131 2 жыл бұрын
awesome video, thanks sir.
@FullstackMania
@FullstackMania 2 жыл бұрын
Thank you
@abdulKareem-ri8ti
@abdulKareem-ri8ti Жыл бұрын
How to deploy and manage on Kafka cluster?
@abdulKareem-ri8ti
@abdulKareem-ri8ti Жыл бұрын
Apart from docker and kubernetes
@maheswaraot
@maheswaraot 2 жыл бұрын
Why you are using depricated annotations when you are creating this video!!!!!!
@FullstackMania
@FullstackMania 2 жыл бұрын
Bcs this is still used by most developers
@przemysawgesieniec3495
@przemysawgesieniec3495 2 жыл бұрын
@@FullstackMania It does not mean that it is a good approach! All the bindings should be done by suffixing the topics with "-in" or "-out". That's it.
@FullstackMania
@FullstackMania 2 жыл бұрын
@@przemysawgesieniec3495 There is another video where i followed the same approach.
@thedarkwithinc1
@thedarkwithinc1 Жыл бұрын
Media offline randomly appearing LOL
@usmanshaik778
@usmanshaik778 Жыл бұрын
2023-05-18T15:54:34.929+05:30 ERROR 4136 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: org.apache.kafka.common.KafkaException: Failed to construct kafka producer] with root cause
Spring Cloud Gateway | Spring Boot
11:59
Fullstack Mania
Рет қаралды 6 М.
Kafka Stream Processor Api implementation with Spring Boot | Stateless Operations
30:13
This mother's baby is too unreliable.
00:13
FUNNY XIAOTING 666
Рет қаралды 43 МЛН
Não sabe esconder Comida
00:20
DUDU e CAROL
Рет қаралды 47 МЛН
the balloon deflated while it was flying #tiktok
00:19
Анастасия Тарасова
Рет қаралды 25 МЛН
kafka Streams | Exactly One Transection
6:54
Fullstack Mania
Рет қаралды 697
Kafka Streams 101: Getting Started (2023)
11:43
Confluent
Рет қаралды 111 М.
Spring Tips: Spring Boot & Apache Kafka
42:59
SpringDeveloper
Рет қаралды 25 М.
Kafka Tutorial - Spring Boot Microservices
51:29
Amigoscode
Рет қаралды 432 М.
Spring Boot Caching with Redis
9:39
Fullstack Mania
Рет қаралды 2,2 М.