[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: Spin buffers

John Carter

7/18/2007 1:32:00 AM

3 Answers

MenTaLguY

7/18/2007 2:29:00 AM

0

On Wed, 2007-07-18 at 10:32 +0900, John Carter wrote:
> And yes... I did, as always, measure before I optimized and my Queue
> of Array trick did speed things measurably.

Hmm, did you just mean sending batches of objects as arrays, rather than
sending individual objects? That would make sense and it's a reasonable
optimization, provided you're careful about not touching the array on
the sending side once it's been added to the queue. I'd just finished
reading the DDJ article and was imagining something more elaborate at
first...

> > Depends on the version of Ruby. It certainly is if you're using
> > fastthread. If he's not using fastthread, I'd recommend giving it a
> > try.
>
> I'm not using fastthread since it caused code that had been working
> fine for several years to curl up and die. So I disabled it.

It might be worth looking into why -- if it doesn't work with
fastthread, it's unlikely to work with future versions of Ruby
(including 1.8.6 or later) or alternate Ruby implementations like JRuby.

Absent fastthread bugs (which do crop up occasionally, though rarely at
this point), there are two main sources of problems:

1. Code that tries to manipulate the internal implementation of
thread.rb objects (Mutex, ConditionVariable, Queue, etc); not always a
bug, but it isn't portable or future-proof.

2. Code which has existing concurrency bugs which show up more clearly
when the scheduling behavior changes.

> > "Spin Buffers" are _snake oil_; they get their "speed" at the expense of
> > correctness -- the implementation given in the DDJ article is not
> > threadsafe.
>
> Well that was a bit of a problem with the article... it didn't
> actually include the code so I can't say one way or the other on
> that. Any pointers as to what the incorrect bit is?

The code is included in the source archive on the DDJ ftp site as
spin.txt (and spin.zip, which has his test harness):

ftp://66.77.27.238/sourcecode/ddj/200...

It's not just a one-line bug, but a systemic problem: the author assumes
that the only reason he needs synchronization is to prevent two threads
from modifying the same data at the same time (hence the elaborate dance
with the buffers); in reality, however, it's also important to protect
the code from compiler (and CPU) optimizations which will alter its
behavior in undesirable ways if it is used in a multi-threaded context
(e.g. it becomes possible for the reader to see the writer's addition of
the object but see the object in an uninitalized state!). He's
basically trying to get a performance "free lunch" by not using
synchronization.

Concurrency bugs are notoriously hard to find through testing, and it
doesn't help that the author only ever tested on hardware which is
extremely forgiving about concurrency (a single hyperthreaded x86 CPU).
It also didn't help that all his test did was count how many objects
were read from the queue.

-mental

MenTaLguY

7/18/2007 2:43:00 AM

0

On Wed, 2007-07-18 at 10:32 +0900, John Carter wrote:
> I'm not using fastthread since it caused code that had been working
> fine for several years to curl up and die. So I disabled it.

At any rate, I think your best option is something like fastthread's
Queue. It shouldn't be too hard to change the code to work with it, and
it's possible that you've uncovered a bug in that "working" code which
really needs to be fixed.

-mental

MenTaLguY

7/18/2007 2:55:00 AM

0

On Wed, 2007-07-18 at 11:29 +0900, MenTaLguY wrote:
> in reality, however, it's also important to protect
> the code from compiler (and CPU) optimizations which will alter its
> behavior in undesirable ways if it is used in a multi-threaded context
> (e.g. it becomes possible for the reader to see the writer's addition of
> the object but see the object in an uninitalized state!).

It is worth noting that these are not issues if you're only writing for
Ruby 1.8, which has neither an optimizing compiler nor native threads
(where instruction ordering and cache effects become a consideration).

So, does that mean a Spin Buffer implementation would theoretically be
okay for Ruby 1.8? Maybe as far as those issues go. But note that the
author himself identifies a number of issues with spin buffers when the
readers and writers get out of sync, including poor performance and the
reader getting "stuck" on a non-empty buffer if it hits a buffer
boundary when no writers are writing. Those are actually inherent to
the data structure's design.

-mental