Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Restructure LSM and KVS data-sources; the top-level object is a "file:" | Keith Bostic | 2013-05-15 | 3 | -10/+23 |
| | | | | | or a "table:", KVS devices are configured on create with "source:XXX", LSM is configured on create with "type:lsm". | ||||
* | Change file_extend syntax from file_extend=(type=[data,log],size=XXX) | Keith Bostic | 2013-05-14 | 3 | -1/+9 |
| | | | | | | to file_extend=(data=XXX,log=XXX). Add period testing of file_extend to test/format. | ||||
* | Snapshots (including eviction) *should* include the last committed transaction. | Michael Cahill | 2013-05-14 | 1 | -10/+10 |
| | |||||
* | Use the allocation size for the file "desc" block. This is important for ↵ | Michael Cahill | 2013-05-09 | 1 | -3/+3 |
| | | | | direct I/O, so that reads and writes are aligned as expected. | ||||
* | Don't configure the KVS extensions unless we're using them. | Keith Bostic | 2013-05-07 | 1 | -2/+2 |
| | |||||
* | Fix a few old-style function declarations. | Keith Bostic | 2013-05-03 | 2 | -2/+2 |
| | |||||
* | Merge pull request #520 from wiredtiger/lsm_stats | agorrod | 2013-05-03 | 1 | -1/+1 |
|\ | | | | | Add more generic aggregated statistics. Used for LSM at the moment, will be expanded to other data sources in the future. | ||||
| * | Merge branch 'develop' into lsm_stats | Keith Bostic | 2013-05-02 | 1 | -0/+1 |
| |\ | |||||
| * | | As a consequence of the last set of changes, you can't get the cache-size | Keith Bostic | 2013-05-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | (which is a statistic), without configuring "statistics" when you open the database. | ||||
* | | | Don't allow test format configurations with illegal page sizes. | Alex Gorrod | 2013-05-03 | 1 | -2/+4 |
| |/ |/| | |||||
* | | Allow unquoted config values that include slashes. | Michael Cahill | 2013-05-02 | 1 | -0/+1 |
|/ | |||||
* | I'm currently doing all runs of memrata with /dev/loop0. | Keith Bostic | 2013-04-24 | 1 | -1/+1 |
| | |||||
* | Make sure two leaf pages fit in cache per thread: test/format does next/prev ↵ | Michael Cahill | 2013-04-24 | 1 | -2/+2 |
| | | | | operations. | ||||
* | Fix test/format output for automated tests: don't clear the line unless ↵ | Michael Cahill | 2013-04-24 | 1 | -2/+4 |
| | | | | we're tracking progress. | ||||
* | Fix build warning in test/format: | Alex Gorrod | 2013-04-23 | 1 | -0/+2 |
| | | | | | | | | ../../../test/format/t.c: In function ‘startup’: ../../../test/format/t.c:204: warning: implicit declaration of function ‘mkdir’ ../../../test/format/t.c:204: warning: nested extern declaration of ‘mkdir’ | ||||
* | switch to "memrata" | Keith Bostic | 2013-04-22 | 5 | -14/+14 |
| | |||||
* | Do a better job of erasing the stats output line when writing the completion | Keith Bostic | 2013-04-21 | 1 | -2/+2 |
| | | | | line. | ||||
* | Remove unnecessary include file. | Keith Bostic | 2013-04-20 | 1 | -1/+0 |
| | |||||
* | First cut at a non-transactional version of the STEC KVS shared library. | Keith Bostic | 2013-04-19 | 3 | -18/+15 |
| | |||||
* | Now that BDB KVS is a shared library, functions no longer needed. | Keith Bostic | 2013-04-19 | 1 | -2/+0 |
| | |||||
* | Berkeley DB KVS implementation can support fixed-sized column-store | Keith Bostic | 2013-04-19 | 1 | -8/+1 |
| | | | | (bitfields) now. | ||||
* | Set up the value correctly on fixed-size column store not-found returns, | Keith Bostic | 2013-04-19 | 1 | -12/+12 |
| | | | | otherwise we can drop core during the record comparison. | ||||
* | Changes to move the Berkeley DB KVS implementation out of test/format | Keith Bostic | 2013-04-18 | 5 | -890/+18 |
| | | | | | | | and loaded as a shared library. Note we're now passing the Berkeley DB library path as a command-line argument to s_dumpcmp. | ||||
* | Uninitialized ret variable. | Keith Bostic | 2013-04-18 | 1 | -1/+1 |
| | |||||
* | Use an opaque type for config arguments passed to callbacks, rather than void *. | Michael Cahill | 2013-04-18 | 1 | -12/+12 |
| | |||||
* | Minor build fixes: don't export WT_CONFIG_ITEM with SWIG, uninitialized 'ret'. | Michael Cahill | 2013-04-18 | 1 | -1/+1 |
| | |||||
* | Don't call session.verify for kvsstec at all, the error message is annoying. | Keith Bostic | 2013-04-17 | 1 | -5/+8 |
| | |||||
* | kvsstec doesn't support verify, check for EOPNOTSUPP returns. | Keith Bostic | 2013-04-17 | 1 | -1/+2 |
| | |||||
* | make it easier to load the stec code. | Keith Bostic | 2013-04-17 | 1 | -2/+6 |
| | |||||
* | flip ESET/ERET args to match WiredTiger. | Keith Bostic | 2013-04-17 | 1 | -43/+43 |
| | |||||
* | Remove WT_EXTENSION_CONFIG, export WT_CONFIG_ITEM instead. | Keith Bostic | 2013-04-17 | 1 | -13/+13 |
| | |||||
* | Rename WT_EXTENSION_API::config to be WT_EXTENSION_API::get_config. | Keith Bostic | 2013-04-17 | 1 | -5/+5 |
| | |||||
* | Replace wiredtiger_extension_api() with WT_CONNECTION.get_extension_api. | Keith Bostic | 2013-04-17 | 2 | -2/+2 |
| | | | | | Pass the wiredtiger_extension_init function a (WT_CONNECTION *) instead of a (WT_SESSION *, WT_EXTENSION_API) pair. | ||||
* | More changes to the extension API (this is only part-way there, but it | Keith Bostic | 2013-04-17 | 6 | -239/+181 |
| | | | | | | | | | | builds cleanly so I'm going to commit it). Change the extension API handle methods to take the handle as their first argument, get rid of the WT_EXTENSION_API.default_session method, instead, store a reference to the enclosing WT_CONNECTION in the extension handle. This push also includes a few changes that are part of creating a STEC data source. | ||||
* | Data source cleanup: fix some build warnings, exclude new function from the ↵ | Michael Cahill | 2013-04-12 | 1 | -0/+7 |
| | | | | Java API, allow enough space in the wiredtiger_open cfg stack for a WIREDTIGER_CONFIG environment variable. | ||||
* | Add a new method WT_EXTENSION_API::config that takes a cfg[] and returns | Keith Bostic | 2013-04-10 | 1 | -132/+95 |
| | | | | | a configuration string's value. Push that method through the KVS code in test/format. | ||||
* | Remove the wiredtiger_XXX #defines for the extension API, always use the | Keith Bostic | 2013-04-10 | 1 | -0/+2 |
| | | | | WT_EXTENSION_API handle instead. | ||||
* | whitespace fix. | Keith Bostic | 2013-04-10 | 1 | -2/+2 |
| | |||||
* | I changed an error message, update the test suite to match. | Keith Bostic | 2013-04-09 | 2 | -3/+3 |
| | |||||
* | Four words and I had a typo. Sheesh. | Keith Bostic | 2013-04-09 | 1 | -1/+1 |
| | |||||
* | Add a comment. | Keith Bostic | 2013-04-09 | 1 | -1/+1 |
| | |||||
* | Make WiredTiger extension functions available to linked-in modules via | Keith Bostic | 2013-04-09 | 6 | -58/+66 |
| | | | | | | | | | | | | a new function wiredtiger_extension_api(WT_EXTENSION_API **pp). Write some WT_EXTENSION_API documentation. Remove WT_SESSION::msg_printf, add a new msg_printf extension function instead, convert test/format to use it. Quit using __UNUSED in the extension code, use explicit (void) casting, it's cleaner. | ||||
* | lint | Keith Bostic | 2013-04-06 | 1 | -2/+2 |
| | |||||
* | Minor include file cleanup. | Keith Bostic | 2013-04-06 | 1 | -4/+1 |
| | |||||
* | Add support for the WT_CURSOR::search_near "exact" paramter -- entirely | Keith Bostic | 2013-04-06 | 1 | -120/+152 |
| | | | | | untested for now. Factor out key/value copyin/copyout code. | ||||
* | Missed one change of kvs to kvsbdb. | Keith Bostic | 2013-04-06 | 1 | -1/+1 |
| | |||||
* | Rename "kvs" to "kvsbdb" to make room for the STEC implementation. | Keith Bostic | 2013-04-06 | 6 | -18/+18 |
| | | | | | Add information about various semantics the data-source has to handle: append, overwrite, implicitly creating records, and the bitfield format. | ||||
* | KVS doesn't support fixed-length column-store, don't configure it. | Keith Bostic | 2013-04-05 | 1 | -12/+20 |
| | |||||
* | Make a value format of "[0-9]t" an error, we're not going to support | Keith Bostic | 2013-04-04 | 1 | -4/+15 |
| | | | | | | bit maps underneath here. I need to make the corresponding change in test/format not to configure fixed formats with kvs, but this should be here regardless. | ||||
* | Write some custom data source documentation based on my Berkeley DB code. | Keith Bostic | 2013-04-04 | 1 | -2/+17 |
| | | | | | Don't drop core for any uninitialized WT_DATA_SOURCE method and report a consistent "not supported" error. |