Тёмный
Codefarm
Codefarm
Codefarm
Подписаться
🌿 JAVA
🌿 SPRING - 👉 SPRING BOOT 👉 SPRING CLOUD 👉 SPRING DATA
🌿 MICROSERVICES - ARCHITECTURE AND CODE WITH REAL-TIME EXAMPLES
🌿 SOFTWARE TESTING
🌿 TECH TALKS ABOUT IMPORTANT AND LATEST TOPICS
🌿 PIVOTAL CLOUD FOUNDRY
🌿 DOCKER
🌿 AMAZON WEB SERVICES - AWS


Комментарии
@anushaakkena9775
@anushaakkena9775 4 дня назад
Hi Arvind, thank you.Watched all the videos, it's very useful. I am working on a pcf project. It's clearly gave clarity on each topic. I want more videos on load balancer, settings option on pcf
@peddanagallaharikrishna4246
@peddanagallaharikrishna4246 6 дней назад
Thanks. It worked.
@debrajdutta2987
@debrajdutta2987 15 дней назад
your presenting technique is really good. please continue
@codefarm0
@codefarm0 15 дней назад
👍
@ianwanjala8621
@ianwanjala8621 16 дней назад
hey, this is great, but this does not work with multipart requests... could you help, and then could you show an example of where you are using 2 filters, the first one to log and the next one to do something else - I'm just curious how the two could work together
@codefarm0
@codefarm0 15 дней назад
It should have worked for multipart as well... Need to see the code to be able to see the issue.... For multiple filters there is ordering among filter, by default some order gets applied, to customise this @order annotation can be used
@ianwanjala8621
@ianwanjala8621 15 дней назад
@@codefarm0 it didn't work for multipart, it kept telling me that some of the data that was in the form was lost so it never made it to the controller. I was using multiple filters and both were making a copy of the request, however, in some instances the response was lost and never made it to the client. Can we debug on the weekend or when are you available. I'm open to buying coffee of it works.
@RishiRajxtrim
@RishiRajxtrim 20 дней назад
👍🏻🙂🙏🏻
@codefarm0
@codefarm0 20 дней назад
👍
@RishiRajxtrim
@RishiRajxtrim 22 дня назад
🙏🏻🙂👍🏻
@codefarm0
@codefarm0 22 дня назад
Playlist - Coming Up GitHub - Coming Up
@happyteam2411
@happyteam2411 11 часов назад
GitHub Code please
@srikanthbathula6714
@srikanthbathula6714 23 дня назад
Hi Bro, please make a video on complete annotations and differences in spring and spring boot
@codefarm0
@codefarm0 22 дня назад
Yup... Will be covering in next videos
@codefarm0
@codefarm0 24 дня назад
Check the complete playlist - ru-vid.com/group/PLq3uEqRnr_2GTTB3iKMd8d375NR7vJSJu
@mukulsaini2961
@mukulsaini2961 24 дня назад
I applied, but still not give any suggestions?
@codefarm0
@codefarm0 24 дня назад
Restarted the ide?
@hingchongrongphar3385
@hingchongrongphar3385 24 дня назад
Thank you
@trainlikeafighter9056
@trainlikeafighter9056 24 дня назад
Thank bro...❤
@gnanesharva4998
@gnanesharva4998 26 дней назад
The video title should have been “Concepts in Rate Limiter” not design. But the video was very helpful to understand the concepts easily. 👍👍
@codefarm0
@codefarm0 26 дней назад
Hi, thanks for taking out time to put this, really appreciate that.... By the way why do you think it's not design but concept?
@gnanesharva4998
@gnanesharva4998 26 дней назад
@@codefarm0 I thought you would be designing it, like we do in System Design interviews. Having Redis, how you store the counters and some pseudo code. I would suggest you to create one more video on that. 1) Design Concepts/Considerations for Rate Limiter 2) Designing/Implemeting Rate Limiter using Redis/Or Whatever
@codefarm0
@codefarm0 26 дней назад
Okk.. now I see that. Thanks ..will be covering those in upcoming weeks.
@srikanthbathula6714
@srikanthbathula6714 27 дней назад
Hi Bro, Nice Explanation, continue this playlist
@codefarm0
@codefarm0 27 дней назад
Sure Srikanth...thanks ❤️
@mkSlayer9
@mkSlayer9 27 дней назад
How does producer know if a consumer has failed to process a message ?
@codefarm0
@codefarm0 27 дней назад
the producer is typically not directly aware of whether a consumer has successfully processed a message. Kafka's design decouples producers and consumers, allowing them to operate independently.
@mkSlayer9
@mkSlayer9 27 дней назад
@@codefarm0 I did some more reading. The consumer sends a failure event which makes the producer resend the message ( retry functionality ). Its still half baked knowledge in my head, the learning is still on. Thanks anyway. Nice content.
@codefarm0
@codefarm0 27 дней назад
that retry mechanism is there on producer side, Kafka broker sends acknowledgements to the producer, that's how producer is sure that message has been sent to Kafka Topic. But once kafka has ackowledged the receiving of the message then its upto consumer to process the message correctly, at consumer end also retry mechanism is implemented, if all retries gets exhausted, the message is sent to DLQ for later processing.
@codefarm0
@codefarm0 27 дней назад
In case if you interested there is one video i had created a while back on kafka producer/consumer- ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-D6jjvthPv1A.htmlsi=Wq61lKTei8NnoCCm
@mkSlayer9
@mkSlayer9 27 дней назад
@@codefarm0 Thanks will go through it
@ianwanjala8621
@ianwanjala8621 28 дней назад
what if I want to add something to the response or to the request object or even to their respective headers, how do I go about that
@codefarm0
@codefarm0 28 дней назад
You can add that in request and response objects...that will be passed on
@ianwanjala8621
@ianwanjala8621 28 дней назад
@@codefarm0 thanks it works when I add it to the request and response wrapper's headers. Can I also add something to the input stream/req body?
@codefarm0
@codefarm0 27 дней назад
Yea that can be done too. have you tried something around it?
@ianwanjala8621
@ianwanjala8621 27 дней назад
@@codefarm0 yep, so I coverted the stream to json depending on the uri and then wrote to it and reconverted it back to stream. Afterwards I set the value or I set the byteArray then back to ServleInput stream. Finally passed it to the filter chain, Is that correct?
@codefarm0
@codefarm0 27 дней назад
@ianwanjala8621 as long as it's working correctly should be fine...but changes in streams should be done carefully and well tested before putting to prod
@gurumoorthy508
@gurumoorthy508 29 дней назад
Thank you Bro. Its really helpful
@codefarm0
@codefarm0 29 дней назад
Glad it helped. Check this one too which is latest on the same topic - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Tc3jL4mN9kE.html
@sujitkumar2196
@sujitkumar2196 29 дней назад
Excellent tutorial keep it up...😀
@codefarm0
@codefarm0 Месяц назад
Playlist for other videos - ru-vid.com/group/PLq3uEqRnr_2E8fpzIaHTfKJWvAAMq7s0c&si=ZKc2pKwKRnYRHylJ Mock Interview Series - ru-vid.com/group/PLq3uEqRnr_2FnDR5vHlewSj_4-_-BCbaZ Github page - github.com/codefarm0/interview-preparation
@srikanthbathula6714
@srikanthbathula6714 Месяц назад
Good explanation Bro
@codefarm0
@codefarm0 Месяц назад
Thank much Srikanth 🙂
@codefarm0
@codefarm0 Месяц назад
Check the update video with new plugin that works smoothly with YAML & properties file both - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Tc3jL4mN9kE.html
@codefarm0
@codefarm0 Месяц назад
Playlist for other videos - ru-vid.com/group/PLq3uEqRnr_2E8fpzIaHTfKJWvAAMq7s0c&si=ZKc2pKwKRnYRHylJ Mock Interview Series - ru-vid.com/group/PLq3uEqRnr_2FnDR5vHlewSj_4-_-BCbaZ Github page - github.com/codefarm0/interview-preparation
@codefarm0
@codefarm0 Месяц назад
Playlist for other videos - ru-vid.com/group/PLq3uEqRnr_2E8fpzIaHTfKJWvAAMq7s0c&si=ZKc2pKwKRnYRHylJ Mock Interview Series - ru-vid.com/group/PLq3uEqRnr_2FnDR5vHlewSj_4-_-BCbaZ Github page - github.com/codefarm0/interview-preparation
@codefarm0
@codefarm0 Месяц назад
Playlist for other videos - ru-vid.com/group/PLq3uEqRnr_2E8fpzIaHTfKJWvAAMq7s0c&si=ZKc2pKwKRnYRHylJ Mock Interview Series - ru-vid.com/group/PLq3uEqRnr_2FnDR5vHlewSj_4-_-BCbaZ Github page - github.com/codefarm0/interview-preparation
@srikanthbathula6714
@srikanthbathula6714 Месяц назад
Hi Bro, please continue this playlist. It will be very helpful
@codefarm0
@codefarm0 Месяц назад
Sure Srikanth.. many videos are scheduled from today in this series
@calebcougle9218
@calebcougle9218 Месяц назад
This is a great series! Thank you! :)
@codefarm0
@codefarm0 Месяц назад
Glad you like them!
@devibalan.a
@devibalan.a Месяц назад
The RootUriTemplayeHandler is deprecated. Instead we can use 'DefaultUriBuilderFactory' class.
@Parag_06
@Parag_06 Месяц назад
kafka hibino😅
@jyotsnab7994
@jyotsnab7994 Месяц назад
@codefarm0, can you please complete this session with trust store part, just wanted to understand similar SBI I am trying to connect with 3rd party app through apigee downloading certificate then converted from .crt to jks , placed in resources folder, but getting error like root/.keystore not found landing with Filenot found exception, can you help here.
@codefarm0
@codefarm0 Месяц назад
Let me take a look..will respond as soon as I able to replicate this
@codefarm0
@codefarm0 Месяц назад
Please check this video, i think you should get the answer ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-SbuPNXXvTJA.htmlsi=Ubuozr84GYF9XcL3 If not please let me know
@SaurabhGadariya
@SaurabhGadariya Месяц назад
When I am running Test case of @Cacheable method with @SpringbootTest, it doesn't write into redis cache, any idea why is this the case?
@codefarm0
@codefarm0 Месяц назад
Difficult to tell without looking at code.Can u pls share the test code
@shiroclip_4nime
@shiroclip_4nime Месяц назад
: Response Body - Am getting blank....
@codefarm0
@codefarm0 Месяц назад
can you share more details?
@Dileepkumar-s3y
@Dileepkumar-s3y Месяц назад
i need help .. how can i contact u
@codefarm0
@codefarm0 Месяц назад
lets connect over linkedin
@Dileepkumar-s3y
@Dileepkumar-s3y Месяц назад
How to contact you..
@codefarm0
@codefarm0 Месяц назад
Let's connect at www.linkedin.com/in/arvind-kumar-108a4b2b/
@daltonmackenzie599
@daltonmackenzie599 Месяц назад
This is the first concise, clear, and yet comprehensive video I've been able to find on this topic, thank you for the work you put into these! :)
@codefarm0
@codefarm0 Месяц назад
GitHub.dev was introduced on August 11, 2021
@maan9011
@maan9011 Месяц назад
First time watching ur video preety good nd simple
@codefarm0
@codefarm0 Месяц назад
Happy to hear that. Thanks @maan9011
@abhinavsharma7818
@abhinavsharma7818 Месяц назад
Great Video. can you also share the resources used in the preparation
@codefarm0
@codefarm0 Месяц назад
Thanks Abhinav for checking out. What resources?? Can u please be specific
@codefarm0
@codefarm0 Месяц назад
An article on this topic will soon be posted on LinkedIn & Medium for reading.
@indikakumarasinghe4792
@indikakumarasinghe4792 Месяц назад
Great lesson
@lakshanchamod1208
@lakshanchamod1208 Месяц назад
nice
@ramana152
@ramana152 Месяц назад
Hi I have one question, could you please suggest how to do. Question:- we have key and values in harsicorp vault and from jenkins we able to get all the keys and values in json formart, now the task is how to set that json data into pcf environment variable?
@codefarm0
@codefarm0 Месяц назад
Hi, You still able to access the PCF portal?? It was shutdown a while back Refer - stackoverflow.com/questions/67972330/pivotal-cloud-foundry-vs-vmware-tanzu-application-service?rq=2
@Javaworkspace
@Javaworkspace Месяц назад
Thank you
@carthagetn1142
@carthagetn1142 2 месяца назад
Thank you so much
@codefarm0
@codefarm0 2 месяца назад
Happy learning
@anmolkumargupta2528
@anmolkumargupta2528 2 месяца назад
Awesome sir🎉
@codefarm0
@codefarm0 2 месяца назад
Happy learning 🎊
@sunilsuni9117
@sunilsuni9117 2 месяца назад
Very Good explanation
@codefarm0
@codefarm0 2 месяца назад
Checkout architecture around caching in distributed system - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-p1YKLf2FfO4.htmlsi=BAqPgVnMGoaRaf3q
@codefarm0
@codefarm0 2 месяца назад
Checkout the demo of Cache and its Integration with Spring Boot - ru-vid.com/group/PLq3uEqRnr_2HY6LMQsbvsK4btj51sWhBS