[jacorb-developer] JacORB 3.6.1 : Client closing
Nick Cross
jacorb at goots.org
Mon Jun 29 11:39:21 CEST 2015
Hi,
Can you confirm the version you are using please?
When your client finishes with the CORBA Objwebect do you call _release ?
Thanks
Nick
Clients should disconnect automatically now after a system exceo
On 29/06/15 09:44, Nicolas Aguilé wrote:
> Hi,
> After update, we have had a suspect behavior (one shot) after a network cut : one client has never recover the connection (related to BZ967 ????) and the following message appears in our log file :
> 2015-06-25 06:36:43,423 DEBUG [sicops-LFMY-export-2] (ClientConnectionManager.java:179) - ClientConnectionManager: cannot release ClientGIOPConnection to nco4-1-salon-diff.ba701.nco4-1.nco4.air.defense:14300 (562e6f02) (still has 48639 client(s))2015-06-25 06:36:43,424 DEBUG [sicops-LFMY-export-2] (Delegate.java:2188) - Delegate released!2015-06-25 06:36:43,425 INFO [sicops-LFMY-export-2] (ClientConnectionManager.java:148) - ClientConnectionManager: found ClientGIOPConnection to nco4-1-salon-diff.ba701.nco4-1.nco4.air.defense:14300 (562e6f02)
>
> What surprising us is the number of clients (48639) still using the GIOP connection.Regarding this, we have a look on the code and we have a question :
>
> If the property disconnect_after_systemexception is not set (NOT OUR CASE) the disconnect method in the Delegate returns before releasing the connection (seems to be normal regarding de property description) but is there any risk to keep Client affected to Connection and have a memory leak ?
>
>
> private void disconnect(ClientConnection connectionInUse) { if (connectionInUse == null) { return; }
> if (!disconnectAfterNonRecoverableSystemException) { return; }
> synchronized(bind_sync) { if (connections[currentConnection.ordinal ()] == null) { return; }
> if (connections[currentConnection.ordinal ()] != connectionInUse) { return; }
> logger.debug("release the connection");
> conn_mg.releaseConnection( connections[currentConnection.ordinal ()] ); connections[currentConnection.ordinal ()] = null; bound = false; } }
> Thanks
> Nicolas
> _______________________________________________
> jacorb-developer maillist - jacorb-developer at lists.spline.inf.fu-berlin.de
> https://lists.spline.inf.fu-berlin.de/mailman/listinfo/jacorb-developer
>
More information about the jacorb-developer
mailing list