Full Course Available here: amigoscode.com/p/microservices See you there
@brandonquintanillaquispe54552 жыл бұрын
Hi Nelson! I would love to get the full course, but I have a doubt. Will the course include the projet deployment on AWS, GC or Azure?
@czargaurav2 жыл бұрын
Hi Nelson .. what’s the discount code for this full course ?
@DevMadeEasy2 жыл бұрын
Hey Nelson, I'm a big fan of your work.
@atefjlassi1932 жыл бұрын
Thank you Nelson, can you upload this course on udemy ?
@NitrosS2 жыл бұрын
@@brandonquintanillaquispe5455 I think not
@NolteGameOver Жыл бұрын
I worked with activemq and rabbitmq but never with kafka, this really clears my mind, basics like these are important to me, now I can start digging for more extended info. Thanks
@thodoristsoufis12532 жыл бұрын
Nelson your way of teaching and sharing knowledge is brilliant. You should be proud of yourself. Continue like this !!!
@CheeseStickzZ Жыл бұрын
he's an idiot and has no idea what he's talking about, go read my comment above to know why
@pedro.carara2 жыл бұрын
uhullll on the weekend I coded the entire course, looking forward to the last class!!! amigoscode you are a amigo to me!
@anassabrd1123 ай бұрын
Thanks for this introduction to Kafka, it's simple and easy to understand the basics of this tool. I am ready to go deeper now. Update: I am updating my comment because it is worth mentioning that Zookeeper is no longer recommended for communication across Kafka clients.
@mupenziii20973 ай бұрын
Hello, what would you recommend now instead of zookeeper?
@anassabrd1123 ай бұрын
@@mupenziii2097 ZK is still used in current Kafka version (3.x) alongside with KRaft, but starting from next version (4.x), only KRaft will be supported.
@ian0m2 жыл бұрын
This is the clearest description and illustration of what Kafka is and how it's structed thar I've seen yet. Thanks!!!!
@kundaimusindo56582 жыл бұрын
your courses are the best man, thank you so much, much love from Zimbabwe
@mimmithegreat14272 жыл бұрын
trying to find myself the solution to a project and here comes amigoscode to the rescue! ^^
@FranciscoQuintero-em7tr Жыл бұрын
Absoluty ... the java goat in YT content. thanks
@SamriBliss2 жыл бұрын
Glad you’re back! I’ve written a Spring boot app that reads from and writes to a topic and I’m not changing the app to also send to a postgreSQL as well.
@abdellahlakhnigue30868 ай бұрын
I want to ask you bro can u give le ur email or something like that?
@hoki8296Ай бұрын
Excellent tutorial for Spring Boot with Kafka. Thank you.
@PostMapping Жыл бұрын
جزاك الله خيرا يا أخي الكريم! ما شاء الله، بارك الله فيك!
@contactdi84262 жыл бұрын
That's my guru🙏🏼 Thanks to great people like these that we are progressing so fast!
@azizbekibnhamid6422 жыл бұрын
Amazing course, rahmat !
@ayxxn49312 жыл бұрын
AsAlamuAlaykum Amigoscode, I just wanted to comment to thank you for paving a way in the coding industry for muslims. You inspire me not just because of your work ethic but also balance with religion like in your DITL where you prayed Jummah. Also thanks for the courses I'm going through them because I wanna do A level computing 😅
@urmattilek2 жыл бұрын
But you don't need religion to study. It's no different are you learning from muslim or other. The code is same.
@ayxxn49312 жыл бұрын
@@urmattilek Never said its not, that's not the point I'm making
@swarupcodes2 жыл бұрын
@@urmattilek Second you. Theres no term like coding for muslims. Software engineering is a religion in itself which we religiously pray everyday. It's worse to put religion in everything.
@ChandlerBing112 жыл бұрын
Mama Samba is a great IT content creator here. I am a huge fan
@jakhongirrasulov23292 жыл бұрын
before watching this video, I smashed the like button, because I know it will be worth.
@raghavanaliassaravananm15462 жыл бұрын
Hello Nelson, Great. I have enrolled myself in the microservices course! Just my 2 cents to support your efforts. Keep up the great work. Thank you for sharing your knowledge.
@alexluke_again2 жыл бұрын
love your content. you're so calm and a wonderful presenter. best of luck
@himanshubhusanrath2122 жыл бұрын
Thorough explanation of the concepts as well as the application. Kudos !!
@DevMadeEasy2 жыл бұрын
Hey Amigoscode, Great Content as Always!✨ Thanks for Sharing it!🙏🏻 You Have Been an Inspiration for My Own 📺KZbin Channel!!!
@sanatbek8192 жыл бұрын
Hope your community will be 1 mln soon, InshaAllah brother!
@devguyahnaf2 жыл бұрын
Nelson is giving so much of this course away for free. I just love it!!!
@theclam13382 жыл бұрын
The video we’ve all been waiting for
@kluch462 жыл бұрын
37: 38 Correct me if I'm wrong, but in order to Spring can discover and use the custom KafkaListenerContainerFactory you specified, by deafult the bean name must be as kafkaListenerContainerFactory (not factory), otherwise it won't be picked up by the application context and none of the specified serializers and deserializer for consumers will be applied, but default KafkaListenerContainerFactory instance with default SerDes instead.
@valentinpopescu67042 жыл бұрын
I bet you have the M1 MacBook. Damn, the speed it sends those messages is astonishing! I followed your tutorial on my job laptop which is a pretty strong machine itself too, but it couldn't keep up with the MacBook lol
@abdurrehmankhalid22902 жыл бұрын
I have to mention somethings, If you are working on the windows machine then you have to install and configure the Gradle and Scala in order to build the Kafka project. It will give an error using Scala for the first time, that you need to build the project before running the scripts, and by the way you can run Bash Scripts from the Git Bash command line tool.
@andres982 жыл бұрын
Congrats for a really self-explanatory video!
@eddylequartier9 ай бұрын
@amigoscode Hello big boss :-) I have a question. at minute 46:30 you write a messageController with a constructor like "public MessageController(KafkaTemplate kafkaTemplate) {some code}". But it is useless : why don't you simply inject the spring bean like that : @Autowired KafkaTemplate kafkaTemplate ?
@anassabrd1123 ай бұрын
Constructor injection has a lot of advantages over field injection, in matters of testability, clear visibility of dependencies, null safety as it ensures that all necessary dependencies are available, and makes the code more flexible and maintainable. That is why I prefer the constructor injection over the annotation.
@python24482 жыл бұрын
I'm so glad, the youtube recommended me this video. 👏
@iReflections2 жыл бұрын
Long live brother, thanks for sharing your knowledge love from chennai , tamil nadu , India
@narjesshmida58082 жыл бұрын
Hello Neflson, you put every thing that i need in this tuto... just you are brillant!!! Thank you very much .. i am very fun of all your tutos .. Good Luck 💓💓💓💝💝
@Amapramaadhy2 жыл бұрын
What a beautiful soul! Thank you amigos
@qaisarbaltabay11 ай бұрын
а very simple and important lesson, thank you
@martianstarslit3768 Жыл бұрын
THANK YOU SO MUCH FOR THIS, WE WOULD APPRECIATE MORE IF IT WAS ON GITHUB TOO
@mukendiemmanuel56402 жыл бұрын
your are one of the best teach i've follow
@brandonstivenrodriguezalda6300 Жыл бұрын
Excellent video about Kafka and its implementation
@jnayehsirine6222 Жыл бұрын
a friendly reminder :i will appreciate if you start with explaining the code rather than reading the code along . thanks for the free content
@qwertyguy77502 жыл бұрын
Nelson is a legend, that’s it!
@segfal2 жыл бұрын
I love that you made this, i was looking everywhere for this!
@andyescobar202 Жыл бұрын
🎉 That tutorial was perfect.
@abdaziznet2 жыл бұрын
hey public record not exist on java 11 is there replacement?
@_skeptik Жыл бұрын
this is really some very structured tutorial, thank you
@skazijp2 жыл бұрын
how happy i am seing great muslim software engineer, thanks for the content
@thatoneuser86002 жыл бұрын
Can you do a video on Reactive Spring with Reactor? There's like 123 different operators for transforming/manipulating data, I'm drowning in complexity :(
@mohammadziakhan56932 жыл бұрын
I do understand your pain
@03greedo292 жыл бұрын
Yo i feel you. I told myself i was going to read for an entire day before i touched anything. Learned so much today about KAFKA. If anyone is looking to hire a KAFKA engineer, reply to this message. Seven years of XP
@akyjlehok58432 жыл бұрын
What is that plugin with the cat on rainbow in the project loading/building scale?
@ilyababcenco68642 жыл бұрын
Just in time, thank you very much! Graphql + Spring Boot should be a good choice for a new video I think.
@ArjunKumar-zu2kl Жыл бұрын
Just wow, Amigo, Thank you so much :)
@marouaniAymen4 ай бұрын
Thanks for the video, I really liked the course. I have a question, how did you make your console output in IntelliJ colored for Spring Boot server log output ? Thanks.
@akyjlehok58432 жыл бұрын
What is adventage in kafka configuration in the config classes opposit configuration in properties files?
@nikitazinchenko25612 жыл бұрын
Amigoscode, many thx for this and all tutorials which you created for us, it's very important topic. thank you very much :)
@cisinojunior3327 Жыл бұрын
Why didn't you use a Kafka docker container?
@TheDestoy123Ай бұрын
Do you have the 2024 version?
@oficialreinaldoneves2 жыл бұрын
You are my hero man. Thank you so much for this content.
@cezarybek66792 жыл бұрын
Hey Nelson, at minute 41:40, you said that if we have more than one instance/replica of the same application, these applications will read from the SAME partition. Are you sure about that? I'm pretty sure that if you want to scale the application you MUST implement partitions OTHERWISE the second instance of the application will stay without any log from the subscribed topic. Please give me a feedback about that! Thank you, Cezary B.
@Hemant._.Dhiman2 жыл бұрын
I am having the same doubt!
@LPS-ln1mz2 жыл бұрын
why not to make kafka setup (serializer, deserializer etc) via application.properties? why you need this boilerplate with maps and configs?
@ahmedelmawrdy43812 жыл бұрын
Walikom Asslam, Wonderful Video bro, please keep it up!
@hamidoubalde25172 жыл бұрын
Lot of thanks Nelson. You do great work.
@halcyon-s Жыл бұрын
Thanks for amazing tutorials!
@taimoor_222 жыл бұрын
Amazing video! Keep up the good work brother!
@telefonmakinesi64672 жыл бұрын
Can u do that with string and object
@robertoenriquechavezrodrig7312 жыл бұрын
Thank you so much for this video! God bless you 😉
@TheBhabanisankar2 жыл бұрын
@Amigoscode, you are awesome ... :)
@alandecunto753 Жыл бұрын
So is there a way to secure the Kafka topic or broker for only users register in the API can consume data?
@thalibmuhammad95192 жыл бұрын
dude, why you are so good
@loandao19964 ай бұрын
Thanks sir! This's really helpful for me
@omarlamrabet3792 жыл бұрын
May Allah reward you for this job bro :)
@sarahemmati20572 жыл бұрын
Hi, Great Video as always! Thank you.
@JSneider052 жыл бұрын
Looking forward to learn Kafka.
@achraftaffah4458 Жыл бұрын
Could you please show me how to draw a technical architecture like the one you used in this tutorial?
@Release1234 Жыл бұрын
@Amigoscode Is there any resources or teaching you've done that tests spring-kafka?
@mariumbegum7325 Жыл бұрын
Fantastic tutorial
@011ayush Жыл бұрын
Thank you for this tutorial. Really helpful.
@ivanlorenzo042 жыл бұрын
Bruuhh, how did you know I was looking at this tutorial!?
@ijasahamed13232 жыл бұрын
Noticed that smashing like button became 2 seconds to 1 second 😁🙌
@susydev37222 жыл бұрын
Thanks for the new video, it helped me a lot. I hope later you can make VueJS content with Spring Boot. Best regards.
@Netalon Жыл бұрын
Can i retain messages published on a topic ? If yes, can I delete them later ?
@edwinangar2 жыл бұрын
Hi. In the amigoscode page the kafka chapter No 9 and 10 are mixed, I was lost at the beginning 😂😂
@shermatovs2 жыл бұрын
Hi Nelson. I would really want you to post some great content about websockets, because I think this topic is really interesting for almost every beginner. So would appreciate it!
@aditikaushik51472 жыл бұрын
Amazing concept of Kafka.. Very well explained... thank you.. 🙂
@muditjain91172 жыл бұрын
Amazing video. Any chance of getting a link to git repo of the code in the video?
@jibink79692 жыл бұрын
you are awesome brother, keep going!!
@magdalysantos38482 жыл бұрын
gracias por tus videos ..! you're the best😎
@adityasrivastava53222 жыл бұрын
hi nelson, glad to witness such an amazing concept of kafka by you.. thank you.. :) could be really helpful if you could explain how to prepare dynamic topic name in an api to communicate via multiple topics in real time env.. thanks again man.. :)
@testmyplaylist2 жыл бұрын
Hi Amigo, thanks for your videos.. really helpful.
@IbrahimB-yc2zt2 жыл бұрын
you said that kafka topic can keep the message forever, if we send two different messages to the same topic, it will only keep the last one right?
@martindouglas-p8e Жыл бұрын
hi Nelson, Thanks for this video. What about unit and integration test of the producer and consumer, i'm struggling with that. Any advices ?
@vjotov3 ай бұрын
at 43:05 - why you need to restart once more??? can you explain?
@Najish1012 жыл бұрын
Does a partitioned topic live in the same node?
@MrMarquinho224 ай бұрын
Thank you, that was great
@renz822 жыл бұрын
what tool did you use for the slide? is it powerpoint?
@mahmoudebada40252 жыл бұрын
جزاك الله خيرا
@aibekzhorabek3043 Жыл бұрын
Very good tutorial, thanks a lot muslim brother. I was wondered when you made request from intellij idea, I did not know that way to make requests, I always use postman)
@adancastroharos94082 жыл бұрын
Thank you very much for these videos, they are very helpful
@Waldemar-c6s Жыл бұрын
Hi.. do you have plans to prepare some videos about apache camel? Maybe whole course about that technology? :D
@enfantprodigue4549 Жыл бұрын
Great Stuff, Thanks for sharing
@codewithankush97532 жыл бұрын
Where is git link for Code ?
@agustinfeijoo1462 Жыл бұрын
Thanks for the video ! You make it seem so clear, hopefully in the future you also upload the code in git for free :(
@DiegoFernandoRuizS2 жыл бұрын
Thanks for a beautiful explanation!!! You have the patience and power to teach us! Thanks again!