-
Notifications
You must be signed in to change notification settings - Fork 132
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
multiple "rzc.dll" processes at the end of the build #1442
Comments
Triage notes: |
Hello @dagood I found similar issues in the roslyn project dotnet/roslyn#24137 I tried to modify some environment variables, it didn't fix the problem
This is much better by modifying the variable tmpdir (TMPDIR=/tmp), i still have a waiting time at the end of the build but I do not stay completely blocked. I don't understand why it works by changing TMPDIR to /tmp. By default on our distribution, we use /var/tmp/paludis/build/dev-dotnet/temp as the path for temporary files and defining TMPDIR to /tmp is not really a solution for me. Is it possible to transfer this issue to the roselyn project? I am open to any suggestions that would allow me to debug the problem. |
I think you're on the right track disabling the persistent nodes, compiler servers, etc. (I get problems with Roslyn's persistence keeping a Actually think I found something... googled "disable shared rzc dll" (after some less successful guesses) and found dotnet/sdk#9487 describing a |
How long have you tried waiting for the processes to terminate? Typically these shared server implementations die naturally after some number of minutes... not sure if that's the case with |
Hello :)
I am trying to fix a problem after the build is finished, I have many pending processes.
rzc.dll server -p .....
The problem may be related to my linux distribution, we have several phases during the installation of a package and the waiting processes blocks the install phase.
I have to kill the process to be able to complete the installation
I saw something similar here: https://github.com/dotnet/cli/issues/9481
Is there a solution to kill this process properly at the end of the build?
The text was updated successfully, but these errors were encountered: