summaryrefslogtreecommitdiff
path: root/bench
Commit message (Collapse)AuthorAgeFilesLines
* Fix build warning in wtperfAlex Gorrod2013-08-201-1/+2
|
* Add option to wtperf to populate in batches.Alex Gorrod2013-08-192-3/+23
|
* Fix build failure.Alex Gorrod2013-08-161-2/+0
|
* Leave default home directory as WT_TEST so make check works.Alex Gorrod2013-08-161-1/+0
|
* Compiler warnings..Alex Gorrod2013-08-161-2/+2
|
* Fix compiler warnings.Alex Gorrod2013-08-151-9/+7
| | | | | | | | | | | | ../../../bench/wtperf/wtperf.c: In function ‘connection_reconfigure’: ../../../bench/wtperf/wtperf.c:797:18: error: conversion to ‘size_t’ from ‘long int’ may change the sign of the result [-Werror=sign-conversion] ../../../bench/wtperf/wtperf.c: In function ‘config_opt_file’: ../../../bench/wtperf/wtperf.c:1213:19: error: conversion to ‘size_t’ from ‘long int’ may change the sign of the result [-Werror=sign-conversion] ../../../bench/wtperf/wtperf.c: In function ‘config_opt_usage’: ../../../bench/wtperf/wtperf.c:1348:15: error: conversion to ‘size_t’ from ‘int’ may change the sign of the result [-Werror=sign-conversion] ../../../bench/wtperf/wtperf.c: In function ‘indent_lines’: ../../../bench/wtperf/wtperf.c:1517:16: error: conversion to ‘size_t’ from ‘long int’ may change the sign of the result [-Werror=sign-conversion] cc1: all warnings being treated as errors
* Style.Susan LoVerso2013-08-141-77/+56
|
* formatting. refs #593Don Anderson2013-08-131-3/+2
|
* formatting. refs #593Don Anderson2013-08-131-21/+9
|
* removed -v option (duplicates -o verbose=N). Fixed typo in message. refs #593Don Anderson2013-08-132-7/+3
|
* formatting fixes, typo in comment, removed redundant 'break' stmt. refs #593Don Anderson2013-08-131-4/+2
|
* alphabetize forward definitions. refs #593Don Anderson2013-08-131-6/+6
|
* added comments to describe DEF_OPT_* usage, reformatted entries. refs #593Don Anderson2013-08-131-26/+33
|
* fixed signed/unsigned and 32/64 bit compilation warnings. refs #593Don Anderson2013-08-091-8/+8
|
* Make wtperf compile without an installed WiredTiger tree.Alex Gorrod2013-08-091-0/+2
|
* Remove flagval for random, random_range implies this.Don Anderson2013-08-021-12/+25
| | | | | Expand multiline usage messages to format nicely. refs #593
* Reorder options in alphabetical order.Don Anderson2013-08-021-10/+6
| | | | | Remove flagval for random, random_range implies this. refs #593
* Added a help description to the definition of each option.Don Anderson2013-08-012-140/+116
| | | | | | Added config_opt_usage() that prints all options/default values/descriptions. Removed command line options that are available via -o/-O. refs #593
* Use -o {options} when possible, as many wtperf opts are going away. refs #593Don Anderson2013-08-011-9/+9
|
* Defined all options in wtperf_opt.i, included multiple times. refs #593Don Anderson2013-07-312-67/+109
|
* Changed -S -M -L to internally use config strings. refs #593Don Anderson2013-07-301-92/+45
|
* Change default verbose back to none. refs #593Don Anderson2013-07-301-1/+1
|
* Changed all command line arg parsing to use the standard parsing. refs #593Don Anderson2013-07-291-31/+56
|
* Added a single sample wtperf options file. refs #593Don Anderson2013-07-291-0/+21
|
* -O option should override the use of -M/-S. refs #593Don Anderson2013-07-291-3/+4
|
* Changed option parser to use the WT config parser for the guts of parsing.Don Anderson2013-07-291-49/+216
| | | | refs #593
* wtperf: added -O optionfile and -o option=value with basic parser.Don Anderson2013-07-292-22/+307
| | | | | | | | | | | | | refs #593 wtperf_ckpt.sh: added -O optionfile (passed to wtperf) and -d to run gdb. wtperf: added -O optionfile added -o option=value utility functions: config_assign(), config_free(), config_option, config_option_file(), config_option_line added to implement the above options.
* Build fixes for gcc 4.1.2.Michael Cahill2013-05-171-0/+1
|
* Build wtperf as a static binary to make profiling simpler, only log "fast" ↵Michael Cahill2013-04-242-1/+2
| | | | statistics.
* Add ability to do random inserts in workload phase of wtperf.Alex Gorrod2013-04-191-15/+55
|
* wtperf requires the math library, add a link.Keith Bostic2013-04-081-1/+1
|
* Add optional Pareto distribution random numbers to wtperf.Alex Gorrod2013-04-081-11/+47
|
* Update wtperf so the update thread works.Alex Gorrod2013-03-281-4/+6
|
* Add a RMW insert mode to wtbench. Fix build warnings:Alex Gorrod2013-03-201-5/+37
| | | | | | | | ../src/btree/rec_merge.c: In function '__merge_transfer_footprint': ../src/btree/rec_merge.c:154: warning: implicit conversion shortens 64-bit value into a 32-bit value ../src/btree/rec_merge.c:155: warning: implicit conversion shortens 64-bit value into a 32-bit value
* Make single-threaded populate in wtperf into a bulk load.Michael Cahill2013-01-171-1/+4
| | | | This isn't part of the test that we typically report, it has no bearing on LSM performance, and it cuts down the time to get results for btree by at least an hour.
* Add the ability to run wtperf without an initial populate phase.Alex Gorrod2013-01-093-11/+36
|
* Allow examples to run in parallel: give each a unique home directory.Michael Cahill2013-01-081-0/+3
| | | | closes #426
* wtperf.c:345:9: error: 'ret' may be used uninitialized in this functionMichael Cahill2013-01-031-2/+2
|
* Fix some warnings and a buffer overrun in wtperf:Michael Cahill2013-01-031-6/+6
| | | | | | wtperf.c:411: valgrind: Invalid write of size 1 wtperf.c:301:12: error: conversion to 'uint64_t' from 'int' may change the sign of the result wtperf.c:736:20: error: conversion to 'uint32_t' from 'int' may change the sign of the result
* Update copyright notice to 2013.Keith Bostic2013-01-012-2/+2
|
* Update wtperf to support insert threads in workload mode.Alex Gorrod2012-12-201-24/+127
|
* wtperf runner: add a '-R' flag to reuse the existing database tarball.Michael Cahill2012-12-171-12/+17
|
* wtperf: use the last operation name in error messages.Michael Cahill2012-12-171-1/+3
|
* Update the copyright notice so the check scripts don't complain,Keith Bostic2012-12-121-6/+33
| | | | match Python coding standards.
* Update default parameters in runner script.EC2 Default User2012-12-121-2/+2
|
* Add some scripts to help run wtperf.EC2 Default User2012-12-123-0/+124
|
* Remove bulk load from wtperf - it's ignored by LSM, and we are notAlex Gorrod2012-12-111-4/+2
| | | | loading keys in sort order.
* wtperf.c:291:6: error: 'op_ret' may be used uninitialized in this functionMichael Cahill2012-12-101-0/+1
|
* Fix a bug where we weren't releasing a btree rwlock in some paths of theAlex Gorrod2012-12-101-22/+40
| | | | | | | LSM code. Also update the wtperf code to allow for better control of output and utility operations intervals.
* Tidy and enhance output from wtperf.Alex Gorrod2012-12-071-6/+16
|