-
Notifications
You must be signed in to change notification settings - Fork 543
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
Startup performance improvements #85
Conversation
Includes some tweaks to instrumentation
@@ -111,16 +109,6 @@ private async Task EnsureDcpHostRunningAsync(CancellationToken cancellationToken | |||
} | |||
|
|||
(_, _dcpRunDisposable) = ProcessUtil.Run(dcpProcessSpec); | |||
|
|||
try |
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 retry logic that we now have in KubernetesService we simply do not need this check
@@ -11,7 +11,7 @@ | |||
<PropertyGroup> | |||
<!-- Package versions defined directly in <reporoot>/Directory.Packages.props --> | |||
<MicrosoftDotnetSdkInternalPackageVersion>8.0.100-rc.1.23422.1</MicrosoftDotnetSdkInternalPackageVersion> | |||
<_DcpVersion>0.1.31-rc.6</_DcpVersion> | |||
<_DcpVersion>0.1.32-rc.6</_DcpVersion> |
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 version should bring significant startup time reduction for DCP
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.
Should this just be 0.1.32 instead of 0.1.32-rc.6?
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 Nuget restore was very unhappy when I only had 0.1.32
and told me the latest version was 0.1.32-rc.6
🤷♂️ Not sure what adds the -rc.6
part...
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'll take a look at the builds later; should be the exact same bits as 0.1.32 anyway, so not critical to fix right now.
Includes some tweaks to instrumentation