Why all the Active Record hate? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T00:24:20Zhttp://stackoverflow.com/feeds/question/7864http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/7864/why-all-the-active-record-hate30Why all the Active Record hate?Adam Tuttle2008-08-11T15:30:30Z2009-11-27T09:28:43Z
<p>As I learn more and more about OOP, and start to implement various design patterns, I keep coming back to cases where people are hating on <a href="http://en.wikipedia.org/wiki/Active_record_pattern" rel="nofollow">Active Record</a>.</p>
<p>Often, people say that it doesn't scale well (citing Twitter as their prime example) -- but nobody actually explains <strong><em>why</em></strong> it doesn't scale well; and / or how to achieve the pros of AR without the cons (via a similar but different pattern?)</p>
<p>Hopefully this won't turn into a holy war about design patterns -- all I want to know is <strong>**specifically**</strong> what's wrong with Active Record.</p>
<p>If it doesn't scale well, why not?</p>
<p>What other problems does it have?</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/7908#79082Answer by Tim Sullivan for Why all the Active Record hate?Tim Sullivan2008-08-11T16:22:52Z2008-08-11T16:22:52Z<p>The main thing that I've seen with regards to complaints about Active Record is that when you create a model around a table, and you select several instances of the model, you're basically doing a "select * from ...". This is fine for editing a record or displaying a record, but if you want to, say, display a list of the cities for all the contacts in your database, you could do "select City from ..." and only get the cities. Doing this with Active Record would require that you're selecting all the columns, but only using City.</p>
<p>Of course, varying implementations will handle this differently. Nevertheless, it's one issue.</p>
<p>Now, you can get around this by creating a new model for the specific thing you're trying to do, but some people would argue that it's more effort than the benefit.</p>
<p>Me, I dig Active Record. :-)</p>
<p>HTH</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/7915#79156Answer by pix0r for Why all the Active Record hate?pix0r2008-08-11T16:28:19Z2008-08-11T16:28:19Z<p>Active Record is a very useful pattern but it's true that it can cause major problems with optimizing and scaling your database code.</p>
<p>The inherent problem with Active Record is that database queries are automatically generated and executed to populate objects and modify database records. While this simplifies the programmer's life because they don't need to deal with SQL queries, it also makes it difficult for the programmer to write properly optimized SQL queries. Without writing the queries yourself, you aren't going to be able to combine separate queries into a single query, break up queries that are bogging down the database, or analyze and tweak queries using tools like EXPLAIN.</p>
<p>I believe when used properly, with a good caching mechanism and with the ability to override the default queries, Active Record can be scaled and optimized just as well as any other code. It's just that in its most basic form, it doesn't give you the flexibility to optimize that well.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/7939#79391Answer by BlaM for Why all the Active Record hate?BlaM2008-08-11T16:46:14Z2008-08-11T17:21:06Z<p>The problem that I see with Active Records is, that it's always just about <strong>one</strong> table. That's okay, as long as you really work with just that one table, but when you work with data in most cases you'll have some kind of join somewhere.</p>
<p>Yes, <strong>join</strong> usually is worse than <strong>no join at all</strong> when it comes to performance, but <strong>join</strong> <em>usually</em> is better than <strong>"fake" join</strong> by first reading the whole table A and then using the gained information to read and filter table B.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/7965#79650Answer by DannySmurf for Why all the Active Record hate?DannySmurf2008-08-11T17:19:03Z2008-08-11T17:19:03Z<p>@BlaM: You're absolutely right. Although I've never used Active Record, I have used other bolted-on ORM systems (particularly NHibernate), and there are two big complaints I have: silly ways to create objects (ie, .hbm.xml files, each of which get compiled into their own assembly) and the performance hit incurred just loading objects (NHibernate can spike a single-core proc for several seconds executing a query that loads nothing at all, when an equivalent SQL query takes almost no processing).</p>
<p>Not specific to Active Record of course, but I find most ORM systems (and ORM-like systems) seem to suffer from these types of problems.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/8141#81413Answer by Lars Mæhlum for Why all the Active Record hate?Lars Mæhlum2008-08-11T19:50:26Z2008-08-11T19:50:26Z<p>I love the way SubSonic does the one column only thing.<br />
Either </p>
<pre><code>DataBaseTable.GetList(DataBaseTable.Columns.ColumnYouWant)
</code></pre>
<p>, or:</p>
<pre><code>Query q = DataBaseTable.CreateQuery()
.WHERE(DataBaseTable.Columns.ColumnToFilterOn,value);
q.SelectList = DataBaseTable.Columns.ColumnYouWant;
q.Load();
</code></pre>
<p>But Linq is still king when it comes to lazy loading.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/8215#821540Answer by Orion Edwards for Why all the Active Record hate?Orion Edwards2008-08-11T21:02:03Z2008-08-11T21:11:09Z<p>There's <a href="http://en.wikipedia.org/wiki/Active_record_pattern" rel="nofollow">ActiveRecord the Design Pattern</a> and <a href="http://api.rubyonrails.com/classes/ActiveRecord/Base.html" rel="nofollow">ActiveRecord the Rails ORM Library</a>, and there's also a ton of knock-offs for .NET, and other languages.</p>
<p>These are all different things. They mostly follow that design pattern, but extend and modify it in many different ways, so before anyone says "ActiveRecord Sucks" it needs to be qualified by saying "which ActiveRecord, there's heaps?"</p>
<p>I'm only familiar with Rails' ActiveRecord, I'll try address all the complaints which have been raised in context of using it.</p>
<blockquote>
<p>@BlaM</p>
<p>The problem that I see with Active Records is, that it's always just about one table</p>
</blockquote>
<p>Code:</p>
<pre><code>class Person
belongs_to :company
end
people = Person.find(:all, :include => :company )
</code></pre>
<p>This generates SQL with <code>LEFT JOIN companies on companies.id = person.company_id</code>, and automatically generates associated Company objects so you can do <code>people.first.company</code> and it doesn't need to hit the database because the data is already present.</p>
<blockquote>
<p>@pix0r</p>
<p>The inherent problem with Active Record is that database queries are automatically generated and executed to populate objects and modify database records</p>
</blockquote>
<p>Code:</p>
<pre><code>person = Person.find_by_sql("giant complicated sql query")
</code></pre>
<p>This is discouraged as it's ugly, but for the cases where you just plain and simply need to write raw SQL, it's easily done.</p>
<blockquote>
<p>@Tim Sullivan</p>
<p>...and you select several instances of the model, you're basically doing a "select * from ..."</p>
</blockquote>
<p>Code:</p>
<pre><code>people = Person.find(:all, :select=>'name, id')
</code></pre>
<p>This will only select the name and ID columns from the database, all the other 'attributes' in the mapped objects will just be nil, unless you manually reload that object, and so on.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/8233#82331Answer by Johannes for Why all the Active Record hate?Johannes2008-08-11T21:14:48Z2008-08-11T21:14:48Z<p>@BlaM:
Sometimes I justed implemented an active record for a result of a join. Doesn't always have to be the relation Table <--> Active Record. Why not "Result of a Join statement" <--> Active Record ?</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/10128#101280Answer by Tim Sullivan for Why all the Active Record hate?Tim Sullivan2008-08-13T17:53:25Z2008-08-13T17:53:25Z<p>@Orion Edwards: Mighty! I didn't know about that specific feature. Yet another pro-AR argument to me to put into my arsenal.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/12293#122930Answer by engtech for Why all the Active Record hate?engtech2008-08-15T14:32:24Z2008-08-15T14:32:24Z<p>The problem with ActiveRecord is that the queries it automatically generates for you can cause performance problems.</p>
<p>You end up doing some unintuitive tricks to optimize the queries that leave you wondering if it would have been more time effective to write the query by hand in the first place.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/28758#2875818Answer by Sam McAfee for Why all the Active Record hate?Sam McAfee2008-08-26T18:10:08Z2008-08-26T18:10:08Z<p>I have always found that ActiveRecord is good for quick CRUD-based applications where the Model is relatively flat (as in, not a lot of class hierarchies). However, for applications with complex OO hierarchies, a <a href="http://martinfowler.com/eaaCatalog/dataMapper.html" rel="nofollow">DataMapper</a> is probably a better solution. While ActiveRecord assumes a 1:1 ratio between your tables and your data objects, that kind of relationship gets unwieldy with more complex domains. In his <a href="http://martinfowler.com/eaaCatalog/" rel="nofollow">book on patterns</a>, Martin Fowler points out that ActiveRecord tends to break down under conditions where your Model is fairly complex, and suggests a <a href="http://martinfowler.com/eaaCatalog/dataMapper.html" rel="nofollow">DataMapper</a> as the alternative.</p>
<p>I have found this to be true in practice. In cases, where you have a lot inheritance in your domain, it is harder to map inheritance to your RDBMS than it is to map associations or composition.</p>
<p>The way I do it is to have "domain" objects that are accessed by your controllers via these DataMapper (or "service layer") classes. These do not directly mirror the database, but act as your OO representation for some real-world object. Say you have a User class in your domain, and need to have references to, or collections of other objects, already loaded when you retrieve that User object. The data may be coming from many different tables, and an ActiveRecord pattern can make it really hard.</p>
<p>Instead of loading the User object directly and accessing data using an ActiveRecord style API, your controller code retrieves a User object by calling the API of the UserMapper.getUser() method, for instance. It is that mapper that is responsible for loading any associated objects from their respective tables and returning the completed User "domain" object to the caller.</p>
<p>Essentially, you are just adding another layer of abstraction to make the code more managable. Whether your DataMapper classes contain raw custom SQL, or calls to a data abstraction layer API, or even access an ActiveRecord pattern themselves, doesn't really matter to the controller code that is receiving a nice, populated User object.</p>
<p>Anyway, that's how I do it.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/28804#288040Answer by Kevin Pang for Why all the Active Record hate?Kevin Pang2008-08-26T18:31:26Z2008-08-26T18:31:26Z<p>Although all the other comments regarding SQL optimization are certainly valid, my main complaint with the active record pattern is that it usually leads to <a href="http://en.wikipedia.org/wiki/Object-relational_impedance_mismatch" rel="nofollow">impedance mismatch</a>. I like keeping my domain clean and properly encapsulated, which the active record pattern usually destroys all hope of doing.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/28891#288912Answer by John Topley for Why all the Active Record hate?John Topley2008-08-26T19:19:25Z2008-08-26T19:19:25Z<blockquote>
<p>The question is about the Active
Record design pattern. Not an orm
Tool.</p>
</blockquote>
<p>The original question is tagged with rails and refers to Twitter which is built in Ruby on Rails. The ActiveRecord framework within Rails is an implementation of Fowler's Active Record design pattern.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/117795#1177952Answer by MattMcKnight for Why all the Active Record hate?MattMcKnight2008-09-22T21:35:07Z2008-09-22T21:35:07Z<p>I think there is a likely a very different set of reasons between why people are "hating" on ActiveRecord and what is "wrong" with it.</p>
<p>On the hating issue, there is a lot of venom towards anything Rails related. As far as what is wrong with it, it is likely that it is like all technology and there are situations where it is a good choice and situations where there are better choices. The situation where you don't get to take advantage of most of the features of Rails ActiveRecord, in my experience, is where the database is badly structured. If you are accessing data without primary keys, with things that violate first normal form, where there are lots of stored procedures required to access the data, you are better off using something that is more of just a SQL wrapper. If your database is relatively well structured, ActiveRecord lets you take advantage of that.</p>
<p>To add to the theme of replying to commenters who say things are hard in ActiveRecord with a code snippet rejoinder</p>
<blockquote>
<p>@Sam McAfee Say you have a User class in your domain, and need to have references to, or collections of other objects, already loaded when you retrieve that User object. The data may be coming from many different tables, and an ActiveRecord pattern can make it really hard.</p>
</blockquote>
<pre><code>user = User.find(id, :include => ["posts", "comments"])
first_post = user.posts.first
first_comment = user.comments.first
</code></pre>
<p>By using the include option, ActiveRecord lets you override the default lazy-loading behavior.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/1153656#11536560Answer by Omega for Why all the Active Record hate?Omega2009-07-20T13:39:29Z2009-07-20T13:39:29Z<p>Try doing a many to many polymorphic relationship. Not so easy. Especially when you aren't using STI.</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/1481782#14817820Answer by sleepless in silicon valley for Why all the Active Record hate?sleepless in silicon valley2009-09-26T18:07:47Z2009-09-26T18:07:47Z<p>how does active record address the domain mismatch between OOP architecture and database architecture, i.e. impeadence. Isn't strong coupling between OOP design and database design doomed to scalability issues?</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/1807560#18075600Answer by frunsi for Why all the Active Record hate?frunsi2009-11-27T09:02:16Z2009-11-27T09:28:43Z<p>My long and late answer, not even complete, but a good explanation WHY I hate this pattern, opinions and even some emotions:</p>
<p>1) short version: Active Record creates a "<strong>thin layer</strong>" of "<strong>strong binding</strong>" between the database and the application code. Which solves no logical, no whatever-problems, no problems at all. IMHO it does not provide ANY VALUE, except some <strong>syntactic sugar</strong> for the programmer (which may then use an "object syntax" to access some data, that exists in a relational database). The effort to create some comfort for the programmers should (IMHO...) better be invested in low level database access tools, e.g. some variations of simple, easy, plain <code>hash_map get_record( string id_value, string table_name, string id_column_name="id" )</code> and similar methods (of course, the concepts and elegance greatly varies with the language used).</p>
<p>2) long version: In any database-driven projects where I had the "conceptual control" of things, I avoided AR, and it was good. I usually build a <strong>layered architecture</strong> (you sooner or later do divide your software in layers, at least in medium- to large-sized projects):</p>
<p>A1) the database itself, tables, relations, even some logic if the DBMS allows it (MySQL is also grown-up now)</p>
<p>A2) very often, there is more than a data store: file system (blobs in database are not always a good decision...), legacy systems (imagine yourself "how" they will be accessed, many varieties possible.. but thats not the point...)</p>
<p>B) database access layer (at this level, tool methods, helpers to easily access the data in the database are very welcome, but AR does not provide any value here, except some syntactic sugar)</p>
<p>C) application objects layer: "application objects" sometimes are simple rows of a table in the database, but most times they are <strong>compound</strong> objects anyway, and have some higher logic attached, so investing time in AR objects at this level is just plainly useless, a waste of precious coders time, because the "real value", the "higher logic" of those objects needs to be implemented on top of the AR objects, anyway - with and without AR! And, for example, why would you want to have an abstraction of "Log entry objects"? App logic code writes them, but should that have the ability to update or delete them? sounds silly, and <code>App::Log("I am a log message")</code> is some magnitudes easier to use than <code>le=new LogEntry(); le.time=now(); le.text="I am a log message"; le.Insert();</code>. And for example: using a "Log entry object" in the log view in your application will work for 100, 1000 or even 10000 log lines, but sooner or later you will have to optimize - and I bet in most cases, you will just use that small beautiful SQL SELECT statement in your app logic (which totally breaks the AR idea..), instead of wrapping that small statement in rigid fixed AR idea frames with lots of code wrapping and hiding it. The time you wasted with writing and/or building AR code could have been invested in a much more clever interface for reading lists of log-entries (many, many ways, the sky is the limit). Coders should <strong>dare to invent new abstractions</strong> to realize their application logic that fit the intended application, and <strong>not stupidly re-implement silly patterns</strong>, that sound good on first sight!</p>
<p>D) the application logic - implements the logic of interacting objects and creating, deleting and listing(!) of application logic objects (NO, those tasks should rarely be anchored in the application logic objects itself: does the sheet of paper on your desk tell you the names and locations of all other sheets in your office? forget "static" methods for listing objects, thats silly, a bad compromise created to make the human way of thinking fit into [some-not-all-AR-framework-like-]AR thinking)</p>
<p>E) the user interface - well, what I will write in the following lines is very, very, very subjective, but in my experience, projects that built on AR often neglected the UI part of an application - time was wasted on creation obscure abstractions. In the end such applications wasted a lot of coders time and feel like applications from coders for coders, tech-inclined inside and outside. The coders feel good (hard work finally done, everything finished and correct, according to the concept on paper...), and the customers "just have to learn that it needs to be like that", because thats "professional".. ok, sorry, I digress ;-)</p>
<p>Well, admittedly, this all is subjective, but its my experience (Ruby on Rails excluded, it may be different, and I have zero practical experience with that approach).</p>
<p>In paid projects, I often heard the demand to start with creating some "active record" objects as a building block for the higher level application logic. In my experience, this <strong>conspicuously often</strong> was some kind of excuse for that the customer (a software dev company in most cases) did not have a good concept, a big view, an overview of what the product should finally be. Those customers think in rigid frames ("in the project ten years ago it worked well.."), they may flesh out entities, they may define entities relations, they may break down data relations and define basic application logic, but then they stop and hand it over to you, and think thats all you need... they often lack a complete concept of application logic, user interface, usability and so on and so on... they lack the big view and they lack love for the details, and they want you to follow that AR way of things, because.. well, why, it worked in that project years ago, it keeps people busy and silent? I don't know. But the "details" separate the men from the boys, or .. how was the original advertisement slogan ? ;-)</p>
<p>After many years (ten years of active development experience), whenever a customer mentions an "active record pattern", my alarm bell rings. I learned to try to get them <strong>back to that essential conceptional phase</strong>, let them think twice, try them to show their conceptional weaknesses or just avoid them at all if they are undiscerning (in the end, you know, a customer that does not yet know what it wants, maybe even thinks it knows but doesn't, or tries to externalize concept work to ME for free, costs me many precious hours, days, weeks and months of my time, live is too short ... ).</p>
<p>So, finally: THIS ALL is why I hate that silly "active record pattern", and I do and will avoid it whenever possible.</p>
<p><strong>EDIT</strong>: I would even call this a No-Pattern. It does not solve any problem (patterns are not meant to create syntactic sugar). It creates many problems: the root of all its problems (mentioned in many answers here..) is, that <strong>it just hides</strong> the good old well-developed and powerful SQL behind an interface that is by the patterns definition extremely limited.</p>
<p>This pattern replaces flexibility with syntactic sugar!</p>
<p>Think about it, which problem does AR solve for you?</p>