Plugins & Storage Engines Summit for MySQL/MariaDB/Drizzle 2011
Continuing the tradition of having a storage engine summit (see notes from 2010) after the O'Reilly MySQL Conference, this year it has been decided that the focus of the summit to be expanded.
Location
The Facebook Campus, 1601 S. California Ave. Palo Alto, CA 94304.
For directions, use Google Maps. However, if you're at the O'Reilly MySQL Conference, you can take the light rail from the conference center to Mountain View and then Caltrain from Mountain View to the California Ave exit and then walk 1 mile to the Facebook campus.
Date and Time
April 15 2011, from 10am - 4pm. Lunch will be served, courtesy of Facebook.
Target Audience
Developers who are writing storage engines and plugins, knowing the plugin architecture of either MySQL, the extensions in MariaDB as well as the differences in Drizzle. User defined function (UDF) writers are welcome too.
Its expanded from just an invited audience of MySQL storage engine vendors this year.
Seats are limited to twenty-four (24) attendees.
Who's Attending
If you're attending, this is the signup form! Please fill up your name, email address, company, and any other contact information you may have (like Facebook, Twitter). You will need to login to the Knowledgebase (OpenID login is available).
- Michael "Monty" Widenius, monty at askmonty dot org, Monty Program Ab
- Sergei Golubchik, serg at askmonty dot org, Monty Program Ab
- Colin Charles, colin at montyprogram dot com, Monty Program Ab, @bytebot, fb:bytebot
- Zardosht Kasheff, zardosht at gmail dot com, Tokutek
- Mark Callaghan, mdcallag at gmail dot com, Facebook
- Paul McCullagh, paul dot mccullagh at primebase dot org, PrimeBase
- Konstantin Osipov, kostja dot osipov at gmail dot com, Mail.Ru
- Oleksandr "Sanja" Byelkin, sanja at askmonty dot org, Monty Program Ab
- Bradley C. Kuszmaul, [email protected], Tokutek
- Felix Schupp, [email protected], BlackRay Data Engine, fb:fschupp
- Hartmut Holzgraefe, hartmut@php,net
- Timour Katchaounov, timour at askmonty dot org, Monty Program Ab
- praburam upendran, [email protected], scaledb
- Rich Kelm, richard at sphinxsearch dot com, Sphinx Search
- Antony T Curtis, atcurtis at gmail dot com, Blizzard Entertainment and Open Query.
- Daijiro MORI, morita at razil dot jp, Brazil Inc.
- Tasuku SUENAGA, a at razil dot jp, Brazil Inc.
- Kentoku SHIBA, kentokushiba at gmail dot com, WildGrowth
- Peter Zaitsev, peter at percona dot com, Percona
- Vadim Tkachenko, vadim at percona dot com, Percona
- Louis Fahrberger, louis.fahrberger at infobright dot com, Infobright
- Sergey Petrunya, psergey at askmonty.org, Monty Program Ab
- Serge Frezefond
- Igor Babaev, igor at askmonty.org Monty Program Ab
- Volker Oboda, PrimeBase
- Jeff Rothschild, Facebook
- Rasmus Johansson, Monty Program Ab
- Moshe Shadmon, ScaleDB
- Chip Turner, Facebook
Notes
Linking with the Storage Engine Advisory Board at Oracle
Volker Odoba - member of the storage engine advisory board at Oracle
- an explanation from Oracle as to why/if/when Oracle will take patches to extend the storage engine layer from the community
- its been mentioned that you might have to pay to be on the advisory board (i.e. you must be a customer)
- next meeting is at Oracle OpenWorld in October
- Schooner, Primebase, InnoDB, Infobright, Kickfire was there (now no longer since they do not exist)
Topics
- HBase storage engine layer to work with dynamic columns
- Discovery (Shared metadata)
- Materialised views
- Online ALTER TABLE
- Parallel replication (not SE, but a related topic)
- Group commit
- Parallel execution
- Fulltext search for every storage engine
- Cross-engine Online Backup
- Finish off server definition interface for FederatedX. Make it generic enough so that Spider can also use it.
- Pluggable data types
HBase by Chip Turner
Distributed key value store. Single index on a given table. Distributed servers each serving a row, multiple rows. Lexicographically sorted. No C API, there's a proxy API and Chip is fixing that now. Current protocol is serialized Java. Eventually each HBase server will speak Thrift. See http://wiki.apache.org/hadoop/Hbase/ThriftApi and http://incubator.apache.org/thrift/
Index Condition Pushdown and MRR are useful here.
Messages is a HBase application.
Index Condition Pushdown
- idx_cond_push()
- opt_index_condition_pushdown.cc
- EXPLAIN will say Using index condition
- Don't copy HA_NDBCLUSTER::COND_PUSH() since it is not done in a seinsble way. Much smarter implementations are possible with easy code - psergey