Show HN: I built a MySQL storage engine which is InnoDB compatible
1–10 of 32 posts
Re: Show HN: I built a MySQL storage engine which is InnoDB compatible
#2Re: Show HN: I built a MySQL storage engine which is InnoDB compatible
#3This looks pretty sexy. Are there atomicity guarantees?
Re: Show HN: I built a MySQL storage engine which is InnoDB compatible
#4This looks pretty sexy. Are there atomicity guarantees?
BEGIN/COMMIT is not yet supported. But that's on my TODO list.
What does "100% compatible to InnoDB" mean here? It's not functionally compatible and it's not disk-file-format compatible.
Re: Show HN: I built a MySQL storage engine which is InnoDB compatible
#5I don't know anyone who chooses InnoDB and says "gee I wish it were faster". While it isn't the fastest show in town, it is a known quantity, and how it breaks is well understood.
So if I was going to use a different storage engine, would want something more than its a bit faster, in some cases.
Having said that, what a wonderful amount of work, and don't stop hacking on it!
Re: Show HN: I built a MySQL storage engine which is InnoDB compatible
#6Re: Show HN: I built a MySQL storage engine which is InnoDB compatible
#7Earlier quoted context omitted.
BEGIN/COMMIT is not yet supported. But that's on my TODO list.
Ulp. The whole point of the InnoDB engine is that it supports atomic transactions, even over crashes. If you want an unsafe table, there's the ISAM engine, which is faster. What does "100% compatible to InnoDB" mean here? It's not functionally compatible and it's not disk-file-format compatible.
Re: Show HN: I built a MySQL storage engine which is InnoDB compatible
#8Stopped reading after no transactions. Theory question: musn't transactions reduce necessarily performance?
upscaledb does use transactions. I.e. if you insert a row with a primary and a secondary index then upscaledb inserts two key/value pairs in two databases. All these operations are wrapped in Transactions. They are just not yet supported on SQL level.
Re: Show HN: I built a MySQL storage engine which is InnoDB compatible
#9Performance is great, but what is more interesting is maintaining that performance in the midst of failures and things going wrong. I don't know anyone who chooses InnoDB and says "gee I wish it were faster". While it isn't the fastest show in town, it is a known quantity, and how it breaks is well understood. So if I was going to use a different storage engine, would want something more than its a bit faster, in som…
Re: Show HN: I built a MySQL storage engine which is InnoDB compatible
#10Performance is great, but what is more interesting is maintaining that performance in the midst of failures and things going wrong. I don't know anyone who chooses InnoDB and says "gee I wish it were faster". While it isn't the fastest show in town, it is a known quantity, and how it breaks is well understood. So if I was going to use a different storage engine, would want something more than its a bit faster, in som…
The most recent break I encountered was ibtmp1 exploding to 100's of GB and killing the box with InnoDB, so I'm not sure "how it breaks is well understood".
Never got to the bottom of it either.