- Notifications
You must be signed in to change notification settings - Fork1.4k
Question about VBCSCompiler.dll process lifetime#11010
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
I was doing some investigation of issue discussed indotnet/sdk#44922 and found the following comment: msbuild/src/Build/BackEnd/Components/Communications/DetouredNodeLauncher.cs Lines 131 to 133 in9c89563
but in reality, $ rm -r obj bin# evict cache$ dotnet build$ ps -e -o pid,ppid,args| grep -i vbcs| fold -6571304 1 /Users/am11/.dotnet10/dotnetexec /Users/am11/.dotnet10/sdk/10.0.100-alpha.1.24567.3/Roslyn/bincore/VBCSCompiler.dll -pipename:_UckHksr8RUqDGzqnwgGw7cOMBqfRYBBs8oEnOvtDzY It does go away on its own after exactly 600 seconds (10 minutes). If this is by design:
|
BetaWas this translation helpful?Give feedback.
All reactions
Perhapsdotnet build --disable-build-servers; I did not test.
Also,dotnet build-server shutdown --vbcscompiler; but seedotnet/sdk#20183.
The 10-minute timeout seems to be athttps://github.com/dotnet/roslyn/blob/9bea39d29a00719039d0d3705a15d384bdc385da/src/Compilers/Server/VBCSCompiler/ServerDispatcher.cs#L43-L46. It would be configurable in appsettingshttps://github.com/dotnet/roslyn/blob/9bea39d29a00719039d0d3705a15d384bdc385da/src/Compilers/Server/VBCSCompiler/BuildServerController.cs#L64 but the configuration is only read on .NET Frameworkhttps://github.com/dotnet/roslyn/blob/9bea39d29a00719039d0d3705a15d384bdc385da/src/Compilers/Server/VBCSCompiler/VBCSCompiler.cs#L25-L30.
Replies: 1 comment 1 reply
-
Perhaps Also, The 10-minute timeout seems to be athttps://github.com/dotnet/roslyn/blob/9bea39d29a00719039d0d3705a15d384bdc385da/src/Compilers/Server/VBCSCompiler/ServerDispatcher.cs#L43-L46. It would be configurable in appsettingshttps://github.com/dotnet/roslyn/blob/9bea39d29a00719039d0d3705a15d384bdc385da/src/Compilers/Server/VBCSCompiler/BuildServerController.cs#L64 but the configuration is only read on .NET Frameworkhttps://github.com/dotnet/roslyn/blob/9bea39d29a00719039d0d3705a15d384bdc385da/src/Compilers/Server/VBCSCompiler/VBCSCompiler.cs#L25-L30. |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Nice! I knew about build-server shutdown, but |
BetaWas this translation helpful?Give feedback.