|
[
Permlink
| « Hide
]
Rick Hillegas added a comment - 11/Jun/07 01:04 PM
Thanks, Knut. This is a very exciting approach. I noticed that you haven't granted to the ASF a license on your patch. Could you re-attach your patch and check the box which grants a license to ASF?
Same patch, but granting for ASF inclusion
The practice is: enhancements don't get a fix-in until changes go in...
If this is inteded for the 10.2 branch, then fix-in will most likely be 10.2.2.1... Cleaned up the code and made it work with Derby 10.3.1.0 (unofficial). I also did a simple benchmarks for select and update (with durability=test) on Wisconsin testdata with Java 6.0. Hardware is P4 2.8 GHz with HT running linux.
The patch is for the unofficial 10.3.1.0 release. I have patched this version of Derby and i cant see any difference to the unpatched version.
I thought that this Version would run derby out of memory, so there are no writtings and readings to disk, but when i try this version there is still access to harddisk (when ever i put something into a table) I dont know much about how databases work, but with every insert command the derby db writtes to the log1.dat file in the database folder. Is this logging an feature, which can be de-activated or is this access a necessary function. So can this access been switched off, so nothing would be written to hard-disk or is this impossible. I thought of a database, that works 100% in virtual memory and writtes the datas in interval-times to harddisk. Is this possible. If you know some manuals which would help me in this matter, i would be very thankful. To use MemStore you must create tables with prefix "mem_", ie mem_mytable. This tells the SQL-layer to create MemHeap- and MemSkiplist-conglomerates (tables/indexes). Eventually this should be done via CREATE TABLE options. I have also only tested with the primary key as the first column.
You can deactivate logging by setting derby.system.durability=test in derby.properties. Thanks for pointing out the missing config in modules.properties when building jars. (cloudscape.config.memstore=all on line 300) It is correct that MemStore uses more memory, about 50-70% more. Also keep in mind that this is experimental code with limited functionality. This issue has shown up in the 'patch available'-filter for some time now. It does not seem like anyone is willing to commit the patch in its present form, and nobody seem to be actively working on a new version, so I am removing the
'patch available' flag. Can this be duped to DERBY-646 or is this something different?
This is something else.
Implementing what is suggested here would most likely require a lot more effort than implementing DERBY-646. For instance, it includes a new (to Derby) access method which is better suited for in-memory data than the BTree is. I believe implementing this would open up for significantly better performance than the current in-memory back end. Two possible next steps: a) Describe the current state of the patch; what works, what doesn't? b) Investigate how much of Derby must be rewritten for a proper implementation. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||