Home
December 2009   01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

Drizzle, my participation

Posted on 2008.07.22 at 09:15
Tags:
I am writing this blog post up on Friday morning, to post on Monday Tuesday morning at OScon.

The big news in the MySQL and the open source database worlds right now is Drizzle.

This is the "secret project" that I have occationally mentioned here. For the past few weeks, when I was done giving my PS client their daily 8 hours, I would flip VMs and start hacking on Drizzle, focusing mainly on the plugin system. I've ripped out a lot of junk and useless code, changed the plugin interface structures, converted UDFs into plugins, and am currently working on making logging and authentication into plugins.

The bzr tree is rapidly changing, and getting leaner, cleaner, better, and faster, with each passing day. The email list and the freenode IRC channel have been clear and focused.

It's been very exciting.

Comments:


Justin Swanhart
[info]swanhart at 2008-07-22 18:20 (UTC) (Link)
Can you talk a little more about converting UDFs to plugins? Last time I checked, the manual said the plugin interface only supports full text parser plugins. Am I missing something?
Mark Atwood
[info]fallenpegasus at 2008-07-22 19:27 (UTC) (Link)
MySQL 5.1 added the concept of "plugins", and had working plugin types of storage engines, information schemas, and raw/daemon code.

UDFs date back to MySQL 3, and use a completely different way to dynamically load and extend the server.

The old UDF stuff has been ripped out, and now UDFs use the newer plugin system.
Previous Entry  Next Entry