Nikunj Vaishnavdevcloudjourney.hashnode.dev·Jul 12, 2024AWS Generative AI: Revolutionizing Cloud ComputingHey there, tech enthusiasts! Today, let’s dive into one of the most exciting frontiers in the world of cloud computing—AWS Generative AI. If you’re passionate about cloud technologies and artificial intelligence, this post is for you. Let’s break it ...DiscussAWS Clouddevcloudjourney
Daniel Hofmandanielhofman.com·Apr 14, 2024Navigating the Resilience Landscape: Polly & TemporalBoth Polly and Temporal have become cornerstones in the quest for resilience in software systems. Polly is a library that boosts the resilience of .NET applications, effectively managing transient failures through strategies like retries, timeouts, a...Discuss·181 readsdotnet
Sumit Mondalsumit007.hashnode.dev·Apr 1, 2024A Beginner's Guide to Implementing AWS Polly: Simple Steps and ExamplesIn today's digital age, the demand for innovative and engaging content is at an all-time high. Whether you're a content creator, a developer, or a business owner, finding ways to make your content stand out can be challenging. Fortunately, with the h...DiscussAWS - HandsOnAWS
shineydocs-eddy-studios.hashnode.dev·Jan 3, 2024.NetCore 实践——Polly[二]polly 组件包: polly 功能包 polly.Extensions.Http 专门针对http的扩展包 Miscrosoft.Extension.Http.Polly 看到这个名字,那么99%是针对官方.net core的扩展包,是HttpClientFactory 的扩展。 polly有下面一些功能: 失败重试 服务熔断 超时处理 舱壁处理 缓存策略 失败降级 组合策略 舱壁处理 是什么呢? 这个是限流功能,服务定义最大的流量和队列,避免请求量过大而崩溃。 组合策略...Discuss.NetCore实践.net core
Pavlo Datsiukpavlodatsiuk.hashnode.dev·Sep 27, 2023Resilience: Strategies and Patterns for Distributed SystemsToday, we're diving into the world of resiliency in distributed systems. Distributed systems are complex and prone to various issues, but as developers, it's our responsibility to mitigate risks and shield users from the underlying problems. This blo...Discuss·51 readscircuit breaker
Kristof RiebbelsProdotnet.kriebbels.me·Jul 2, 2023Understanding the HttpClient: An Overview with codePreviously on... Change is inevitable! I often find myself diving into new codebases and projects, each with its own set of challenges. Previously I explored the IConfiguration of DotNet with references to Net Framework. I will explore now a scenario...Discuss·181 readsDotNethttpclient
Moruling Jamesmorulingjames.hashnode.dev·Apr 27, 2023Polly Policies OverviewIntroduction "Resilient and Robust code with Polly in .NET Core" is a series that focuses on the usage of Polly, a .NET library that allows developers to handle faults, retry operations, and circuit-breaker patterns more efficiently and reliably. In ...Discuss·645 readsResilient and Robust Code With Polly in Dot Net CoreWeb Development
Moruling Jamesmorulingjames.hashnode.dev·Apr 20, 2023Retry and Fallback Pattern in .Net 6 with PollyIntroduction If you find your code having to execute itself every time it encounters errors in calling an operation, then it is time to reconsider limiting your execution to a specific number of times and have a backup plan once all attempts fail or ...Discuss·5.2K readspolly