vote up 1 vote down star

I am writing a very simple RMI server, and am seeing intermittent NoSuchObjectExceptions in the unit tests.

I have a string of remote method calls on the same object, and while the first few go through, the later ones will sometimes fail. I am not doing anything to unregister the server object in between.

These error do not appear always, and if I put in breakpoints they tend to not appear. Are those Heisenbugs, whose race conditions dissolve when looking at them through the slowed down execution of the debugger? There is no multi-threading going on in my test or server code (though maybe inside of the RMI stack?).

I am running this on Mac OS X 10.5 (Java 1.5) through Eclipse's JUnit plugin, and the RMI server and client are both in the same JVM.

What can cause these exceptions?

flag

51% accept rate

3 Answers

vote up 0 vote down

It's difficult to answer this question without looking at the code (which I guess will be big enough to not be publishable here). However, using Occam's razor, you have two possibilies

  • Server objects must be getting unregistered somehow
  • Since breakpoints stop the errors, it's definitely a race condition.

I would suggest you go over the code paths carefully keeping the two points above in mind.

link|flag
vote up 2 vote down

Some other questions to consider - First are you referencing an object instance or is the stub interface itself gone? If some object instance is gone, its for the usual reasons, it got dereferenced and GC'd, but if it's the interface then your RMI server end point loop quit for some reason.

The best debugging tool I've found so far is to turn on the java.rmi.server.logCalls=true property (see http://java.sun.com/j2se/1.5.0/docs/guide/rmi/javarmiproperties.html) and watch all the wonderfull information stream down your log window. This tells me what's up every time.

jos

link|flag
vote up 2 vote down

Keep a strong reference to the object that implements the java.rmi.Remote interface.

Below is a script that demonstrates a java.rmi.NoSuchObjectException. The script is self-contained, creating an RMI registry as well as a "client" and a "server" in a single JVM.

Simply copy this code and save it in a file named RMITest.java. Compile and invoke with your choice of command line arguments:

  • -gc (default) Explicitly instruct the JVM to make "a best effort" to run the garbage collector after the server is started, but before the client connects to the server. This will likely cause the Remote object to be reclaimed by the garbage collector if the strong reference to the Remote object is released. A java.rmi.NoSuchObjectException is observed when the client connects after the Remote object is reclaimed.
  • -nogc Do not run the garbage collector. This will likely cause the Remote object to remain accessible by the client regardless of whether a strong reference is held or released unless there is a sufficient delay between the server start and the client call such that the system invokes the garbage collector and reclaims the Remote object.
  • -hold A strong reference to the Remote object is retained. In this case, a class variable refers to the Remote object.
  • -release (default) A strong reference to the Remote object will be released. In this case, a method variable refers to the Remote object. After the method returns, the strong reference is lost.
  • -delay<S> The number of seconds to wait between server start and the client call. Inserting a delay provides time for the garbage collector to run "naturally." This simulates a process that "works" initially, but fails after some significant time has passed. Note there is no space before the number of seconds. Example: -delay5 will make the client call 5 seconds after the server is started.

Script behavior will likely vary from machine to machine and JVM to JVM because things like System.gc() are only hints and setting the -delay<S> option is a guessing game with respect to the behavior of the garbage collector.

On my machine, after javac RMITest.java to compile, I see this behavior:

$ java RMITest -nogc -hold
received: foo
$ java RMITest -nogc -release
received: foo
$ java RMITest -gc -hold
received: foo
$ java RMITest -gc -release
Exception in thread "main" java.rmi.NoSuchObjectException: no such object in table
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:255)
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:233)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:142)
    at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:178)
    at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:132)
    at $Proxy0.remoteOperation(Unknown Source)
    at RMITest.client(RMITest.java:70)
    at RMITest.main(RMITest.java:44)

Here is the script source code:

import java.rmi.Remote;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.rmi.server.UnicastRemoteObject;

interface RemoteOperations extends Remote {
    String remoteOperation() throws RemoteException;
}

public class RMITest implements RemoteOperations {
    private static boolean holdStrongReference = false;
    private static boolean invokeGarbageCollector = true;
    private static int delay = 0;

    private static final String REMOTE_NAME = RemoteOperations.class.getName();

    public static void main(String... args) throws Exception {
        for (String arg : args) {
            if ("-gc".equals(arg)) {
                invokeGarbageCollector = true;
            } else if ("-nogc".equals(arg)) {
                invokeGarbageCollector = false;
            } else if ("-hold".equals(arg)) {
                holdStrongReference = true;
            } else if ("-release".equals(arg)) {
                holdStrongReference = false;
            } else if (arg.startsWith("-delay")) {
                delay = Integer.parseInt(arg.substring("-delay".length()));
            } else {
                System.err.println("usage: javac RMITest.java && java RMITest [-gc] [-nogc] [-hold] [-release]");
                System.exit(1);
            }
        }
        server();
        if (invokeGarbageCollector) {
            System.gc();
        }
        if (delay > 0) {
            System.err.println("delaying " + delay + " seconds");
            int milliseconds = delay * 1000;
            Thread.currentThread().sleep(milliseconds);
        }
        client();
        System.exit(0);
    }

    @Override
    public String remoteOperation() {
        return "foo";
    }

    private static RemoteOperations classVariable = new RMITest();

    private static void server() throws Exception {
        // This reference is eligible for GC after this method returns
        RemoteOperations methodVariable = new RMITest();

        RemoteOperations toBeStubbed = holdStrongReference ? classVariable : methodVariable;
        Remote remote = UnicastRemoteObject.exportObject(toBeStubbed, 0);
        Registry registry = LocateRegistry.createRegistry(Registry.REGISTRY_PORT);
        registry.bind(REMOTE_NAME, remote);
    }

    private static void client() throws Exception {
        Registry registry = LocateRegistry.getRegistry();
        Remote remote = registry.lookup(REMOTE_NAME);
        RemoteOperations stub = RemoteOperations.class.cast(remote);
        String message = stub.remoteOperation();
        System.out.println("received: " + message);
    }
}
link|flag
So what you are saying is that I need (on the server) to manually retain a reference to my server object, because the exported UnicastRemoteObject that I put into the Registry will not keep that object from being garbage-collected, which would leave me with a dangling reference in the Registry? – Thilo May 12 at 21:45
I would have hoped that until I "unbind" the object, the RMI system would keep it alive. – Thilo May 12 at 21:48
Bingo. The responsibility for keeping the reference seems to fall on the programmer. I had the same hope about the RMI system keeping the reference while binding is in effect. There's probably a good reason for it being the way it is (I've not studied the RMI sources). In any case, it doesn't seem to be overly intuitive. – Greg Mattes May 13 at 0:29
Six months later ... and thanks. – Reverend Gonzo Nov 4 at 7:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.