Thank you so much. I referred many tutorial on youtube, even i practically did the things. But i did not understand why and where to use kafka. Now i got clear cut understanding. Many thanks❤❤🙏🙏
Hi Shabbir, 1)Can we have some tutorial or sessions on caching? Client caching, server caching? 2)How Apache Kafka will be different from GCP pub/sub in terms of functionality and implementation?
🎯 Key Takeaways for quick navigation: 00:00 📚 *Introduction to Apache Kafka* - Introduction to Apache Kafka and its basic applications. - Description of Apache Kafka as a communication system between a sender and a receiver. 02:07 🚖 *Practical Example of Kafka Usage* - Example of a cab booking application and its integration with Kafka. - Kafka facilitates constant updates on the driver's location. 04:39 🚀 *Advantages and Applications of Kafka* - Kafka for handling large volumes of data in real-time applications. - Use cases across different industries like e-commerce and banking. 07:49 📈 *Architecture of Kafka* - Explanation of Kafka's architecture and its ecosystem. - Details on Zookeeper, Kafka Cluster, and their functions. 10:27 🛠️ *Installing and Configuring Kafka* - Steps to install and configure Kafka. - Creation and description of topics in Kafka. 15:28 🧑💻 *Creating an Application with Spring Boot and Kafka* - Development of an application using Spring Boot and Kafka. - Implementation of a publishing system and subscriber system. Made with HARPA AI
Hi Shabbir, Can you help to explain, what happens if any of the services(publisher or consumer) is down, how can we handle such usecase better. Please explain for each (publisher and consumer)
Good Basic introduction. I could not consume the messages from beginning. I have configured auto-offset-reset=earliest but still the messages are not reading from beginning. can you help me here
Hi Shabbir, after trying the "earliest" config , I am able to see the message consumed on cmd but not on console. Exception : Request joining group due to: rebalance failed due to 'The group member needs to have a valid member id before actually entering a consumer group.' (MemberIdRequiredException)
hi, a very good video indeed. but there is a question. in application properties, there are consumer.key-serialzer. but on your ide, its not an error. can you enlighten me. i tried but only consumer.key-deserializer were exist. thank you in advance. i was new to this.
Hey while I can run the driver project and hit the end point and listen on CLI but in second springboot consumer project logs are not showing anything there is no cab-location topic and offset. I have checked your GitHub project as well but no luck. After I start server it doesn't show anything related to topic or offset
how can we fetch all the messages from the particular topic after hitting end-point url ?..Help me with this..I tried To do with the help of KafkaConsumer consumer .. this has a method poll .. but after hitting end point i'm getting null in consumer..please help me with this ..
I could follow entire vidio, but in last we used @KafkaListener(topics = "cab-location", groupId = "user-group"), here while running the application I could not see anything in console, can you please help me what I missed here?
Head to cutt.ly/spring_micro and use Coupon Code DCBFEST to get a huge Discount on the course
Looking for RabittMQ vs Kafka which suited for what scenarios
code not working
DCBFEST
Don't get me wrong but It's much better and easier to watch 'Indian tutorials' when I can see a person. Good job.
🙏🙏
Very well done, nice crisp explanation, I did along with tutorial, feeling good now. Thank you so much...👍👍
This came in on time, Thanks brother you're always on point and you explain it better.
Glad to hear it
Thank you so much. I referred many tutorial on youtube, even i practically did the things. But i did not understand why and where to use kafka. Now i got clear cut understanding. Many thanks❤❤🙏🙏
Thanks a lot man!! You keep things simple and crisp.
Bro is the GOAT of springboard related stuff.💥
🙏🙏
Hi Shabbir,
1)Can we have some tutorial or sessions on caching? Client caching, server caching?
2)How Apache Kafka will be different from GCP pub/sub in terms of functionality and implementation?
You are about to hit 100k, congrats in advance :) you really deserve this. good work keep it up
Thank you so much 😊
🎯 Key Takeaways for quick navigation:
00:00 📚 *Introduction to Apache Kafka*
- Introduction to Apache Kafka and its basic applications.
- Description of Apache Kafka as a communication system between a sender and a receiver.
02:07 🚖 *Practical Example of Kafka Usage*
- Example of a cab booking application and its integration with Kafka.
- Kafka facilitates constant updates on the driver's location.
04:39 🚀 *Advantages and Applications of Kafka*
- Kafka for handling large volumes of data in real-time applications.
- Use cases across different industries like e-commerce and banking.
07:49 📈 *Architecture of Kafka*
- Explanation of Kafka's architecture and its ecosystem.
- Details on Zookeeper, Kafka Cluster, and their functions.
10:27 🛠️ *Installing and Configuring Kafka*
- Steps to install and configure Kafka.
- Creation and description of topics in Kafka.
15:28 🧑💻 *Creating an Application with Spring Boot and Kafka*
- Development of an application using Spring Boot and Kafka.
- Implementation of a publishing system and subscriber system.
Made with HARPA AI
Hi Shabbir,
Can you help to explain, what happens if any of the services(publisher or consumer) is down, how can we handle such usecase better. Please explain for each (publisher and consumer)
Welcome to Kafka Stream. Really nice approach.
Thanks 🙏
Really a good job brother. It is very clear and crispy.
At last I found someone better to help me ! ✌
27:26 you forgot to add variable --from-beginning this is why you get only Hello instead of receive all events
like your way in delivering such a quite complex topic in very simple and digestible way
can you guide me on how to do Kafka clustering in the spring boot application,do one video one how kafka brokers work in real time applications
Hi Shabbir, thank you so much for considering the request. This is great explanation and will be very helpful..
Glad it was helpful!
one word - SUPER
Good Basic introduction. I could not consume the messages from beginning. I have configured auto-offset-reset=earliest but still the messages are not reading from beginning. can you help me here
Same issue. Able to see the message consumed on but not on console.
good video for easily understood by Kafka begginers.. super
Thank you ji.
Thanks and welcome
Can you please give more real time applications where kafka can be used. Also what type of data we store and comsume and limitations if any
👍👍
Thanks a lot ! More hands on please . More scenarios
Noted!
Shabbir bhai thanks for the fantastic video on Kafka. Can you please cover Junit and Mockito in detail? Especially covering to test REST services.
Very clear explanation. Totally Awesome!
Thanks Shabbir your tutorials are awesome
WOW !! great video can you do a tutorial on spring batch
Great suggestion!
Hi Shabbir,
Thank you for you awesome videos . All the explanations are very easy to understand.
Could you please add a video on kafka streams ?
Thanks - very useful intro to Kafka. Really enjoy your videos and find them easy to follow.
Thanks 🙏🙏
Why not Active Mq or RabbitMQ for the use case you mentioned in the beginning
Active and RabbitMQ is not distributed messaging system. which you can't scale more like kafka does.
If possible can you please provide more hands-on
Yess
More hands on please . More scenarios
Very Neatly and nicely explained. Please make video on sonarqube and junit.
Thanks 🙏
you are amazing 🙌
🙏🙏
Interesting Lectures!! 😊👍
Hi Shabbir, after trying the "earliest" config , I am able to see the message consumed on cmd but not on console.
Exception : Request joining group due to: rebalance failed due to 'The group member needs to have a valid member id before actually entering a consumer group.' (MemberIdRequiredException)
Good introduction! Kafka Streams next? 🤔
Yes, Planning on it
Thanks for tutorial brother. Learned a lot.
Thanks 🙏🙏
Thank you for your explanation bro.
You are great bhai
🙏
How you got to know these properties and the serializer classes? (at 41:19)
hi, a very good video indeed. but there is a question. in application properties, there are consumer.key-serialzer. but on your ide, its not an error. can you enlighten me. i tried but only consumer.key-deserializer were exist. thank you in advance. i was new to this.
Sir, do we have UI in kafka to create topics , partitions etc ?
hi are you going explain also Kafka streams, joins, aggregations, ktable, spring cloud stream, Kafka binders complex java objects mapping also?
Yes, soon
so where exactly save produced data in database at consumer side or at kafka server
Nice. Thanks a lot man.
Best video ever!!
Thank You
Why do we need brokers and partitions?
Thank u thank u so much ❤❤
Hey while I can run the driver project and hit the end point and listen on CLI but in second springboot consumer project logs are not showing anything there is no cab-location topic and offset. I have checked your GitHub project as well but no luck. After I start server it doesn't show anything related to topic or offset
this was a top tutorial
Thanks sir..
elasticsearch gafana tutorial please.
Thanks for suggestions
I will plan and work on it
Sir mern developer ki demand hai future
Thank you so much 👍
🙏🙏
Bro please make a video on elastic search with project 🙏
Sure 👍
@@DailyCodeBuffer Thanks ❤️
Great explanation 👏
Glad you think so!
In cab-book-driver : what is the purpose of code in config folder, because without that code also I'm able to get the messages.
I guess you had first put that code and then removed later, since topic was created when you had that code initially, it is working.
Thanks!
Thank you sir
Useful ❤
Please help me, file upload big size in s3 bucket using spring boot and thread
how can we fetch all the messages from the particular topic after hitting end-point url ?..Help me with this..I tried To do with the help of KafkaConsumer consumer .. this has a method poll .. but after hitting end point i'm getting null in consumer..please help me with this ..
which method are you using for sending messages ?
superrrrrrrrrrrrrrrrrrrrrrrrrrrrr
thanks alot
Most welcome
Tq
U r working in Walmart?
what a time waste.
Could you please suggest what was not useful and how can I improve on those areas
It would be a great help to me 🙏
Copied Video
Can you share the source? Let's compare😅
😂😂
So you just came across the wrong video.. go to the original video
Yes 😂😂😂😂
I could follow entire vidio, but in last we used @KafkaListener(topics = "cab-location", groupId = "user-group"), here while running the application I could not see anything in console, can you please help me what I missed here?