Great videos man. You are one of the best teachers i came accross because every suggestion and explanation you give comes purely from the heart. Thank you very much.
@DotNetCoreCentral3 жыл бұрын
@C T, thanks for watching!
@laketich3 жыл бұрын
i write rarely comments on youtube, especially when it comes for coding, tehcnologies and etc. BUT your series about microservices... IS THE BEST ONE, could not skip to tell.
@DotNetCoreCentral3 жыл бұрын
@Alexandr Laketych, thanks for watching! I appreciate you taking the time to provide feedback!
@finneganjoshua48933 жыл бұрын
I dont mean to be so offtopic but does any of you know a way to get back into an instagram account? I stupidly lost the login password. I appreciate any assistance you can offer me
@cullengunnar70633 жыл бұрын
@Finnegan Joshua instablaster :)
@finneganjoshua48933 жыл бұрын
@Cullen Gunnar thanks so much for your reply. I found the site through google and I'm waiting for the hacking stuff atm. I see it takes a while so I will reply here later when my account password hopefully is recovered.
@finneganjoshua48933 жыл бұрын
@Cullen Gunnar it worked and I actually got access to my account again. Im so happy! Thanks so much you really help me out :D
@siddharthdwivedi8043 жыл бұрын
you're the most underrated tech channel! Whatever you speak comes from sheer experience and not from docs! Huge respect!
@DotNetCoreCentral3 жыл бұрын
@Siddharth Dwivedi, thanks for your kind words!
@schudasama2 жыл бұрын
Hi Sir, This is a great tutorial! Very helpful! Can I request you kindly to upload both the solutions to GITHub? 🙏
@nimrodmaina18374 жыл бұрын
@DotNet Core Central Nice work you are doing here. Mine is not that of a big issue. I would just like to request for you to name/arrange your videos in order. It's a bit hard jumping from video to video seeing which one follows which. E.g 1) RabbitMQ .... Part 1 2) RabbitMQ ... Part 2 ... 6) Ocelot
@DotNetCoreCentral4 жыл бұрын
@NIMROD MAINA, thanks for the suggestion, I will do that.
@sudhiranand51792 жыл бұрын
Thanks, very clean and neat explanation.
@Yashopus Жыл бұрын
Great video, It was Valuable and Informative
@DotNetCoreCentral Жыл бұрын
Thanks!
@patrickizekor64636 ай бұрын
Many thanks for your video Sir. Please are you able to share the code of the Ecomm application as a monolith and when you break it up into a service. many thanks for your kind consideration and look forward to hearing from you.
@harrylo640210 ай бұрын
Hi Choudhury, Thank you for your nice tutorial. I wonder if you have the solutions of the Monolithic and Microservice Applications available for reference.
@shahrukhkhan39674 жыл бұрын
Great hard work for us. thank you so much
@DotNetCoreCentral4 жыл бұрын
@ShahRukh Khan, thanks for watching!
@akashthakral9181 Жыл бұрын
Great Videos. Appreciate the effort!! However I have one confusion. You have added User name and Product name in Order service DB itself but if for some reason, the product name/username changes, we would have to change it in both places and that violates the fundamental concept. Also if order detail service is dependent on user/product service for attributes, how should it actually get the data.There could be thousands of rows in order detail and if we fetch attributes from another service in iterative manner, it would be distareous. PLs suggest
@tassisto9 ай бұрын
Thank you sir!!!
@DotNetCoreCentral8 ай бұрын
Most welcome!
@anilpillay21932 жыл бұрын
Great tips thank you
@poojashukla73002 жыл бұрын
nice explanation. can u create a video for creating a micro service connecting to web api and mongo db as a database approach
@samayhaider3 жыл бұрын
With this architecture, you would have to host two applications? One would be the wrapper that accepts the api calls and the other would be the actual api that is making the call to the database?
@DotNetCoreCentral3 жыл бұрын
@Sam Haider, no, you will make multiple microservices, there is no need for any wrapper.
@anubhavdebnath27472 жыл бұрын
Vast knowledge you have, where did you learn all these from?
@DotNetCoreCentral2 жыл бұрын
@Anubhav Debnath, thanks for watching! I have been in this industry coding along for more than 20 years, learned everything as part of the job and a lot of reading :)
@zeeshanasghar37513 жыл бұрын
Hi @dotnet core central kindly arrange videos in order, you did a lot of work but i guess all are not reflected in your playlist or vedios section. just saw 4 more links in the description section :-)
@DotNetCoreCentral3 жыл бұрын
@Zeeshan Asghar, thanks for the suggestion, I will do that.
@antarikshsharma573 Жыл бұрын
@DotNetCoreCentral Thank you! for such a wonderful series. Very well explained. Is there any way to access the code or if we can get reference. Any github link! Will be really great for everyone. :)
@DotNetCoreCentral Жыл бұрын
I should have the code, I’ll check and let you know
@manuelguerrero99173 жыл бұрын
The approach that you use here to merge/join data between Microservices is called Selective data replication, correct ?
@DotNetCoreCentral3 жыл бұрын
@Manuel Guerrero, thanks for watching the video. This is kind of SDR but not exactly the same based on my understanding of SDR. SDR is a concept replicating selective data sets to a secondary database. Whereas here we have multiple domain-driven microservices, which are keeping data necessary to their own domain, which is of course sent from the primary data domain. But not for the purpose of the data replication, but more for supporting the other domain with its need for functionality. Please let me know if it makes sense. I am more than happy to hear your point of view. Thanks!
@manuelguerrero99173 жыл бұрын
@@DotNetCoreCentral Yeah make senses, I was just looking for information about Microservices and I found a couple of articles that said that we shouldn't make merge/join between tables in different Microservices, because how you have been saying, a mc should work on its own. So I would the same technique you used here, I am going to create table that has the necessary fields so it won't have to go to another service to get data or something like that. I don't know why I keep thinking that I may later go to look data to another Microservices and I would have to make a join which I think its wrong.
@shreyasjejurkar12334 жыл бұрын
Practically order service should be transient, correct? Because we don't want to share the order with multiple users' requests!
@DotNetCoreCentral4 жыл бұрын
@Shreyas Jejurkar, correct when configuring in Dependency Injection container. Thanks!
@shreyasjejurkar12334 жыл бұрын
@@DotNetCoreCentral yeah, you can also use HttpClientExtensions so that you can do client.GetFromJsonAsync() directly, rather than getting the response and then deserializing into objects. Just add System.Net.Http.Json to the project.
@DotNetCoreCentral4 жыл бұрын
@@shreyasjejurkar1233 thanks for the suggestion! I will definitely use this going forward.
@shamjups7017 Жыл бұрын
can i get github link of this project
@maryammunawar78533 жыл бұрын
Hi, i need a complete code of extracting microservices from monolithic.
@DotNetCoreCentral3 жыл бұрын
@Maryam Munawar, the code for this demo is available in my Github repo. github.com/choudhurynirjhar/reactive-microservice-demo
@GeorgeZarogkikas3 жыл бұрын
Hi , where can I find Ecomm monolithic application source code?
@DotNetCoreCentral3 жыл бұрын
@George Zarogkikas, thanks for watching! Here is the repo: github.com/choudhurynirjhar/reactive-microservice-demo
3 жыл бұрын
Can i get real world use of microservices according to me breaking entity doesn't makes sense
@DotNetCoreCentral3 жыл бұрын
@Rushang Panchal, thanks for watching the video. In this example, I did not break out the entity but essentially broken out the domains. And that is what we usually do in real-life is breaking out the domains and create services based on domains or sub-domains. I hope this answers your question.
@maryammunawar78533 жыл бұрын
@Dot net core central. I Want to implement this code on my machine . I Also send u emaiL about the work kindly response asap.
@maryammunawar78533 жыл бұрын
@Dotnet Core Central Kindly share the code of this vedio.
@DotNetCoreCentral3 жыл бұрын
@Maryam Munawar, thanks for watching! The source code is available here: github.com/choudhurynirjhar/reactive-microservice-demo
@rahuldayal172 жыл бұрын
can we get a code ?
@sivadotn3 жыл бұрын
Can you please share the source code of this.
@DotNetCoreCentral3 жыл бұрын
@Siva Shunmugam, this is where you can get the example code: github.com/choudhurynirjhar/reactive-microservice-demo
@dev4g276 Жыл бұрын
how to authenticate user in microservices
@DotNetCoreCentral Жыл бұрын
it depends on how microservices are implemented, if they are behind an API Gateway, in that case the authentication will be managed by the API Gateway.
@dev4g276 Жыл бұрын
@@DotNetCoreCentral can u make an dedicated video on it ... Will be great full
@kophyo45792 жыл бұрын
please sample code sir
@davidlester6673 Жыл бұрын
It would be nice if somebody did a real world example with business logic instead of these simple data type microservices. These are simple that anyone can do, try something more substantial.