<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>zillablog</title>
    <link>http://www.xzilla.net/</link>
    <description></description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3.1 - http://www.s9y.org/</generator>
    <managingEditor>xzilla@users.sourceforge.net</managingEditor>
<webMaster>xzilla@users.sourceforge.net</webMaster>
<ttl>60</ttl>
<pubDate>Wed, 10 Mar 2010 00:39:04 GMT</pubDate>

    <image>
        <url>http://www.xzilla.net/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: zillablog - </title>
        <link>http://www.xzilla.net/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Actually, the Relational Model doesn't scale</title>
    <link>http://www.xzilla.net/blog/2010/Mar/Actually,-the-Relational-Model-doesnt-scale.html</link>
            <category>mysql</category>
            <category>postgres</category>
    
    <comments>http://www.xzilla.net/blog/2010/Mar/Actually,-the-Relational-Model-doesnt-scale.html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=481</wfw:comment>

    <slash:comments>18</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=481</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    Before all my fellow DBAs&#039; heads explode, let me just say that I am a relational guy. I like the relational model, think it&#039;s the best tool for the job, and think every programmer (not just DBA&#039;s) should aspire to be as familiar with it as they are with AJAX, MVC, or whatever other technology pattern you think is important. I&#039;ll even take that a step further; I think the NoSQL movement is mostly a re-hash of failed technologies from the last century. Object and document databases had their run in the market (some might say &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=421&amp;amp;entry_id=481&quot; title=&quot;http://www.youtube.com/watch?v=eHiX0FZcjkA&quot;  onmouseover=&quot;window.status=&#039;http://www.youtube.com/watch?v=eHiX0FZcjkA&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;&quot;they had their time&quot;&lt;/a&gt;), and they were pretty thoroughly beaten by the RDBMS; that some people have reinvented that wheel doesn&#039;t change the game. &lt;br /&gt;
&lt;br /&gt;
That said, I find the recent comments from &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=422&amp;amp;entry_id=481&quot; title=&quot;http://thoughts.j-davis.com/2010/03/07/scalability-and-the-relational-model/&quot;  onmouseover=&quot;window.status=&#039;http://thoughts.j-davis.com/2010/03/07/scalability-and-the-relational-model/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Jeff Davis on the relational model and scalability&lt;/a&gt; to be overlooking some things. The state of computing tasks has changed over the past two decades, and what we know about computer engineering has also changed. Working on highly scalable systems like we do at OmniTI, you can&#039;t escape some of the inherent problems that you face when working in these types of environments. As much as I&#039;d like the answer to every problem to be &quot;just use an RDBMS&quot;, &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=425&amp;amp;entry_id=481&quot; title=&quot;http://www.julianbrowne.com/article/viewer/brewers-cap-theorem&quot;  onmouseover=&quot;window.status=&#039;http://www.julianbrowne.com/article/viewer/brewers-cap-theorem&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Brewer&#039;s CAP theorem&lt;/a&gt; just isn&#039;t something you can ignore. &lt;br /&gt;
&lt;br /&gt;
When most people think about the relational model, they think of it in terms of parent-child relationships between tables. Without getting too deep in the details of it, I think it&#039;s pretty fair to say that Primary Keys and Foreign Keys are very large part of any relational implementation, and that pretty much all RDBMS strive to allow you to add these constraints to your model; it&#039;s what helps keep the data consistent. But there&#039;s the rub. CAP theorem points out that as we strive for tighter and tighter consistency, we are pulling away from availability, and sacrificing partition tolerance. Two theoretical systems that run smack dab into each other in the real world. This isn&#039;t really something new; if you have ever de-normalized, dropped a foreign key, or split data across multiple nodes, you&#039;ve run into this before. &lt;br /&gt;
&lt;br /&gt;
Now, where CAP theorem falls on it&#039;s face (imho) is that it also ignores another holy trinity of software development; Cheap, Fast, and Good. The size of your problem is dictated by the resources you have available; if you can afford decent tools (and let&#039;s be clear, decent is not your web dev throwing up MySQL on an EC2 instance) it is quite likely that the stressors of the relational model will never impact you in a way that most CAP folks are worried about. This is also one of the places the NoSQL movement fails; by throwing the baby out with the bath water. Giving up your data integrity before you have scalability issues is a form of premature optimization. The trick, as &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=424&amp;amp;entry_id=481&quot; title=&quot;http://omniti.com/is/theo-schlossnagle&quot;  onmouseover=&quot;window.status=&#039;http://omniti.com/is/theo-schlossnagle&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Theo&lt;/a&gt; would say, is having the experience to know when such optimizations are and aren&#039;t premature.&lt;br /&gt;
&lt;br /&gt;
So what&#039;s the take away? I like to say that you use the relational model because it is best, and you use something else because it is necessary. Most SQL implementations can scale very well, and they should be your first choice when starting a new project. But we also can&#039;t pretend that there aren&#039;t inherent problems as these systems grow larger; let&#039;s understand the trade-offs and engineer appropriately. &lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 08 Mar 2010 11:20:56 -0500</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2010/Mar/481.html</guid>
    
</item>
<item>
    <title>OmniTI is heading to PGEast 2010</title>
    <link>http://www.xzilla.net/blog/2010/Mar/OmniTI-is-heading-to-PGEast-2010.html</link>
            <category>conf</category>
            <category>pgus</category>
            <category>postgres</category>
    
    <comments>http://www.xzilla.net/blog/2010/Mar/OmniTI-is-heading-to-PGEast-2010.html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=480</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=480</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    PGEast is the premiere Postgres conference held inside the U.S. each year, and this years conference, in &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=419&amp;amp;entry_id=480&quot; title=&quot;http://www.postgresqlconference.org/east/2010/accommodations&quot;  onmouseover=&quot;window.status=&#039;http://www.postgresqlconference.org/east/2010/accommodations&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Philadelphia&lt;/a&gt;, is now less than a month away. The organization and formatting have evolved a little from previous years, but one things still continues; a very strong presentation line up. We at &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=420&amp;amp;entry_id=480&quot; title=&quot;http://www.omniti.com/&quot;  onmouseover=&quot;window.status=&#039;http://www.omniti.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;OmniTI&lt;/a&gt; are very happy to be among that group of people, with four talks in this years conference lineup; &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=413&amp;amp;entry_id=480&quot; title=&quot;http://postgresqlconference.org/2010/east/talks/know_more_waiting_a_guide_to_postgresql_9.0&quot;  onmouseover=&quot;window.status=&#039;http://postgresqlconference.org/2010/east/talks/know_more_waiting_a_guide_to_postgresql_9.0&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Know More Waiting, A Guide To PostgreSQL 9.0 by Robert Treat&lt;/a&gt; (hey, that&#039;s me), will give an overview of the upcoming PostgreSQL 9.0 release. While we&#039;re still a few months ahead of release, but we have a pretty good idea of what&#039;s coming in the next release, and this talk will help you start planning for how you will be able to take advantage of the new features coming our way.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=414&amp;amp;entry_id=480&quot; title=&quot;http://postgresqlconference.org/2010/east/talks/postgresql_meet_amqp&quot;  onmouseover=&quot;window.status=&#039;http://postgresqlconference.org/2010/east/talks/postgresql_meet_amqp&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;PostgreSQL, meet AMQP, by Theo Schlossnagle&lt;/a&gt;, looks at &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=415&amp;amp;entry_id=480&quot; title=&quot;https://labs.omniti.com/trac/pgsoltools/browser/trunk/contrib/pg_amqp&quot;  onmouseover=&quot;window.status=&#039;https://labs.omniti.com/trac/pgsoltools/browser/trunk/contrib/pg_amqp&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;pg_amqp&lt;/a&gt;, a &quot;contrib&quot; style module for Postgres that provides transaction style message queuing from inside of Postgres, using the AMQP standard. &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=416&amp;amp;entry_id=480&quot; title=&quot;http://postgresqlconference.org/2010/east/talks/yet_another_replication_tool_rubyrep&quot;  onmouseover=&quot;window.status=&#039;http://postgresqlconference.org/2010/east/talks/yet_another_replication_tool_rubyrep&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Yet Another Replication Tool : RubyRep by Denish Patel&lt;/a&gt;, will delve into one of the newer Postgres replication solutions on the block. RubyRep is design for dead simple installation and setup, while still delivering advanced features like data comparing, synchronization between servers, and even master-master replication options. &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=417&amp;amp;entry_id=480&quot; title=&quot;http://postgresqlconference.org/2010/east/talks/database_scalability_patterns&quot;  onmouseover=&quot;window.status=&#039;http://postgresqlconference.org/2010/east/talks/database_scalability_patterns&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Database Scalability Patterns by Robert Treat&lt;/a&gt; (me again), takes a look at the common patterns around scaling your database solution, and looks at some of the different options available to people scaling with Postgres. &lt;br /&gt;
&lt;br /&gt;
But wait, there&#039;s more! While we at OmniTI are definitely excited to be participating in PGEast this year, there are a number of other good talks and speakers, including Magnus Hagander, Jeff Davis, Baron Schwartz, and many others. For full talk details, check out the &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=418&amp;amp;entry_id=480&quot; title=&quot;http://www.postgresqlconference.org/2010/east/talks&quot;  onmouseover=&quot;window.status=&#039;http://www.postgresqlconference.org/2010/east/talks&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;conference talks page&lt;/a&gt;; I hope you&#039;ll journey out and say hi, it should be a pretty good time.  
    </content:encoded>

    <pubDate>Tue, 02 Mar 2010 09:09:00 -0500</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2010/Mar/480.html</guid>
    
</item>
<item>
    <title>BWPUG March 10th, Falls Church take two. </title>
    <link>http://www.xzilla.net/blog/2010/Feb/BWPUG-March-10th,-Falls-Church-take-two..html</link>
            <category>bwpug</category>
            <category>pgus</category>
            <category>postgres</category>
    
    <comments>http://www.xzilla.net/blog/2010/Feb/BWPUG-March-10th,-Falls-Church-take-two..html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=479</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=479</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    Barring a repeat of last months snowmageddon / snowpocalypse, we&#039;re going to take another stab at heading down to Falls Church, Va, for the March BWPUG meeting.  If you haven&#039;t felt like trucking out to Columbia, then please try to make this one.  Depending on response we may be able to do this more often.&lt;br /&gt;
&lt;br /&gt;
When: March 10th, 6:30PM.&lt;br /&gt;
Where: 3150 Fairview Park Dr, Falls Church, VA&lt;br /&gt;
Host: Noblis, Inc. and the&lt;br /&gt;
     Noblis Innovation and Collaboration Center (NICC)&lt;br /&gt;
&lt;br /&gt;
It&#039;s basically at 495 and 50 in Northern Virginia.  We&#039;ll be discussing the upcoming PostgreSQL 9.0 release, including a preview of my upcoming talk at PG East. &lt;br /&gt;
&lt;br /&gt;
If you&#039;re planning to attend, please RSVP to Stephen Frost via sfrost &lt;u&gt;at&lt;/u&gt; noblis.org. The host/facility we&#039;ll be meeting at does require a government issued photo ID (eg: driver&#039;s license or passport).&lt;br /&gt;
&lt;br /&gt;
Hope to see you there! 
    </content:encoded>

    <pubDate>Mon, 22 Feb 2010 21:02:39 -0500</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2010/Feb/479.html</guid>
    
</item>
<item>
    <title>MySQL, open source's version of &quot;Too Big To Fail&quot; ? </title>
    <link>http://www.xzilla.net/blog/2009/Dec/MySQL,-open-sources-version-of-Too-Big-To-Fail.html</link>
            <category>mysql</category>
    
    <comments>http://www.xzilla.net/blog/2009/Dec/MySQL,-open-sources-version-of-Too-Big-To-Fail.html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=478</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=478</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    When I was younger, I remember hearing the phrase &quot;too big to fail&quot; being used to describe very large companies in the US, often financial institutions of some type. At the time I had thought the meaning of this phrase was an indicator of size of a company, the diversity of it&#039;s business dealings, and it&#039;s financial reserves. The idea was that, as the size of the company grew, its ability to withstand a hit in any one market would increase, because other areas of the business could keep it going. Last year as the financial crisis was getting into full swing and our government was looking at bailing out companies, this phrase took on a fairly different meaning, more so referring to the idea that a company had grown so big and so well integrated into the daily economy that it&#039;s failure would be catastrophic to the larger financial ecosystem. Or as I more cynically thought of it, the company had grown so big it was able to grease politicians at every level of the system thereby ensuring its future. &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=401&amp;amp;entry_id=478&quot; title=&quot;http://en.wikipedia.org/wiki/Too_big_to_fail&quot;  onmouseover=&quot;window.status=&#039;http://en.wikipedia.org/wiki/Too_big_to_fail&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Too big to fail&lt;/a&gt; indeed. &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;&lt;a href=&quot;http://www.xzilla.net/blog/2009/Dec/MySQL,-open-sources-version-of-Too-Big-To-Fail.html#extended&quot;&gt;Continue reading &quot;MySQL, open source&#039;s version of &amp;quot;Too Big To Fail&amp;quot; ? &quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Thu, 24 Dec 2009 12:37:48 -0500</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2009/Dec/478.html</guid>
    
</item>
<item>
    <title>LISA 2009 Wrap-up</title>
    <link>http://www.xzilla.net/blog/2009/Nov/LISA-2009-Wrap-up.html</link>
            <category>bwpug</category>
            <category>conf</category>
            <category>pgus</category>
            <category>postgres</category>
    
    <comments>http://www.xzilla.net/blog/2009/Nov/LISA-2009-Wrap-up.html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=477</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=477</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    While a good portion of the Postgres community was making their way to France for &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=381&amp;amp;entry_id=477&quot; title=&quot;http://2009.pgday.eu/&quot;  onmouseover=&quot;window.status=&#039;http://2009.pgday.eu/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;PGDay Europe&lt;/a&gt;, fellow &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=382&amp;amp;entry_id=477&quot; title=&quot;http://pugs.postgresql.org/bwpug&quot;  onmouseover=&quot;window.status=&#039;http://pugs.postgresql.org/bwpug&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;BWPUG&lt;/a&gt; member Greg Smith and I were manning the home-front in Baltimore at the &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=383&amp;amp;entry_id=477&quot; title=&quot;http://www.usenix.org/events/lisa09/&quot;  onmouseover=&quot;window.status=&#039;http://www.usenix.org/events/lisa09/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;2009 Large Installation and Systems Administration&lt;/a&gt; (aka LISA) conference, held this year in Baltimore, MD. The two of us took to the exhibition floor to man a booth for the PostgreSQL project, a two-day stint that gave us plenty of face time with the LISA attendees. For me it had been three years since my last LISA conference (at my other local city, Washington, D.C.) so I was curious to see how things had changed since then. Some thoughts/notes I took while working the show floor:&lt;br /&gt;
&lt;br /&gt;
1) There were a lot of Postgres users at the show. A lot of &lt;strong&gt;happy&lt;/strong&gt; Postgres users. Compared to 3 years ago when we ran into just a few, more than half the people who stopped at the booth were already using Postgres. &lt;br /&gt;
&lt;br /&gt;
2) No one asked me &quot;so why should I use Postgres instead of MySQL&quot;. Which is not to say the topic of MySQL didn&#039;t come up, but the above question is by far the #1 question I normally hear working community booths (even got it at &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=384&amp;amp;entry_id=477&quot; title=&quot;http://en.oreilly.com/oscon2009&quot;  onmouseover=&quot;window.status=&#039;http://en.oreilly.com/oscon2009&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;OSCon&lt;/a&gt; this summer), so to not get anyone asking was quite a surprise in retrospect. I think this is probably due to two factors; first that Postgres advocacy has been working hard to make the case for Postgres and clarify the differences between the two projects, and second that we&#039;ve gotten a lot of converts over the past three years so there&#039;s much more knowledge about Postgres these days. A couple people showed there was still work to do; some glossed over differences between the projects, and one person even thought Postgres was the commercial version of MySQL; so the job of Postgres advocacy goes on. &lt;br /&gt;
&lt;br /&gt;
3) So where did they come from? Many of the people who told us they were happy Postgres users also mentioned previous database systems they had worked on.  These aren&#039;t formal numbers, but I&#039;d say the breakdown was close to 55% MySQL, 35% Oracle, and 5% Sybase and 5% MSSQL. Again rough numbers, but that seems about right.  As the LISA crowd is heavy on system administrators, the complaints were mostly that MySQL was a pain to keep running (regular corruption issues and similar problems), and Oracle just couldn&#039;t justify its cost.&lt;br /&gt;
&lt;br /&gt;
4) One person I spoke told me about a problem they had with setting up authentication. They run a university where they initially setup authentication for students via &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=385&amp;amp;entry_id=477&quot; title=&quot;http://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol&quot;  onmouseover=&quot;window.status=&#039;http://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;LDAP&lt;/a&gt; which they thought was pretty nice. They then ran into a problem because the students had to write scripts for classes, which required them to hard-code in their ldap passwords in the scripts, which were easily read by other students. They ended up solving the problem by configuring the apache server to run files as the script owner rather than the more standard &quot;nobody&quot; user, which allowed them to prevent others from seeing individual scripts. This isn&#039;t the first person I&#039;ve run into with this type of problem; I&#039;d love to see more people blogging on topics like this. &lt;br /&gt;
&lt;br /&gt;
5) Several people asked about the business model behind Postgres. Many people get stuck in the idea that every piece of open source project has a single corporate backer/owner. I&#039;ve been a big proponent of highlighting both the strength of the Postgres community and the nature of being a true Open Source project; so for me these are great questions to get to talk about, but it&#039;s something we should make sure other folks volunteering for booth duty are prepared to answer. &lt;br /&gt;
&lt;br /&gt;
Finally, I want to say a big thanks to the folks running LISA and to the crowd at large. In a conference thin on DBA&#039;s, we still managed to get a number of donations which will help with further advocacy efforts. I guess system admins are into solid database software too. &lt;img src=&quot;http://www.xzilla.net/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;  
    </content:encoded>

    <pubDate>Mon, 09 Nov 2009 00:06:00 -0500</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2009/Nov/477.html</guid>
    
</item>
<item>
    <title>Amazon Offers New RDS (aka MySQL) Service and New Database Related Virtual Machines </title>
    <link>http://www.xzilla.net/blog/2009/Oct/Amazon-Offers-New-RDS-aka-MySQL-Service-and-New-Database-Related-Virtual-Machines.html</link>
            <category>mysql</category>
            <category>postgres</category>
    
    <comments>http://www.xzilla.net/blog/2009/Oct/Amazon-Offers-New-RDS-aka-MySQL-Service-and-New-Database-Related-Virtual-Machines.html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=476</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=476</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    Amazon Web Services has announced a new service it is touting as &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=373&amp;amp;entry_id=476&quot; title=&quot;http://aws.amazon.com/rds/&quot;  onmouseover=&quot;window.status=&#039;http://aws.amazon.com/rds/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Amazon Relational Database Services&lt;/a&gt;, designed to operate the operational management side of running a relational database. To be specific, the service is built around &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=374&amp;amp;entry_id=476&quot; title=&quot;http://dev.mysql.com/downloads/&quot;  onmouseover=&quot;window.status=&#039;http://dev.mysql.com/downloads/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;MySQL&lt;/a&gt;, and as the announcement reads&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote style=&quot;padding: 1em;  background: #f3f3f0 url(http://people.planetpostgresql.org/xzilla/uploads/bgquote.png) top left no-repeat&quot;&gt;&quot;Amazon RDS provides a fully featured MySQL database, so the code, applications, and tools that you use today with your existing MySQL databases work in Amazon RDS without modification. The service automatically handles common database administration tasks, such as setup and provisioning, patch management, and backup.&quot;&lt;/blockquote&gt;&lt;br /&gt;
It is certainly an interesting offering for folks running MySQL, especially if you are managing you&#039;re own MySQL instances in Amazon&#039;s cloud infrastructure already. I didn&#039;t see anywhere where it listed the storage engines that would be available with the offering, which would be the first blocker for moving to such a service (I&#039;m guessing that it will offer both InnoDB and MyISAM, but it doesn&#039;t say)&lt;br /&gt;
&lt;br /&gt;
There are also some questions I have about how its back-up system works. It mentioned several times that backups can be done &quot;automatically&quot;, and that you can use file system snapshots to restore your database to &quot;any point in time&quot; once deployed on their service. I&#039;m a little skeptical about that, as filesystem snapshots don&#039;t necessarily just work (tm) when it comes to database backups, and &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=375&amp;amp;entry_id=476&quot; title=&quot;http://www.mysqlperformanceblog.com/2009/03/03/10-things-you-need-to-know-about-backup-solutions-for-mysql/&quot;  onmouseover=&quot;window.status=&#039;http://www.mysqlperformanceblog.com/2009/03/03/10-things-you-need-to-know-about-backup-solutions-for-mysql/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;MySQL backups are easy enough to get wrong in general&lt;/a&gt;, but it&#039;s certainly testable and would be a nice approach to solving the problem if it works.  &lt;br /&gt;
&lt;br /&gt;
The other thing worth noting is that the service doesn&#039;t offer replicated slaves, yet. From the Amazon RDS site, one of the new services they plan to offer &quot;soon&quot;:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote style=&quot;padding: 1em;  background: #f3f3f0 url(http://people.planetpostgresql.org/xzilla/uploads/bgquote.png) top left no-repeat&quot;&gt;&quot;High Availability Offering — For developers and business who want additional resilience beyond the automated backups provided by Amazon RDS at no additional charge. With the high availability offer, developers and business can easily and cost-effectively provision synchronously replicated DB Instances in multiple availability zones (AZ’s), to protect against failure within a single location.&quot;&lt;/blockquote&gt;&lt;br /&gt;
Well, that doesn&#039;t sound like MySQL replicated slaves anyway, so running multiple services might still be a manual exercise. It&#039;s actually an important detail in my book; while Amazon is talking up the ability to scale up the new RDS service, MySQL is probably the worst of the 5 major databases (Oracle, DB2, MS SQL, MySQL, Postgres) for scaling up a database instances; being designed far better for scaling out; so any tools to help with this operation are key factors to the new service for me. &lt;br /&gt;
&lt;br /&gt;
Speaking of scaling up, tucked away in the overall Amazon RDS announcement is also the announcement of new higher class EC2 instances, designed with running databases in mind. &lt;br /&gt;
&lt;br /&gt;
&lt;blockquote style=&quot;padding: 1em;  background: #f3f3f0 url(http://people.planetpostgresql.org/xzilla/uploads/bgquote.png) top left no-repeat&quot;&gt;* Double Extra Large: 34.2 GB memory, 13 ECU (4 virtual cores with 3.25 ECU each), 850 GB storage, 64-bit platform&lt;br /&gt;
* Quadruple Extra Large: 68.4 GB memory, 26 ECU (8 virtual cores with 3.25 ECU each), 1690 GB storage, 64-bit platform&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
Perhaps I&#039;m just biased by the number of large scale instances &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=380&amp;amp;entry_id=476&quot; title=&quot;http://omniti.com/does/data-management&quot;  onmouseover=&quot;window.status=&#039;http://omniti.com/does/data-management&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;we work with&lt;/a&gt;, but 32GB seems about the baseline of where I&#039;d want to start out with for my database servers, so these new instances look promising. These EC2 instances aren&#039;t tied to the RDS service, you can run Oracle, Postgres, or whatever on them. I&#039;d still like to see this scale up more (if folks running Postgres could go from the current &quot;large&quot; instance up to a 32 core, 256/512GB machine without having to get new hardware... the software could handle that and there would be no additional licensing... well that would be pretty compelling). &lt;br /&gt;
&lt;br /&gt;
Anyway, Amazon has made a pretty big move into the database space with these announcements. I&#039;m kind of curious what impact this might have on &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=379&amp;amp;entry_id=476&quot; title=&quot;http://www.microsoft.com/windowsazure/developers/sqlazure/&quot;  onmouseover=&quot;window.status=&#039;http://www.microsoft.com/windowsazure/developers/sqlazure/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Microsoft&#039;s Azure&lt;/a&gt; service actually. Anyway, I&#039;d encourage you to check out the new &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=377&amp;amp;entry_id=476&quot; title=&quot;http://aws.amazon.com/rds&quot;  onmouseover=&quot;window.status=&#039;http://aws.amazon.com/rds&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Amazon RDS site&lt;/a&gt;, and the new &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=378&amp;amp;entry_id=476&quot; title=&quot;http://aws.amazon.com/ec2&quot;  onmouseover=&quot;window.status=&#039;http://aws.amazon.com/ec2&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;EC2 instance&lt;/a&gt; information (they&#039;ve lowered some prices btw). &lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 27 Oct 2009 07:12:36 -0400</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2009/Oct/476.html</guid>
    
</item>
<item>
    <title>Denish looks at RubyRep</title>
    <link>http://www.xzilla.net/blog/2009/Aug/Denish-looks-at-RubyRep.html</link>
            <category>mysql</category>
            <category>postgres</category>
    
    <comments>http://www.xzilla.net/blog/2009/Aug/Denish-looks-at-RubyRep.html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=474</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=474</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    The &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=367&amp;amp;entry_id=474&quot; title=&quot;http://omniti.com/does/data-management&quot;  onmouseover=&quot;window.status=&#039;http://omniti.com/does/data-management&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;OmniTI database team&lt;/a&gt; is noted for managing both large and high volume systems, but also for doing this in heterogeneous database environments. Accomplishing that is not always easy, often requiring custom solutions, so we try to keep our ears to the ground and investigate new tools as they come along. When &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=368&amp;amp;entry_id=474&quot; title=&quot;http://www.rubyrep.org/&quot;  onmouseover=&quot;window.status=&#039;http://www.rubyrep.org/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;RubyRep&lt;/a&gt; was first announced, I put it on the back-burner: a multi-master replication system that can work on both mysql and postgres? Sounds pretty pie in the sky to me. Luckily &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=369&amp;amp;entry_id=474&quot; title=&quot;http://omniti.com/is/denish-patel&quot;  onmouseover=&quot;window.status=&#039;http://omniti.com/is/denish-patel&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Denish&lt;/a&gt; (one of the DBA&#039;s on our team) isn&#039;t as cynical as me, so he took it for a test drive. I have to admit that so far it looks good, enough so that I prodded him to write down some notes on it, to which we&#039;ve now gotten them up on-line. If you&#039;re into database replication solutions at all, I&#039;d encourage you to &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=370&amp;amp;entry_id=474&quot; title=&quot;http://denishjpatel.blogspot.com/2009/08/yet-another-postgresql-replication-tool.html&quot;  onmouseover=&quot;window.status=&#039;http://denishjpatel.blogspot.com/2009/08/yet-another-postgresql-replication-tool.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;take a look at RubyRep&lt;/a&gt; as well.  
    </content:encoded>

    <pubDate>Thu, 20 Aug 2009 11:23:42 -0400</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2009/Aug/474.html</guid>
    
</item>
<item>
    <title>First Issue of Open Source Database Magazine Is Out</title>
    <link>http://www.xzilla.net/blog/2009/Jul/First-Issue-of-Open-Source-Database-Magazine-Is-Out.html</link>
            <category>mysql</category>
            <category>postgres</category>
            <category>sql</category>
    
    <comments>http://www.xzilla.net/blog/2009/Jul/First-Issue-of-Open-Source-Database-Magazine-Is-Out.html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=473</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=473</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    Happy to see the first issue of the new &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=364&amp;amp;entry_id=473&quot; title=&quot;http://www.osdbzine.net&quot;  onmouseover=&quot;window.status=&#039;http://www.osdbzine.net&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Open Source Database Magazine&lt;/a&gt; &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=366&amp;amp;entry_id=473&quot; title=&quot;http://www.paragon-cs.com/wordpress/2009/07/21/first-issue-of-open-source-database-magazine-released/&quot;  onmouseover=&quot;window.status=&#039;http://www.paragon-cs.com/wordpress/2009/07/21/first-issue-of-open-source-database-magazine-released/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;has been released&lt;/a&gt;. &lt;br /&gt;
&lt;br /&gt;
For those that aren&#039;t aware, Open Source Database Magazine is a re-incarnation of the old MySQL Magazine. The open source database ecosystem has grown a lot of the last year, with the rising popularity of newish systems like Drizzle and MariaDB, the continued growth of the PostgreSQL community, the revival of old concepts like CouchDB, and the really ground breaking stuff like &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=363&amp;amp;entry_id=473&quot; title=&quot;http://dbmsmusings.blogspot.com/2009/07/announcing-release-of-hadoopdb-shorter.html&quot;  onmouseover=&quot;window.status=&#039;http://dbmsmusings.blogspot.com/2009/07/announcing-release-of-hadoopdb-shorter.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;HadoopDB&lt;/a&gt;. &lt;br /&gt;
&lt;br /&gt;
So, check out &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=364&amp;amp;entry_id=473&quot; title=&quot;http://www.osdbzine.net&quot;  onmouseover=&quot;window.status=&#039;http://www.osdbzine.net&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;the website&lt;/a&gt;, check out my article, and let the OSDBzine folks know what new stuff in Open Source Database you&#039;d like to see more about.  
    </content:encoded>

    <pubDate>Wed, 22 Jul 2009 11:08:13 -0400</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2009/Jul/473.html</guid>
    
</item>
<item>
    <title>Three Cheers for the search_path!!!</title>
    <link>http://www.xzilla.net/blog/2009/Jul/Three-Cheers-for-the-search_path!!!.html</link>
            <category>postgres</category>
    
    <comments>http://www.xzilla.net/blog/2009/Jul/Three-Cheers-for-the-search_path!!!.html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=472</wfw:comment>

    <slash:comments>11</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=472</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    Lately the search_path feature has been &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=356&amp;amp;entry_id=472&quot; title=&quot;http://petereisentraut.blogspot.com/2009/07/schema-search-paths-considered-pain-in.html&quot;  onmouseover=&quot;window.status=&#039;http://petereisentraut.blogspot.com/2009/07/schema-search-paths-considered-pain-in.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;getting a bum wrap&lt;/a&gt;. People deriding it over security concerns, usability issues, and down right lack of usefulness. Well my friends, I say don&#039;t listen to the haters! The search_path feature is a really handy tool that you can use in a lot of interesting ways. I&#039;m not just talking about making your database look like schema&#039;s don&#039;t exist (a primary argument for the feature way back in 7.3), but enabling functionality that would otherwise be somewhat of a pain. So I give you three cheers for the search_path:&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;&lt;a href=&quot;http://www.xzilla.net/blog/2009/Jul/Three-Cheers-for-the-search_path!!!.html#extended&quot;&gt;Continue reading &quot;Three Cheers for the search_path!!!&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Thu, 09 Jul 2009 09:51:00 -0400</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2009/Jul/472.html</guid>
    
</item>
<item>
    <title>Got Team?</title>
    <link>http://www.xzilla.net/blog/2009/Jun/Got-Team.html</link>
            <category>postgres</category>
    
    <comments>http://www.xzilla.net/blog/2009/Jun/Got-Team.html#comments</comments>
    <wfw:comment>http://www.xzilla.net/wfwcomment.php?cid=471</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.xzilla.net/rss.php?version=2.0&amp;type=comments&amp;cid=471</wfw:commentRss>
    

    <author>nospam@example.com (Robert Treat)</author>
    <content:encoded>
    This blog post is just a test posting for some new functionality just added to &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=355&amp;amp;entry_id=471&quot; title=&quot;http://planet.postgresql.org/&quot;  onmouseover=&quot;window.status=&#039;http://planet.postgresql.org/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;Planet PostgreSQL&lt;/a&gt;. Since it revolves around teams, I thought I&#039;d do some self promotion, or rather, team building promotion. You see, we&#039;re still &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=352&amp;amp;entry_id=471&quot; title=&quot;http://omniti.com/is/hiring/database-administrator&quot;  onmouseover=&quot;window.status=&#039;http://omniti.com/is/hiring/database-administrator&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;looking for DBA&#039;s&lt;/a&gt; here at OmniTI. Our database management practice continues to grow, and we need smart people to come work on some of the biggest systems and highest transaction loads  you can find on Postgres. We&#039;ll also make you work with things like Oracle, MySQL, Sqlite, and who knows what else, just enough to make you question your assumptions. It&#039;s not for the faint of heart, but it&#039;s certainly interesting. Sound good? See &lt;a href=&quot;http://www.xzilla.net/exit.php?url_id=352&amp;amp;entry_id=471&quot; title=&quot;http://omniti.com/is/hiring/database-administrator&quot;  onmouseover=&quot;window.status=&#039;http://omniti.com/is/hiring/database-administrator&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;the website for details&lt;/a&gt;, and who knows, maybe you&#039;ll end up on Planet Postgres as part of &quot;Team OmniTI&quot;! &lt;img src=&quot;http://www.xzilla.net/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;     
    </content:encoded>

    <pubDate>Tue, 16 Jun 2009 15:03:00 -0400</pubDate>
    <guid isPermaLink="false">http://www.xzilla.net/blog/2009/Jun/471.html</guid>
    
</item>

</channel>
</rss>