vote up 1 vote down star

I'm having a very strange problem. I'm getting a collection of Rails ActiveRecord models back from the database but the first model in the collection does not have the model attributes/methods, just the standard ActiveRecord base methods. The rest have all the attributes. And it's only doing this on my production debian server using Passenger. It works find on OS X and cygwin.

Any ideas?

Thanks, Kevin

flag

14% accept rate

4 Answers

vote up 0 vote down

It could be bad data in your production database.

I would turn up your log level (the production environment does not log SQL queries), find the query being generated, and then open up your production database and run the query and see what it returns.

link|flag
@Luke, bad data in the DB should not and will not affect individual object attribute accessor methods. These are welded to the class, and affect models in an all-or-nothing way. – Vlad Romascanu Feb 26 at 7:45
Good point. I thought perhaps the attributes were returning nil, but if they're simply not there...That's a different story. – Luke Francl Feb 26 at 18:40
@Luke, actually I take that back for Rails 2.2... looking at the 2.2 source code it appears it actually checks against not the columns, but the columns that were actually find'ed (pardon my french) from the db. – Vlad Romascanu Feb 27 at 0:34
True, but if the columns are in the result set for one row they would be in the result set for all the rows, wouldn't they? I think you are still correct. – Luke Francl Feb 27 at 0:48
We don't know how (form what sources) Kevin is building his @records; I'm not too sure if the "first record is different" is still a problem, we'll see – Vlad Romascanu Feb 27 at 2:44
vote up 0 vote down

It's hard to be certain about this without doing some debugging, but one thing I might consider investigating is threading issues. ActiveRecord, I believe, defines these methods on the fly as they're needed, and it's possible that you're accessing the first model while it's in the process of doing so. Similar issues can arise with Ruby's "require" statement - if you require something in one thread, it's possible that the class won't be fully defined yet when you try to access it in another thread.

link|flag
vote up 0 vote down

Hello,

When you say that the first model in the collection does not have the model attributes/methods, is it because you get a NoMethodError exception when you attempt to invoke one of them?

It is normal for a model object not to have the attribute methods (e.g. when dumping the output of object.methods) until you attempt to actually call them. When you attempt to call one of the missing methods in question, ActiveRecord's method_missing handler is triggered and, provided that the method name matches the name of one of the columns defined in the database, the method will be created dynamically and no exception will be risen. If that does not happen it is either because the object is of the wrong class (does not match the model you are expecting to be operating on), or because a plugin or gem is interfering by misbehaving in the method_missing handling chain.

Can you dump into the logs (logger.info or logger.info, depending on your log level) what the attribute-less object instance's self.class.name equal to in? Can you also perform an audit of the gems (and corresponding versions) installed in production vs. locally?

Cheers, V.

link|flag
Okay, that makes sense that the first record does not yet have the methods/attributes until it is called. I'm using a aggregating class that has a collection of activerecord models and calling a method and summing up the results. See below in next comment – Kevin Colyar Feb 26 at 17:56
def method_missing(method, *args, &block) @records.inject(0) {|sum, record| sum + (eval("record.#{method.to_s}") || 0) } end The weird thing is I'm only getting a method_missing exception when I'm calling a attribute method for two of my attributes, the rest work just fine. – Kevin Colyar Feb 26 at 17:58
sanity check: can you stick in there a logger call to validate the type of record and whether the record actually has the relevant column? – Vlad Romascanu Feb 26 at 20:10
@records.inject(0) {|sum, record| logger.info("#{record.class}: #{record.columns.join(',')}"); sum + (eval("record.#{method.to_s}") || 0) } – Vlad Romascanu Feb 26 at 20:13
I couldn't do that for the record itself but I could for the class: MyClass.column_names and it has all the columns I need. I am running ruby 1.8.5 on my debian production server. It's just strange that it's just two attributes it's puking on. – Kevin Colyar Feb 26 at 21:43
show 12 more comments
vote up 0 vote down check

The problem was that I wan't using the correct freetds version for SQL Server 2005. I was using an old protocol version that didn't support column names over 30 characters, which was why it couldn't find the attribute I was calling. It was being truncated. Changing it in my freetds.conf fixed the problem. Thanks Vlad for all your troubleshooting help.

link|flag
You're welcome. :) – Vlad Romascanu Feb 27 at 19:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.