unicorn Ruby/Rack server user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
* Confused classes
@ 2010-02-06 12:33 Warren Konkel
  2010-02-06 13:06 ` Iñaki Baz Castillo
  0 siblings, 1 reply; 3+ messages in thread
From: Warren Konkel @ 2010-02-06 12:33 UTC (permalink / raw)
  To: mongrel-unicorn

I switched from mod_passenger to unicorn on a fairly high traffic site
and ran into a strange problem that forced me to move back to
mod_passenger... it seems as if classes would sometimes get mixed up
with each other.  If I had two Rails models:

  class Foo < ActiveRecord::Base;  end
  class Bar < ActiveRecord::Base;  end

Normally Foo.inspect and Bar.inspect would return:

  Foo(field1: integer, field2: integer)
  Bar(field3: integer, field4: integer)

When things were "broken" within a process, sometimes I would see:

   Foo(field3: integer, field4: integer)    <--- note field3/field4
actually belong to Bar, not Foo

And because of that, wacky errors would appear in my logs like:

   Foo.find_by_field1(12345) --> not a method
   Foo.create(:field1 => 12345)  --> column not found

I also noticed the problem with field serializing in ActiveRecord... given:

  class Boz < ActiveRecord::Base
    serialize :some_data
  end

When processes were working correctly,  Boz.find(1).some_data would
return an actual object (like a Hash).  When things were broken, the
raw serialized string from the database would be returned... almost as
if the Boz class "forgot" that it's supposed to deserialize
"some_data".

Could it be that class attributes are somehow being co-mingled when
unicorn is starting up under high concurrency?  Perhaps a mutex is
missing somewhere?
_______________________________________________
Unicorn mailing list - mongrel-unicorn@rubyforge.org
http://rubyforge.org/mailman/listinfo/mongrel-unicorn
Do not quote signatures (like this one) or top post when replying


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Confused classes
  2010-02-06 12:33 Confused classes Warren Konkel
@ 2010-02-06 13:06 ` Iñaki Baz Castillo
  2010-02-07  2:01   ` Eric Wong
  0 siblings, 1 reply; 3+ messages in thread
From: Iñaki Baz Castillo @ 2010-02-06 13:06 UTC (permalink / raw)
  To: mongrel-unicorn

El Sábado, 6 de Febrero de 2010, Warren Konkel escribió:
> I switched from mod_passenger to unicorn on a fairly high traffic site
> and ran into a strange problem that forced me to move back to
> mod_passenger... it seems as if classes would sometimes get mixed up
> with each other.  If I had two Rails models:
> 
>   class Foo < ActiveRecord::Base;  end
>   class Bar < ActiveRecord::Base;  end
> 
> Normally Foo.inspect and Bar.inspect would return:
> 
>   Foo(field1: integer, field2: integer)
>   Bar(field3: integer, field4: integer)
> 
> When things were "broken" within a process, sometimes I would see:
> 
>    Foo(field3: integer, field4: integer)    <--- note field3/field4
> actually belong to Bar, not Foo
> 
> And because of that, wacky errors would appear in my logs like:
> 
>    Foo.find_by_field1(12345) --> not a method
>    Foo.create(:field1 => 12345)  --> column not found
> 
> I also noticed the problem with field serializing in ActiveRecord... given:
> 
>   class Boz < ActiveRecord::Base
>     serialize :some_data
>   end
> 
> When processes were working correctly,  Boz.find(1).some_data would
> return an actual object (like a Hash).  When things were broken, the
> raw serialized string from the database would be returned... almost as
> if the Boz class "forgot" that it's supposed to deserialize
> "some_data".
> 
> Could it be that class attributes are somehow being co-mingled when
> unicorn is starting up under high concurrency?  Perhaps a mutex is
> missing somewhere?

IMHO all your Unicorn workers are sharing the same DB connection (the same 
ActiveRecord instances) so the problem arises.

Take a look to the configuration here:
  http://unicorn.bogomips.org/examples/unicorn.conf.rb
You can see there how the ActiveRecord is disconnected at the beggining and 
started for each worker later.


-- 
Iñaki Baz Castillo <ibc@aliax.net>
_______________________________________________
Unicorn mailing list - mongrel-unicorn@rubyforge.org
http://rubyforge.org/mailman/listinfo/mongrel-unicorn
Do not quote signatures (like this one) or top post when replying


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Confused classes
  2010-02-06 13:06 ` Iñaki Baz Castillo
@ 2010-02-07  2:01   ` Eric Wong
  0 siblings, 0 replies; 3+ messages in thread
From: Eric Wong @ 2010-02-07  2:01 UTC (permalink / raw)
  To: unicorn list

Iñaki Baz Castillo <ibc@aliax.net> wrote:
> El Sábado, 6 de Febrero de 2010, Warren Konkel escribió:
> > Could it be that class attributes are somehow being co-mingled when
> > unicorn is starting up under high concurrency?  Perhaps a mutex is
> > missing somewhere?
> 
> IMHO all your Unicorn workers are sharing the same DB connection (the same 
> ActiveRecord instances) so the problem arises.
> 
> Take a look to the configuration here:
>   http://unicorn.bogomips.org/examples/unicorn.conf.rb
> You can see there how the ActiveRecord is disconnected at the beggining and 
> started for each worker later.

Yes, you have to reconnect any connected TCP sockets since they have no
defined atomicity semantics when they're shared across processes/threads.

Ruby Mutexes aren't useful at all here, they're only useful with threads
in the same process.  If you need to protect TCP client sockets from
multiple processes, you'll need SysV/POSIX semaphores or file locks
(flock/fcntl), but you're really better off using multiple TCP client
sockets in the first place.

-- 
Eric Wong
_______________________________________________
Unicorn mailing list - mongrel-unicorn@rubyforge.org
http://rubyforge.org/mailman/listinfo/mongrel-unicorn
Do not quote signatures (like this one) or top post when replying


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-02-07  2:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-06 12:33 Confused classes Warren Konkel
2010-02-06 13:06 ` Iñaki Baz Castillo
2010-02-07  2:01   ` Eric Wong

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/unicorn.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).