LISTSERV mailing list manager LISTSERV 16.5

Help for XROOTD-DEV Archives


XROOTD-DEV Archives

XROOTD-DEV Archives


XROOTD-DEV@LISTSERV.SLAC.STANFORD.EDU


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

XROOTD-DEV Home

XROOTD-DEV Home

XROOTD-DEV  January 2011

XROOTD-DEV January 2011

Subject:

Re: Fork safety of XrdClient

From:

Andrew Hanushevsky <[log in to unmask]>

Date:

12 Jan 2011 04:47:23 -0800 (PST)Wed, 12 Jan 2011 04:47:23 -0800 (PST)

Content-Type:

TEXT/PLAIN

Parts/Attachments:

Parts/Attachments

TEXT/PLAIN (148 lines)

Hi Brian,

Crap. We try not to change function signatures like that. What class did 
this occur in?

Andy

On Wed, 12 Jan 2011, Brian Bockelman wrote:

>
> Ah great.  In that case, I just need to dig out the time to figure this out.
>
> Side note: are there any defines which would allow us to determine the version of xrootd at compile-time?  One issue with v3.0 versus the version we currently used is a function signature has changed for StageIn, causing runtime issues.
>
> Brian
>
> On Jan 12, 2011, at 3:33 AM, Lukasz Janyst wrote:
>
>> If your TFile object is deleted before the fork it should be fine to
>> just install the fork handlers. The destructors call everything that
>> is required for this to work.
>>
>>   Lukasz
>>
>> On Wed, Jan 12, 2011 at 9:13 AM, Lukasz Janyst <[log in to unmask]> wrote:
>>> Hi Brian,
>>>
>>>   the disconnection stuff is exactly one of the things that I still
>>> have to work on. For some reason that I yet have to discover the
>>> Disconnect method is not called on Close, but still tries to commit
>>> some requests... Disconnect cannot be called from the fork handlers
>>> because they know only about the global ConnectionManager which
>>> handles Physical and Logical connections, the XrdClient object however
>>> has it's own Connection object which combines the two and is not
>>> registered to the ConnectionManager.
>>>
>>> Cheers,
>>>   Lukasz
>>>
>>>
>>>
>>> On Tue, Jan 11, 2011 at 8:38 PM, Brian Bockelman <[log in to unmask]> wrote:
>>>> Hi Lukasz,
>>>>
>>>> Thanks.  I have a plethora of teleconferences to attend today, but hopefully will hit this sometime in the next 24 hours.
>>>>
>>>> Why do we have to both install the fork handlers and disconnect the client connections?  Can't the latter just be done inside the fork handler (or maybe I'm asking the question too soon, and that's what prototype #2 does...)?
>>>>
>>>> My issue is that, in the current set of abstractions, we have no way to distinguish "please close the file and disconnect the client" and "please close the file".  The forking and the I/O handling code is done in two completely separate parts of the CMS framework.  Further, I'm not even sure of the lifetime of the file handle; it may be the TFile object is long gone by time we decide to fork.
>>>>
>>>> Brian
>>>>
>>>> On Jan 11, 2011, at 11:54 AM, Lukasz Janyst wrote:
>>>>
>>>>> Hi Brian,
>>>>>
>>>>>   I attach the patch for the first prototype. It hasn't been tested
>>>>> much (apart from the most simplest case) so it may cause your stuff to
>>>>> crash. It definitely still needs some work, but it would be helpful if
>>>>> you could try it out and give me some feedback.
>>>>>
>>>>>   Some remarks:
>>>>>
>>>>>   * at the initialization time you should call once and only once:
>>>>> XrdClientEnv::InstallForkHandlers()
>>>>>   * before forking, when you're done with your reading you should say:
>>>>>
>>>>>  cl.Close();
>>>>>  cl.GetClientConn()->Disconnect( FALSE );
>>>>>
>>>>>   for all your files opened with xroot (cl is an instance of the
>>>>> XrdClient class).
>>>>>
>>>>> Cheers,
>>>>>   Lukasz
>>>>>
>>>>> On Tue, Dec 14, 2010 at 8:41 AM, Dirk Duellmann <[log in to unmask]> wrote:
>>>>>> Lukasz should be back at work today and we'll get back to this now. I'm sure he will fold this into
>>>>>> the plan for the next release which we will start to discuss soon. As Andy said, there are also other
>>>>>> quite  high priority items like a pre-release functional and stress test and changes around a simplification
>>>>>> of the currently  quite protocol dependent handling of the lower parts of root which we started to discuss
>>>>>> with the root team. If we have a little bit of time to sort the proposed changes by effort, risk and priority then
>>>>>> we can probably avoid surprises late in the release procedure. We haven't really discussed this much
>>>>>> between all the developers on the xroot side, but I personally would vote for having a short page with the
>>>>>> planned items documenting their state so that people can follow whats coming. For castor we use
>>>>>> a one page list with one line per savannah bug or enhancement request which has a state running
>>>>>> from "planned" through "developed", "tested" to "committed (for a release)".
>>>>>> (see eg https://twiki.cern.ch/twiki/bin/view/DataManagement/CastorReleasePlan21100 )
>>>>>> Of course not all of the fields apply to xroot directly (eg schema change -> protocol change, no
>>>>>> SQL hotfixes, etc..)
>>>>>>
>>>>>> This doesn't really solve the technical issues directly but helps all people involved to keep an overview
>>>>>> of all items. The first step could be to really start using savannah for all candidate items now to track the
>>>>>> technical details a bit more consistently than just by email.
>>>>>>
>>>>>>        Cheers, Dirk
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> On 14 Dec 2010, at 01:53, Andrew Hanushevsky wrote:
>>>>>>
>>>>>>> Hi Pete,
>>>>>>>
>>>>>>> It's really up to Lukasz as he's intimately familiar with the code and whatever he does has to be compatible with other changes he wants to make.
>>>>>>>
>>>>>>> Andy
>>>>>>>
>>>>>>> On Tue, 14 Dec 2010, Peter Elmer wrote:
>>>>>>>
>>>>>>>> Hi Andy,
>>>>>>>>
>>>>>>>> On Mon, Dec 13, 2010 at 06:05:00PM -0600, Brian Bockelman wrote:
>>>>>>>>> On Dec 13, 2010, at 5:57 PM, Andrew Hanushevsky wrote:
>>>>>>>>>> I was not suggesting that this is not a good thing to do or
>>>>>>>>> that you give it up. I was only suggesting that perhaps by re-organizing
>>>>>>>>> the CMS code it would make it easier to do this without problems.
>>>>>>>>> In any case, Lukasz is not feeling well at the moment so there is
>>>>>>>>> no status change. I'm sure he'll speak up when there is.
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> I didn't know Lukasz was sick, but I suspected everyone at least
>>>>>>>>> needed a rest after the v3 rush :).  Thanks for the status update,
>>>>>>>>> we'll roll it into our plans and let you know if things become more
>>>>>>>>> urgent.  There are several other moving pieces to this project, so
>>>>>>>>> a patch by end-of-January would still be in time.
>>>>>>>>
>>>>>>>> Actually, having it sooner than that would be useful for testing.
>>>>>>>> When you can think about this?
>>>>>>>>
>>>>>>>>                                  Pete
>>>>>>>>
>>>>>>>> -------------------------------------------------------------------------
>>>>>>>> Peter Elmer     E-mail: [log in to unmask]      Phone: +41 (22) 767-4644
>>>>>>>> Address: CERN Division PPE, Bat. 32 2C-14, CH-1211 Geneva 23, Switzerland
>>>>>>>> -------------------------------------------------------------------------
>>>>>>>>
>>>>>>
>>>>>>
>>>>> <fork.patch>
>>>>
>>>>
>>>
>
>


Top of Message | Previous Page | Permalink

Advanced Options


Options

Log In

Log In

Get Password

Get Password


Search Archives

Search Archives


Subscribe or Unsubscribe

Subscribe or Unsubscribe


Archives

August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
December 2021
November 2021
October 2021
September 2021
August 2021
July 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
December 2020
November 2020
October 2020
September 2020
August 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
December 2019
November 2019
October 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
December 2017
November 2017
October 2017
September 2017
August 2017
July 2017
June 2017
May 2017
April 2017
March 2017
February 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
November 2015
October 2015
September 2015
August 2015
July 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
July 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010

ATOM RSS1 RSS2



LISTSERV.SLAC.STANFORD.EDU

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager

Privacy Notice, Security Notice and Terms of Use