-
Notifications
You must be signed in to change notification settings - Fork 441
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
Forwarding the LanguageWorkerOptions from the host to the job host scope and ensuring we use the provided instances. #10369
base: dev
Are you sure you want to change the base?
Conversation
c71bd21
to
1306919
Compare
to the job host scope and ensuring we use the provided instances.
1306919
to
af614bb
Compare
Is it possible to add tests to validate this change? |
… refresh LanguageWorkerOption after script host is built. This will cause the LanguageWorkerOption to be refreshed after specialization.
@brettsam Ping on the review. |
@@ -42,18 +47,53 @@ public void Configure(LanguageWorkerOptions options) | |||
{ | |||
string workerRuntime = _environment.GetEnvironmentVariable(RpcWorkerConstants.FunctionWorkerRuntimeSettingName); | |||
|
|||
// Parsing worker.config.json should always be done in case of multi language worker | |||
// Parsing worker.latestConfiguration.json should always be done in case of multi language worker |
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.
Is worker.latestConfiguration.json
a new thing?
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.
This is looking like an accidental change to me. I don't expect a different file name.
if (rpcWorkerChannel != null && !UsePlaceholderChannel(rpcWorkerChannel)) | ||
{ | ||
_logger.LogInformation("Language worker options changed, and the placeholder worker channel is invalid for other reasons. Shutting down the channel."); | ||
await ShutdownChannelIfExistsAsync(_workerRuntime, rpcWorkerChannel.Id); |
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.
What's the scenario here, and why didn't we have this behavior before?
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.
Will need to review this to comment. That's part of a set of changes pushed by @kshyju .
Changes to the signal used to reload LanguageWorkerOptions
were required. I'm concerned that the logic here is assuming this will always change as a result of specialization, which may change in the future.
At the very least, the message needs to be a bit more descriptive.
if (applicationHostOptions.HasParentScope) | ||
{ | ||
// Forward th host LanguageWorkerOptions to the Job Host. | ||
var languageWorkerOptions = applicationHostOptions.RootServiceProvider.GetService<IOptionsMonitor<LanguageWorkerOptions>>(); |
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 am slightly concerned about how this will work in practice. There are subtleties to the way options are registered and calculated. I would feel better if we did the following:
services.AddSingleton(_ => applicationHostOptions.RootServiceProvider.GetService<IOptionsMonitor<LanguageWorkerOptions>>());
services.AddScoped(_ => applicationHostOptions.RootServiceProvider.GetService<IOptionsSnapshot<LanguageWorkerOptions>>());
services.AddSingleton(_ => applicationHostOptions.RootServiceProvider.GetService<IOptions<LanguageWorkerOptions>>());
Could even lift this to an extension method IServiceCollection ForwardOptionsFrom<TOptions>(this IServiceCollection, IServiceProvider source);
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.
Can you expand on the concerns? I like the idea of wrapping that into an extension to make this cleaner and reusable (this is applied to other options). But for the functionality, in this case, we are explicitly trying to avoid another cache miss when using IOptions<T>
, for LanguageWorkerOptions
specifically, given the cost of running its setup today and the state it tracks (those instances would be identical).
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.
Also, one thing to note is that using the suggested pattern will defer execution of the setup to the time services in the child container request the options, if nothing at the host scope consumes one of those option types.
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.
Also, one thing to note is that using the suggested pattern will defer execution of the setup to the time services in the child container request the options, if nothing at the host scope consumes one of those option types.
That was intentional. I wanted to ensure IOptions
in both parent and child container would be the same values. Otherwise, the two containers could potentially have different values if config changes between the two. Unlikely, but that would be one confusing bug if it ever happens.
we are explicitly trying to avoid another cache miss when using IOptions
Would this cache miss not already exist in the parent container?
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.
With the pattern currently used in the code, the values would be the same, also refreshed when using IOptionsMonitor
, one of the differences is that when using IOptions<T>
, you'd end up with the same instance that is returned by IOptionsMonitor<T>
(at the initial construction here), but that's intentional.
Would this cache miss not already exist in the parent container?
Right now, there are two cache misses in the JobHost/ScriptHost scope with every single initialization:
- Services taking a dependency on
IOptionsMonitor<LanguageWorkerOptions>
- Services taking a dependency on
IOptions<LanguageWorkerOptions>
If no WebHost services are using IOptions<LanguageWorkerOptions>
(or if that ever changes in the future as a result of changes to WebHost scoped services), we'd end up with a cache miss when initializing the JobHost, which would have an impact on cold start in some cases (specialization flows shouldn't be as impacted as the expectation is that placeholders would have forced this to happen).
The IOptions<LanguageWorkerOptions>
is the second hit we're trying to avoid.
For the WebHost, in specialization cases, even if the host has services consuming IOptions<LanguageWorkerOptions>
, those wouldn't impact customer cold start as they would happen in placeholders.
Ultimately, much of what we're dealing with here is the fact the this current setup implementation is doing way too much and that logic should be refactored into a separate, singleton, service that is reused, avoiding the duplicate execution of that expensive logic that is not expected to run more than once anyway.
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.
The WebHost won't ever be realizing IOptions<LanguageWorkerOptions>
when we have a customer payload? If that is the case, then I am fine with the approach as is.
@jviau / @brettsam / @liliankasem I'm reviewing the latest changes, and will take point on addressing any feedback. |
Co-authored-by: Jacob Viau <[email protected]>
Co-authored-by: Jacob Viau <[email protected]>
{ | ||
var message = $"Call to configure {nameof(LanguageWorkerOptions)} from the JobHost scope. " + | ||
$"If using {nameof(IOptions<LanguageWorkerOptions>)}, please use {nameof(IOptionsMonitor<LanguageWorkerOptions>)} instead."; | ||
Debug.Fail(message); |
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.
Can you explain the intention behind this? The comment says to use IOptionsMonitor<LanguageWorkerOptions>
, but won't this class still run (and fail) for that type?
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.
The message is a bit confusing, but with the forwarding, no setups should run for IOptionsMonitor<LanguageWorkerOptions>
within the JobHost scope. The same applies to IOptions<LanguageWorkerOptions
, though, so either option would take the host injected instances and not run any setup logic within that scope.
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.
Ah, can we clarify that?
- Add a comment explaining this is only registered for JobHost scope
- Update debug message to something like "Unexpected configuration of LanguageWorkerOptions from the JobHost scope. LanguageWorkerOptions should be forwarded from the parent scope with no additional configuration."
Issue describing the changes in this PR
Addressing an issue leading to double initialization of worker configuration and profile evaluation.
Pull request checklist
IMPORTANT: Currently, changes must be backported to the
in-proc
branch to be included in Core Tools and non-Flex deployments.in-proc
branch is not requiredrelease_notes.md