-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added .NET client for Dapr Jobs API #1331
Conversation
Signed-off-by: Whit Waldo <[email protected]>
@philliphoff Any other changes you think should be made here? |
I'm seeing the E2E tests fail on my system following the recent merge with I did add two more unit tests to validate the DaprClientBuilder a bit more where it was lacking existing tests and those are passing. |
/// runtime gRPC client used by the consuming package. | ||
/// </summary> | ||
/// <exception cref="InvalidOperationException"></exception> | ||
protected (GrpcChannel channel, HttpClient httpClient, Uri httpEndpoint) BuildDaprClientDependencies() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like this tuple will become unwieldy if/when the number of dependencies/options increase. I wonder if something like this would be more flexible:
public TClientBuilder Build()
{
DaprClientDependencies dependencies = // Generate dependencies;
return this.Build(dependencies);
}
protected virtual TClientBuilder Build(DaprClientDependencies dependencies);
protected sealed record DaprClientDependencies(GrpcChannel Channel, HttpClient HttpClient, Uri HttpEndpoint);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I pulled this out primarily to remove duplicate code when spinning up clients in other packages ensuring that they're all using the same configuration data for endpoints, API keys and whatnot.
However, as was evidenced in the subscriptions implementation, this approach doesn't really lend itself to any use of injected functionality down the line (e.g. logging, compression handlers, serialization handlers, etc) provided by the developer at registration time. Do you have any thoughts on abandoning this approach altogether and instead opting for more of a DI-first, factory-style approach?
I'd be happy to put together a POC in a separate PR if you're more inclined to visit that elsewhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given the similarity of the downloads between Dapr.Client and Dapr.AspNetCore, I'm curious if you know if there have been any surveys done on just how many people use the DaprClient without relying on dependency injection?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know of any, though my personal expectation is that more people are using the AspNetCore
provided DI method than building one manually.
src/Dapr.Jobs/Extensions/DaprJobsServiceCollectionExtensions.cs
Outdated
Show resolved
Hide resolved
src/Dapr.Jobs/Extensions/Helpers/Deserialization/ByteArrayDeserializationExtensions.cs
Outdated
Show resolved
Hide resolved
src/Dapr.Jobs/Extensions/Helpers/Serialization/DaprCronJobsSerializationExtensions.cs
Outdated
Show resolved
Hide resolved
src/Dapr.Jobs/Extensions/Helpers/Serialization/DaprCronJobsSerializationExtensions.cs
Outdated
Show resolved
Hide resolved
…fNullOrEmpty in Jobs SDK implementation Signed-off-by: Whit Waldo <[email protected]>
Signed-off-by: Whit Waldo <[email protected]>
…mparisons. Updated all usages. Signed-off-by: Whit Waldo <[email protected]>
Signed-off-by: Whit Waldo <[email protected]>
…ng with each call. Signed-off-by: Whit Waldo <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1331 +/- ##
==========================================
+ Coverage 67.28% 68.01% +0.72%
==========================================
Files 174 187 +13
Lines 6025 6352 +327
Branches 671 722 +51
==========================================
+ Hits 4054 4320 +266
- Misses 1802 1853 +51
- Partials 169 179 +10
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…int failure when a cancellation was requested Signed-off-by: Whit Waldo <[email protected]>
…me that has to be known at compile time, it instead allows a delegate to be passed in to handle it. That delegate is provided the job name and payload, if it can be accessed and deserialized. Signed-off-by: Whit Waldo <[email protected]>
@philliphoff I changed how the inbound job triggers are handled in the latest commit. Where it handled before more like how topics are subscribed to in the pub/sub context, after responding to an inquiry in Discord, it occurred to me that should someone schedule some jobs during runtime, this approach would require redeploying the app. Instead, I've changed it to operate more like the dynamic subscription in that it maps to all POST requests to "/job/{jobName}". It attempts to deserialize the inbound request body to a I've also updated the unit tests and example project to validate the new approach. While updating the unit tests, I realized that I didn't have a really solid approach to dealing with the serialization and deserialization of the |
Signed-off-by: Whit Waldo <[email protected]>
src/Dapr.Jobs/DaprJobHandler.cs
Outdated
/// <param name="jobName">The name of the triggered job.</param> | ||
/// <param name="jobDetails">The details of the triggered job.</param> | ||
/// <returns></returns> | ||
public delegate Task InjectableDaprJobHandler(IServiceProvider serviceProvider, string? jobName, DaprJobDetails? jobDetails ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A thought: there may be other things we'll want to pass to such handlers (e.g. a CancellationToken
). It might be best to consolidate the individual arguments into a DaprJobHandlerContext
object and just pass that one thing. In that way, additional things can be added in a way that won't break existing code and won't require additional overloads of the MapDaprJob()
method.
It would be cool to be able to reuse some of ASP.NET's minimal API parameter binding logic so that users can just write their handlers in the same way as they normally would (while just injecting the additional job details), but I don't think that's exposed from the infrastructure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've been trying to think of some way to make this more flexible and while reading through a little bit of how ASP.NET Core does it in their minimal APIs, I've come up with a similar approach and while it's not as fancy as theirs, it also doesn't need to do route binding. Ideally, we can add an analyzer for this or something at some point, but the developer can pass a delegate of their own into the extension and the first two parameters must be a string?
for the job name and a DaprJobDetails?
for the job details. Anything after that is dynamically injected for them like the minimal APIs do and the cancellationToken is passed in as the last parameter.
This approach gets rid of the two delegate handlers I defined and means the developer doesn't have to deal with an IServiceProvider
, but gets their CancellationToken
and we don't have to deal with maintaining a context object.
I want to write several unit tests to validate this out and make sure it works, but I updated the example to show off the new approach.
…on style. Removed need for delegate handler overloads. Signed-off-by: Whit Waldo <[email protected]>
…ation Signed-off-by: Whit Waldo <[email protected]>
Description
Added a Dapr Jobs client for the new Jobs API.
This PR is intended to replace the previous one and was performed as a squash merge of it - the third commit (early on) was missing a period in my email address which apparently breaks the DCO process (even though I have an email alias and I can still receive email there). Because I cannot figure out how to fix multi-line comments, I'm providing this updated PR instead.
Issue reference
We strive to have all PR being opened based on an issue, where the problem or feature have been discussed prior to implementation.
Please reference the issue this PR will close: #1321
Checklist
Please make sure you've completed the relevant tasks for this PR, out of the following list: