<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Return of the &#8220;Top 5 MySQL Wishlist&#8221; and looking at Drizzle</title>
	<atom:link href="http://www.flamingspork.com/blog/2009/10/14/return-of-the-top-5-mysql-wishlist-and-looking-at-drizzle/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flamingspork.com/blog/2009/10/14/return-of-the-top-5-mysql-wishlist-and-looking-at-drizzle/</link>
	<description>Ramblings which occasionally resemble reality. This is the blog of Stewart Smith.</description>
	<lastBuildDate>Mon, 30 Aug 2010 10:19:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Brian Aker</title>
		<link>http://www.flamingspork.com/blog/2009/10/14/return-of-the-top-5-mysql-wishlist-and-looking-at-drizzle/comment-page-1/#comment-90542</link>
		<dc:creator>Brian Aker</dc:creator>
		<pubDate>Wed, 14 Oct 2009 16:34:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.flamingspork.com/blog/?p=1738#comment-90542</guid>
		<description>@Callaghan HPUX was a mess of ifdef. I suspect a modern version of HPUX might just work, but we started with support for 10.20... and that was just too old.</description>
		<content:encoded><![CDATA[<p>@Callaghan HPUX was a mess of ifdef. I suspect a modern version of HPUX might just work, but we started with support for 10.20&#8230; and that was just too old.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Callaghan</title>
		<link>http://www.flamingspork.com/blog/2009/10/14/return-of-the-top-5-mysql-wishlist-and-looking-at-drizzle/comment-page-1/#comment-90541</link>
		<dc:creator>Mark Callaghan</dc:creator>
		<pubDate>Wed, 14 Oct 2009 15:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.flamingspork.com/blog/?p=1738#comment-90541</guid>
		<description>Was HPUX support the thing that required ifdefs to reverse the results for one or more library functions (result = !result if using HPUX)?</description>
		<content:encoded><![CDATA[<p>Was HPUX support the thing that required ifdefs to reverse the results for one or more library functions (result = !result if using HPUX)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel van Eeden</title>
		<link>http://www.flamingspork.com/blog/2009/10/14/return-of-the-top-5-mysql-wishlist-and-looking-at-drizzle/comment-page-1/#comment-90540</link>
		<dc:creator>Daniel van Eeden</dc:creator>
		<pubDate>Wed, 14 Oct 2009 14:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.flamingspork.com/blog/?p=1738#comment-90540</guid>
		<description>Hi Stewart,

Thanks for info :)
I will try to find some time and I will give it a try. It looks very promising

Regards,

Daniel</description>
		<content:encoded><![CDATA[<p>Hi Stewart,</p>
<p>Thanks for info :)<br />
I will try to find some time and I will give it a try. It looks very promising</p>
<p>Regards,</p>
<p>Daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stewart Smith</title>
		<link>http://www.flamingspork.com/blog/2009/10/14/return-of-the-top-5-mysql-wishlist-and-looking-at-drizzle/comment-page-1/#comment-90537</link>
		<dc:creator>Stewart Smith</dc:creator>
		<pubDate>Wed, 14 Oct 2009 11:41:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.flamingspork.com/blog/?p=1738#comment-90537</guid>
		<description>1. Per user and/or per database quota

Nothing yet.... although you could write a plugin that hooks into the right places that grants/denys based on usage.

2. External authentication

Already possible in Drizzle. we have a couple of plugins, including auth_pam.

3. Database locator

Something will be coming to help with sharding in libdrizzle soon. I suggest you take this to the drizzle-discuss mailing list as a request, and Eric can probably figure something out that works for both.

4. Saving extra metadata about the database.

Nothing in this direction yet. Perhaps propose something? Probably tricky to get right though... and does this really belong in the database server? Perhaps a table with foreign keys to the data dict?

5. better protection against run-away queries

Interesting idea, nothing that I&#039;m really aware of.... but I have some ideas on how to properly do this.

6. restore manager

This&#039;d be neat. Especially if we create a dump and restore tool that takes the replication protobuf format, then it should be rather easy to write such filter/ui tools in any language (e.g. python)

7. SNMP for statistics

If you know how to put SNMP on the wire, it&#039;d be easy to write a Drizzle plugin to do this. In fact, I really encourage you to!

8. SNMP for alerting

See above, very much would love to see a patch.

8. Auditing

We have a pluggable logging infrastructure, so if there isn&#039;t already, it&#039;d be trivial to write such a plugin.


hope that helps,
stewart</description>
		<content:encoded><![CDATA[<p>1. Per user and/or per database quota</p>
<p>Nothing yet&#8230;. although you could write a plugin that hooks into the right places that grants/denys based on usage.</p>
<p>2. External authentication</p>
<p>Already possible in Drizzle. we have a couple of plugins, including auth_pam.</p>
<p>3. Database locator</p>
<p>Something will be coming to help with sharding in libdrizzle soon. I suggest you take this to the drizzle-discuss mailing list as a request, and Eric can probably figure something out that works for both.</p>
<p>4. Saving extra metadata about the database.</p>
<p>Nothing in this direction yet. Perhaps propose something? Probably tricky to get right though&#8230; and does this really belong in the database server? Perhaps a table with foreign keys to the data dict?</p>
<p>5. better protection against run-away queries</p>
<p>Interesting idea, nothing that I&#8217;m really aware of&#8230;. but I have some ideas on how to properly do this.</p>
<p>6. restore manager</p>
<p>This&#8217;d be neat. Especially if we create a dump and restore tool that takes the replication protobuf format, then it should be rather easy to write such filter/ui tools in any language (e.g. python)</p>
<p>7. SNMP for statistics</p>
<p>If you know how to put SNMP on the wire, it&#8217;d be easy to write a Drizzle plugin to do this. In fact, I really encourage you to!</p>
<p>8. SNMP for alerting</p>
<p>See above, very much would love to see a patch.</p>
<p>8. Auditing</p>
<p>We have a pluggable logging infrastructure, so if there isn&#8217;t already, it&#8217;d be trivial to write such a plugin.</p>
<p>hope that helps,<br />
stewart</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel van Eeden</title>
		<link>http://www.flamingspork.com/blog/2009/10/14/return-of-the-top-5-mysql-wishlist-and-looking-at-drizzle/comment-page-1/#comment-90536</link>
		<dc:creator>Daniel van Eeden</dc:creator>
		<pubDate>Wed, 14 Oct 2009 11:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.flamingspork.com/blog/?p=1738#comment-90536</guid>
		<description>Hi,

I also mad a wishlist:
http://dveeden.livejournal.com/7769.html

If I&#039;m well informed then my second point (authentication) should be possible using drizzle. What about the other points? 

Regards,

Daniel</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I also mad a wishlist:<br />
<a href="http://dveeden.livejournal.com/7769.html">http://dveeden.livejournal.com/7769.html</a></p>
<p>If I&#8217;m well informed then my second point (authentication) should be possible using drizzle. What about the other points? </p>
<p>Regards,</p>
<p>Daniel</p>
]]></content:encoded>
	</item>
</channel>
</rss>
