Coder Social home page Coder Social logo

dodopizza / httpclient-resilience-policies Goto Github PK

View Code? Open in Web Editor NEW
84.0 4.0 5.0 270 KB

This library extends IHttpClientBuilder with easy to use resilience policies for the HttpClient.

License: Apache License 2.0

C# 100.00%
tooling resilience dotnet circuitbreaker retries

httpclient-resilience-policies's People

Contributors

ahydrax avatar ceridan avatar dashabulanova avatar divanov1980 avatar evjenio avatar nymezide avatar rasteniy avatar spacentropy avatar tatianaepifanova avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

httpclient-resilience-policies's Issues

Make clean API for end-users without strict bound to Polly

Currently, we have strict bounds with Polly library. For example, in the settings classes we have code like this Action<DelegateResult<HttpResponseMessage>, TimeSpan> DoNothingOnBreak, where DelegateResult is a Polly class which exposed to the end-users. We want to get rid of it in the public classes to separate library API and details of it implementation.
It gives us huge benefits:

  • We can replace Polly with something else without breaking changes for users.
  • It relaxes the requirement to have the same version of Polly in the client code and our library, which is quite important to integration.

The downside of this solution is bunch of boilerplate code for wrapping some Polly classes.

Add net5 support

.NET 5 finally released. We should add support for this target.

AddJsonClient doesn't respect clientName parameter

AddJsonClient extension method provided by the library has clientName argument to create named clients but actually never use it.

Actually it is not a bug, it was never implemented. We should fix it.

Add `AddResiliencePolicies` extension method

Previous AddDefaultPolicies method was the most frequently used extension method. We should return it, but we want to rename it to AddResiliencePolicies because word "default" has unclear meaning.

Add PDB files to NuGet package

Add PDB to NuGet package to support code navigation.
See AllowedOutputExtensionsInPackageBuildOutputFolder csproj property.

Support net 4.6.1

Add support for full framework. Check library on Windows with full framework.

Add wiki documentation

Problem description
Add wiki documentation to project and move specified files to wiki:

  • Contributing.md
  • README.md
  • CI_AND_RELEASE.md

Update README to clarify repository main goal

Update README to more precisely describe the problem which is solved by this library. The essential part of this repo is not only provide wraps of Polly policies, but also create proper order in which policies should applied to provide correct request/response flow. Otherwise you may get unexpected behavior of you http client.

Reporting a vulnerability

Hello!

I hope you are doing well!

We are a security research team. Our tool automatically detected a vulnerability in this repository. We want to disclose it responsibly. GitHub has a feature called Private vulnerability reporting, which enables security research to privately disclose a vulnerability. Unfortunately, it is not enabled for this repository.

Can you enable it, so that we can report it?

Thanks in advance!

PS: you can read about how to enable private vulnerability reporting here: https://docs.github.com/en/code-security/security-advisories/repository-security-advisories/configuring-private-vulnerability-reporting-for-a-repository

Out of support .NET Core 2.1

.NET Core 2.1 is out of support. We should remove its support too. Additionally, it allows us to get rid of conditionals in csproj.

HttpClientSettings refactoring

Problem description

The first problem is the name of HttpClientSettings does not reflect the core idea of the library. It would be better PollyDefaultSettings or something like this.

The second problem is according to framework design guidelines using constructors is not very usable in this type of object. It would be better to make public setters for all settings.

implement Phi-Accrual Failure Detector for adjust timeout at runtime

Problem description
The choice of the correct timeout is always a complicated task.

The idea is rather than using a configured constant timeout continually measure response times and automatically adjust timeouts according to the observation of response time distribution. This can be done with a Phi Accrual failure detector algorithm.

"The delegate executed asynchronously through TimeoutPolicy did not complete within the timeout." exception occurs on small OverallTimeout

Exception:
Polly.Timeout.TimeoutRejectedException : The delegate executed asynchronously through TimeoutPolicy did not complete within the timeout.
----> System.OperationCanceledException : The operation was canceled.

Way to reproduce:

		[Test]
		public async Task OverallTimeoutError()
		{
			var settings = new ResiliencePoliciesSettings
			{
				OverallTimeout = TimeSpan.FromMilliseconds(10)
			};
			var wrapper = Create.HttpClientWrapperWrapperBuilder
				.WithStatusCode(HttpStatusCode.ServiceUnavailable)
				.WithResiliencePolicySettings(settings)
				.Please();

			await wrapper.Client.GetAsync("http://localhost");
		}

Test `Should_break_after_4_concurrent_calls` looks flaky

Test Should_break_after_4_concurrent_calls looks flaky. It usually represents on my local machine. 2 of 3 tests are failed for netcoreapp2.1:

Dodo.HttpClientResiliencePolicies.Tests.CircuitBreakerTests.Should_break_after_4_concurrent_calls

  Expected: 2
  But was:  3

Fix deprecated csproj fields

Problem description
Release pipeline mark some fields as deprecated. See logs below:

##[warning]/opt/hostedtoolcache/dncs/3.1.100/x64/sdk/3.1.100/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets(198,5): warning NU5125: The 'licenseUrl' element will be deprecated. Consider using the 'license' element instead. [/home/runner/work/httpclient-resilience-policies/httpclient-resilience-policies/src/Dodo.HttpClient.ResiliencePolicies/Dodo.HttpClient.ResiliencePolicies.csproj]
##[warning]/opt/hostedtoolcache/dncs/3.1.100/x64/sdk/3.1.100/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets(198,5): warning NU5048: The 'PackageIconUrl'/'iconUrl' element is deprecated. Consider using the 'PackageIcon'/'icon' element instead. Learn more at https://aka.ms/deprecateIconUrl [/home/runner/work/httpclient-resilience-policies/httpclient-resilience-policies/src/Dodo.HttpClient.ResiliencePolicies/Dodo.HttpClient.ResiliencePolicies.csproj]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.