"Remote System Explorer Operation" causing freeze for couple of seconds

Eclipse

Eclipse Problem Overview


I observe "Remote System Explorer Operation" in Progress view of Eclipse after each save of Java file (so it might be related to compiling?). It makes the Eclipse unusable for 1 to 10 seconds. In some projects (of about the same size) it's quicker, in some it's slower.

I have no idea which plugin might be the cause for it. I have Build id: 20090920-1017. I have quite a few plugins installed.

I have tried turning all the remote systems to enabled=false under Preferences | Remote Systems (whatever it means). I didn't help.

Any idea how to solve it?

EDIT:

  1. It doesn't happen when Project | Build automatically is turned off. So it's some part of the building process.

Eclipse Solutions


Solution 1 - Eclipse

Here are the steps:

  1. Click on the Windows > Preferences menu
  2. Select General > Startup and Shutdown in the tree
  3. Uncheck RSE UI
  4. Select Remote Systems in the tree
  5. Uncheck Re-open Remote Systems view to previous state
  6. Restart Eclipse

Note: You must have Eclipse 4.3.1 (or newer) due to a bug on previous version

Solution 2 - Eclipse

Here are the steps:

  1. Click on the Windows > Preferences menu
  2. Select General > Workspace > Build Order in the tree
  3. Uncheck Use default build order
  4. Select RemoteSystemsTempFiles
  5. Click Remove Project
  6. Click Apply and Close

Solution 3 - Eclipse

This was driving me crazy too.

Thanks to this topic I got to understand it was the plugin RSE, but I could not uninstall the Remote System Explorer plugin tool either. I had to remove all the plugins whose name started by org.eclipse.rse in plugins/, it's working now.

Solution 4 - Eclipse

I'm having this issue also.

I have found that the operation is part of the Remote System Explorer plugin which comes packaged with SpringSource 3.3 (Kepler). Trying to figure out how to uninstall it now. Will post back here once I find it.

Information on how to install can be found here (step 3): http://www.patrickjwaters.com/blog/2011-07-24/how-setup-eclipse-php-pdt-remote-system-explorer-theme-manager-and-drupal-plugins/35

As for uninstall I'm still trying (the option to uninstall is greyed out for me in the installation details panel).

I've tried Windows > Preferences > Remote Systems, setting everything to false but the problem still occurred.

Solution
We've since moved to a Vanilla install of Eclipse Kepler and just added the plugins we require (excluding Remote System Explorer). This has fixed the issue.

Solution 5 - Eclipse

Close the Git-Staging View !

I had the same Problem on my Eclipse 4.3 Kepler. After removing (closing) the Git-Staging View the Problem was resolved !

Solution 6 - Eclipse

I have experienced "Remote System Explorer Operation" tasks running on resource save.

Kepler + AspectJ + SpringSource In my case, it was caused by invalid aspectj pointcut definitions. I had 30 pointcuts and 4 of them referenced a deleted class. I have noticed blinking Spring AOP markers.

After I have fixed the pointcuts, the freezing stopped.

Solution 7 - Eclipse

I think I may have found a work-around for this issue...

  1. If the window pops up, close it then click the Stop button at the bottom
  2. Uncheck "Build Automatically" under Project
  3. Project | Build Project
  4. Check "Build Automatically"

Now, try what you were doing again.

Solution 8 - Eclipse

Window -> Show View -> Other... -> Remote System Details (or maybe Remote Systems)

This is with Eclipse 4.3 Kepler (2013/2014)

Find the all non-LOCAL items and Delete them. I could not see any DISABLE function.

For me this seems to stop the extra 1 to 3 second delay (on Intel i7 box) when saving with editor and an auto-build completes.

http://forum.spring.io/forum/spring-projects/springsource-tool-suite/128402-sts-3-3-0-m2-and-remote-system-explorer-poor-performances hints that STS 3.4M1+ might alleviate the problems, I have not yet tried this as I only run GA releases so will try when Kepler SR1 comes out in 7 days from now.

Solution 9 - Eclipse

For me at this time for Spring Tool Suite 3.9.4. Release disabling remote system via preferences menu fixed the issue. Here is the reference that helped me. but after a while, the problem is there again!

Solution 10 - Eclipse

Switched to eclipse photon one week, didn't see the annoying "remote system...." any longer.

Solution 11 - Eclipse

I was also experienced multiple remote system explorer operations while compiling a C++ project in eclipse (I'm using Nsight bu nvidia - eclipse based platform). After i did all the suggested solutions here, I still had the problem.

BUT- when i changed the -Wall option to -w option for the gcc compiler the problem disappeared.

GO TO - Project Properties -> Build-> Settings -> Tool settings tab-> gcc compiler -> warnings -> uncheck -Wall and check -w

The same goes for G++ Compiler.

Solution 12 - Eclipse

I also experienced "Remote System Explorer Operation" tasks running on resource save.

When using AspectJ Around method In my case, it was caused by Aspectj around method Spring AOP markers creation.

Delete the AspectJ Markers from the Eclipse Markers console system hang issue will be solved automatically.

Solution 13 - Eclipse

The issue disappeared after some update of the Eclipse libraries (still using the same build). So I guess the solution is to perform an update.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGrzegorz OledzkiView Question on Stackoverflow
Solution 1 - EclipseMarckaraujoView Answer on Stackoverflow
Solution 2 - EclipseQ9703View Answer on Stackoverflow
Solution 3 - EclipseAlexis LaporteView Answer on Stackoverflow
Solution 4 - EclipsediggersworldView Answer on Stackoverflow
Solution 5 - Eclipseuser1484745View Answer on Stackoverflow
Solution 6 - EclipsePJAView Answer on Stackoverflow
Solution 7 - Eclipseuser3418049View Answer on Stackoverflow
Solution 8 - EclipseDarryl MilesView Answer on Stackoverflow
Solution 9 - Eclipsemehdi mohammadiView Answer on Stackoverflow
Solution 10 - EclipseCQLIView Answer on Stackoverflow
Solution 11 - EclipseKobi MView Answer on Stackoverflow
Solution 12 - EclipseLoga NathanView Answer on Stackoverflow
Solution 13 - EclipseGrzegorz OledzkiView Answer on Stackoverflow