[Mulgara-general] RMITimeoutException

Alex Hall alexhall at revelytix.com
Wed Apr 13 02:14:14 UTC 2011


On Tuesday, April 12, 2011, Joe Osowski <josowski at plos.org> wrote:
> Hia!
>
> I'm getting a RMITimeoutException.  (for queries with large result sets)

In general, I would expect this to be a function of the complexity of
the query and the size of the input dataset. Because results are
lazily fetched, a simple query that just returns lots of rows should
start returning results quickly. Lots of joins and unions of large
datasets can give you problems.

Asking for distinct or sorted results for a large result set will also
be slow, because the entire result set must be materialized and
sorted. Avoid these types of queries unless you specifically need that
behavior.

>
> org.mulgara.server.rmi.RMITimeoutException: No data returned within 60000ms
>
> I would like to change the the time out to say 360000.  I've added
> "-Dmulgara.rmi.pagetimeout=360000" to the command starting mulgara.  But
> it appears to have no affect.

How are you executing the query? If it's over RMI with a Java client
then that property may need to be set in the client.

-Alex


>
> I'm using Mulgara 2.1.4.1.  Is there a config file I should be checking?
>
> -Joe
>
> _______________________________________________
> Mulgara-general mailing list
> Mulgara-general at mulgara.org
> http://lists.mulgara.org/mailman/listinfo/mulgara-general
>


More information about the Mulgara-general mailing list