in reply to Re: Best method for maintaining a session ID across multiple threads
in thread Best method for maintaining a session ID across multiple threads

Hi, thanks for the reply

I realised last night that I had missed out a couple of key factors to my problem. The first is that each "thread" is actually a queued job on a Gridengine cluster so each "thread" isn't forked from the program that does the logging in and also the cluster is across multiple servers which have a shared disk space and network but obviously don't have access to each others' processes.

I guess I am using the term thread incorrectly

So after more thought about it I am going to investigate writing something that can serve the sessionID to "processes" via a port. And when it comes to renewing the sessionID to perhaps look for, or enforce a 10 second window to ensure the last "customer" has time to finish it's connection.

Unless, of course, there is a better way to do it.

  • Comment on Re^2: Best method for maintaining a session ID across multiple threads

Replies are listed 'Best First'.
Re^3: Best method for maintaining a session ID across multiple threads
by BrowserUk (Patriarch) on Jul 11, 2013 at 08:53 UTC
    I guess I am using the term thread incorrectly

    The generic term for a single instance in a cluster is 'node'.

    So after more thought about it I am going to investigate writing something that can serve the sessionID to "processes" via a port.

    Clustering software always has some form of message passing API that allows the processes to communicate.

    A quick google suggests that GridEngine supports OpenMPI. You shouldn't need to be inventing a solution for this, just read the docs.


    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

      I completely agree - I never invent a solution when there is an alternative, which is why I was asking for advice about existing solutions to the problem of maintaining a session ID. But OpenMPI appears to be an overly engineered solution for my requirements. If I had a week to learn and implement I might consider it, but thank you very much for your help and your suggestions.

Re^3: Best method for maintaining a session ID across multiple threads
by Anonymous Monk on Jul 11, 2013 at 08:49 UTC