Nice Video on Event Sourcing. God Bless you Basant! 🙂👍🙏
@grrlgd38352 ай бұрын
JT is the greatest! Keep going buddy. Thanks
@gopishettymahindra27132 ай бұрын
Good Explanation scenario sir. Please do videos for few more micro service design patterns
@RaviRanjan-f6rАй бұрын
Hi basant, please start one new series on Java all design patterns(crestional, structural and behavioral). 🙏
@sergiogb2 ай бұрын
Awesome, thanks for sharing 😊 🎉
@nikitapujahari16242 ай бұрын
Great tutorial.. Can you please bring one tutorial with end end spring transaction implementation. Thanks.
@mohammadtoficmohammad3594Ай бұрын
thank you
@VikashSingh-gq9ddАй бұрын
Hi @Basant, thanks for your videos! I noticed that you cover almost all the topics related to Spring Boot. Could you please create videos on Flyway/Liquibase migration and entity/domain auditing (perhaps with Kafka Connect and Change Data Capture (CDC)), which are commonly used in real-world projects.
@VikashSingh-gq9ddАй бұрын
Sorry I found that you’ve already covered Flyway and entity auditing in your videos-great job!
@nguyenminhquan83522 ай бұрын
thanks bro, can you make a video on saga pattern using kafka and redis for storing data?
@Javatechie2 ай бұрын
Saga already available please check the design pattern Playlist
@weitanglau1622 ай бұрын
Can you do a video explaining how to implement a common library?
@ramadanlotfe8292 ай бұрын
Fancy content, we need a complete video about istio please
@sujith63232 ай бұрын
Thanks for this great video. Will MongoDB be a shared database for all the different service instances in this case? And is that acceptable considering the principle of having a separate database per service in microservices architecture?
@Javatechie2 ай бұрын
Yes if business need we also follow shared db concept
@TejaSairavi2 ай бұрын
Hi sir What is the difference between this concept and having audit table that tracks the record state. Can you please explain
@Derrick-f8mАй бұрын
Event sourcing can be used for auditing. You will store each event in an event store. You cannot delete any events from this store because it will be used for auditing.
@TejaSairaviАй бұрын
@@Derrick-f8m we achieve the same even in db also right by providing the read access, please correct if i am wrong.
@Derrick-f8mАй бұрын
@@TejaSairavi you will need to use CQRS and Event sourcing. You have 2 mongoDB datasources. Datasource1 will be used exclusively for reads. Datasource2 will be used for writes (commands). Datasource2 will be your eventstore where all of the commands/events will be saved. Datasource1 will be where u save the current state of the data model/entity.
@susobhandas9992 ай бұрын
Can you show how we can reply the events incase there is an error?
@Derrick-f8mАй бұрын
To replay the events you need to implement CQRS
@bhargavb1152 ай бұрын
Hello, i have an 6.5 year exp in java. Got an offers from HCL and Capgemini which is better? Both with same package
@JavatechieАй бұрын
Please drop an email to javatechie4u@gmail.com let's not this things in public forum
@bala79652 ай бұрын
Hi bro please do saga pattern.saga pattern already available in your playlist is flux concept.
@Javatechie2 ай бұрын
Not getting you. Do you want me to remake it with traditional approach? I remember your kafka connect requirements I am planning for it comming weekend 😁
@bala79652 ай бұрын
@@Javatechie yes bro already saga video in your playlsit is spring webflux and kakfa stream.please remake in traditional way using kafka an sprinboot .one more guy in the same comment section also expect it.Thanks bro consider my request
@siddhantthorat3269Ай бұрын
Basant I want to buy a laptop for doing all the java related coding , such that it will run smoothly with eclipse, DB, Vs code, intellIj, angular, kafka and other stuffs that you do in your videos, which laptop to purchase under budget (under 50k ) .
@ZtowhyA2 ай бұрын
what if you have more than 1 partition, how do you maintain order sequence? and also more than 1 app container.
@Javatechie2 ай бұрын
Not getting you exactly,
@ZtowhyA2 ай бұрын
@@Javatechie kafka partition and in a kubernetes environment with more than 1 pod
@Phoenix-od2bp3 күн бұрын
@@ZtowhyA Events for same Kafka key go to the same partition. Since they go to same partition based on the Kafka key, there are always in ordered sequence in a partition. And if you have multiple pods running, the partitions are divided(assigned) between consumers(pod) in a consumer group. So it goes to same partition and same pod for processing. Does that answer your question ?
@vatsanubhav0Ай бұрын
Hi Basant, If someone wants to enroll in your course available at your site, do we get realtime live classes or the recording sessions ? I want to enroll in Microservices course.
@JavatechieАй бұрын
Hello! Thank you for showing interest. To clarify, the sessions are recordings of live classes, not live sessions themselves. However, you'll still have the opportunity to ask questions and clear any doubts through our Discord channel.
@vatsanubhav0Ай бұрын
@@Javatechie Thanks for the clarification Basant. Will join soon.
@vatsanubhav0Ай бұрын
@@Javatechie One last thing, what would be the validity of the course? Do we get lifetime access to the videos?
@JavatechieАй бұрын
@@vatsanubhav0 yes it's lifetime access
@universal4334Ай бұрын
I dont know whether these kinda names were introduced just to make things fancy. I never knew that this kinda pattern exist, but we've been doing same from years. How come some one update the same correlation id for all the different status. We've been doing data ingestion, preparation, rules execution etc.. for each of the service once the work os done we will save the status with correlation id and will pass the same id to to other services and they will do the same which is common sence for tracking where things are going wrong
@SumitKumar-ny1ylАй бұрын
Hello sir I'm from village and i want to learn devops so can you provide devops course in 500😢
@JavatechieАй бұрын
Please connect on javatechie4u@gmail.com
@rishiraj25482 ай бұрын
🙏🏻🙂💯
@vinodaddanki31212 ай бұрын
Please provide complete code sir
@Javatechie2 ай бұрын
Please check in video description
@suman85282 ай бұрын
having issue failed to listen,failed to deserialize,Caused by: java.lang.ClassNotFoundException: com.kafka.event_sourcing.entity.OrderEvent, any solution