S3 storage engine ported to Drizzle
Oct. 20th, 2008 05:10 pmI've ported my AWS S3 storage engine to Drizzle.
The source is at bzr branch lp:~fallenpegasus/drizzle/awss3. Pull it and build it like you would the main Drizzle. The engine is built-in, no need to plugin load it.
Example use:
I will try to keep it tracking the main Drizzle dev tree.
The source is at bzr branch lp:~fallenpegasus/drizzle/awss3. Pull it and build it like you would the main Drizzle. The engine is built-in, no need to plugin load it.
Example use:
CREATE TABLE colors
(nam VARCHAR(32) NOT NULL PRIMARY KEY, val BLOB)
ENGINE='AWSS3'
CONNECTION='awss3 bucket_name aws_id aws_secret';
SELECT val FROM colors WHERE nam='BlueViolet';
I will try to keep it tracking the main Drizzle dev tree.