From: Venks Date: 2008-01-16T00:34:21+09:00 Subject: Re: Generic ? regarding Threads I have much simpler requirements. I don't use Active Record which I believe is not thread safe. I will be using the native MySQL driver and also there are no DML, just queries. But the important thing is that I need to pass a time out parameter based on which I need to kill the all the threads if the entire process exceeds the time out parameter. On Jan 15, 2008 9:41 AM, Carlos J. Hernandez wrote: > Venks: > > My experience on multiple sources is that sometimes > one source says "N/A" while another says "1.99" for the same item in a > record. > So you'll need to decide which source outranks the other, and > other heuristics to determine which data overwrites the other. > For example, "Nil" usually means "I don't know yet", so you > go with the source that claims knowledge. > > Also, you may want a local cache to fall back on if > any of the sources are temporarily down and can't get the very latest > data. > > Another trick is that sometimes on your updates, > you'll get a thread stuck on a query, a request, a particularly tuff > computation..... > On my dual/core machine I like having 4 threads running, > it's like a 4 lane highway that will keep flow going even is a lane is > closed. > > OK, hope that helps. > -Carlos > > > On Tue, 15 Jan 2008 21:30:27 +0900, "Venks" > said: > > > Hi, > > > > I am planning to use Ruby threading to query 2 different databases > > running on 2 different machines. I understand how Ruby threads are in > > process and are NOT native. My requirement is simple. Send the query > > request to different database servers running on completely separate > > machines and then combine the output from both the queries as one. > > > > I am wondering whether anybody has implemented such requirement and > > would like to know your experiences, suggestions etc. > > > > Thanks, > > > > -Venks > > > >