1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
/*-
* Public Domain 2014-2019 MongoDB, Inc.
* Public Domain 2008-2014 WiredTiger, Inc.
*
* This is free and unencumbered software released into the public domain.
*
* Anyone is free to copy, modify, publish, use, compile, sell, or
* distribute this software, either in source code form or as a compiled
* binary, for any purpose, commercial or non-commercial, and by any
* means.
*
* In jurisdictions that recognize copyright laws, the author or authors
* of this software dedicate any and all copyright interest in the
* software to the public domain. We make this dedication for the benefit
* of the public at large and to the detriment of our heirs and
* successors. We intend this dedication to be an overt act of
* relinquishment in perpetuity of all present and future rights to this
* software under copyright law.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "test_checkpoint.h"
GLOBAL g;
static int handle_error(WT_EVENT_HANDLER *, WT_SESSION *, int, const char *);
static int handle_message(WT_EVENT_HANDLER *, WT_SESSION *, const char *);
static void onint(int) WT_GCC_FUNC_DECL_ATTRIBUTE((noreturn));
static void cleanup(bool);
static int usage(void);
static int wt_connect(const char *);
static int wt_shutdown(void);
extern int __wt_optind;
extern char *__wt_optarg;
int
main(int argc, char *argv[])
{
table_type ttype;
int ch, cnt, ret, runs;
char *working_dir;
const char *config_open;
(void)testutil_set_progname(argv);
config_open = NULL;
ret = 0;
working_dir = NULL;
ttype = MIX;
g.checkpoint_name = "WiredTigerCheckpoint";
g.debug_mode = false;
g.home = dmalloc(512);
g.nkeys = 10000;
g.nops = 100000;
g.ntables = 3;
g.nworkers = 1;
g.sweep_stress = g.use_timestamps = false;
runs = 1;
while ((ch = __wt_getopt(progname, argc, argv, "C:c:Dh:k:l:n:r:sT:t:W:x")) != EOF)
switch (ch) {
case 'c':
g.checkpoint_name = __wt_optarg;
break;
case 'C': /* wiredtiger_open config */
config_open = __wt_optarg;
break;
case 'D':
g.debug_mode = true;
break;
case 'h': /* wiredtiger_open config */
working_dir = __wt_optarg;
break;
case 'k': /* rows */
g.nkeys = (u_int)atoi(__wt_optarg);
break;
case 'l': /* log */
if ((g.logfp = fopen(__wt_optarg, "w")) == NULL) {
fprintf(stderr, "%s: %s\n", __wt_optarg, strerror(errno));
return (EXIT_FAILURE);
}
break;
case 'n': /* operations */
g.nops = (u_int)atoi(__wt_optarg);
break;
case 'r': /* runs */
runs = atoi(__wt_optarg);
break;
case 's':
g.sweep_stress = true;
break;
case 't':
switch (__wt_optarg[0]) {
case 'c':
ttype = COL;
break;
case 'l':
ttype = LSM;
break;
case 'm':
ttype = MIX;
break;
case 'r':
ttype = ROW;
break;
default:
return (usage());
}
break;
case 'T':
g.ntables = atoi(__wt_optarg);
break;
case 'W':
g.nworkers = atoi(__wt_optarg);
break;
case 'x':
g.use_timestamps = true;
break;
default:
return (usage());
}
argc -= __wt_optind;
if (argc != 0)
return (usage());
/* Clean up on signal. */
(void)signal(SIGINT, onint);
testutil_work_dir_from_path(g.home, 512, working_dir);
printf("%s: process %" PRIu64 "\n", progname, (uint64_t)getpid());
for (cnt = 1; (runs == 0 || cnt <= runs) && g.status == 0; ++cnt) {
cleanup(cnt == 1); /* Clean up previous runs */
printf(" %d: %d workers, %d tables\n", cnt, g.nworkers, g.ntables);
/* Setup a fresh set of cookies in the global array. */
if ((g.cookies = calloc((size_t)(g.ntables), sizeof(COOKIE))) == NULL) {
(void)log_print_err("No memory", ENOMEM, 1);
break;
}
g.running = 1;
if ((ret = wt_connect(config_open)) != 0) {
(void)log_print_err("Connection failed", ret, 1);
break;
}
start_checkpoints();
if ((ret = start_workers(ttype)) != 0) {
(void)log_print_err("Start workers failed", ret, 1);
break;
}
g.running = 0;
end_checkpoints();
free(g.cookies);
g.cookies = NULL;
if ((ret = wt_shutdown()) != 0) {
(void)log_print_err("Start workers failed", ret, 1);
break;
}
}
if (g.logfp != NULL)
(void)fclose(g.logfp);
/* Ensure that cleanup is done on error. */
(void)wt_shutdown();
free(g.cookies);
return (g.status);
}
#define DEBUG_MODE_CFG ",debug_mode=(eviction=true,table_logging=true)"
/*
* wt_connect --
* Configure the WiredTiger connection.
*/
static int
wt_connect(const char *config_open)
{
static WT_EVENT_HANDLER event_handler = {
handle_error, handle_message, NULL, NULL /* Close handler. */
};
int ret;
char config[512];
/*
* If we want to stress sweep, we have a lot of additional configuration settings to set.
*/
if (g.sweep_stress)
testutil_check(__wt_snprintf(config, sizeof(config),
"create,cache_cursors=false,statistics=(fast),"
"statistics_log=(json,wait=1),error_prefix=\"%s\","
"file_manager=(close_handle_minimum=1,close_idle_time=1,"
"close_scan_interval=1),log=(enabled),cache_size=1GB,"
"timing_stress_for_test=(aggressive_sweep)%s%s%s",
progname, g.debug_mode ? DEBUG_MODE_CFG : "", config_open == NULL ? "" : ",",
config_open == NULL ? "" : config_open));
else
testutil_check(__wt_snprintf(config, sizeof(config),
"create,cache_cursors=false,statistics=(fast),"
"statistics_log=(json,wait=1),error_prefix=\"%s\""
"%s%s%s",
progname, g.debug_mode ? DEBUG_MODE_CFG : "", config_open == NULL ? "" : ",",
config_open == NULL ? "" : config_open));
if ((ret = wiredtiger_open(g.home, &event_handler, config, &g.conn)) != 0)
return (log_print_err("wiredtiger_open", ret, 1));
return (0);
}
/*
* wt_shutdown --
* Shut down the WiredTiger connection.
*/
static int
wt_shutdown(void)
{
int ret;
if (g.conn == NULL)
return (0);
printf("Closing connection\n");
ret = g.conn->close(g.conn, NULL);
g.conn = NULL;
if (ret != 0)
return (log_print_err("conn.close", ret, 1));
return (0);
}
/*
* cleanup --
* Clean up from previous runs.
*/
static void
cleanup(bool remove_dir)
{
g.running = 0;
g.ntables_created = 0;
g.ts = 0;
if (remove_dir)
testutil_make_work_dir(g.home);
}
static int
handle_error(WT_EVENT_HANDLER *handler, WT_SESSION *session, int error, const char *errmsg)
{
WT_UNUSED(handler);
WT_UNUSED(session);
WT_UNUSED(error);
return (fprintf(stderr, "%s\n", errmsg) < 0 ? -1 : 0);
}
static int
handle_message(WT_EVENT_HANDLER *handler, WT_SESSION *session, const char *message)
{
WT_UNUSED(handler);
WT_UNUSED(session);
if (g.logfp != NULL)
return (fprintf(g.logfp, "%s\n", message) < 0 ? -1 : 0);
return (printf("%s\n", message) < 0 ? -1 : 0);
}
/*
* onint --
* Interrupt signal handler.
*/
static void
onint(int signo)
{
WT_UNUSED(signo);
cleanup(false);
fprintf(stderr, "\n");
exit(EXIT_FAILURE);
}
/*
* log_print_err --
* Report an error and return the error.
*/
int
log_print_err(const char *m, int e, int fatal)
{
if (fatal) {
g.running = 0;
g.status = e;
}
fprintf(stderr, "%s: %s: %s\n", progname, m, wiredtiger_strerror(e));
if (g.logfp != NULL)
fprintf(g.logfp, "%s: %s: %s\n", progname, m, wiredtiger_strerror(e));
return (e);
}
/*
* path_setup --
* Build the standard paths and shell commands we use.
*/
const char *
type_to_string(table_type type)
{
if (type == COL)
return ("COL");
if (type == LSM)
return ("LSM");
if (type == ROW)
return ("ROW");
if (type == MIX)
return ("MIX");
return ("INVALID");
}
/*
* usage --
* Display usage statement and exit failure.
*/
static int
usage(void)
{
fprintf(stderr,
"usage: %s "
"[-C wiredtiger-config] [-c checkpoint] [-h home] [-k keys]\n\t"
"[-l log] [-n ops] [-r runs] [-T table-config] [-t f|r|v]\n\t"
"[-W workers]\n",
progname);
fprintf(stderr, "%s",
"\t-C specify wiredtiger_open configuration arguments\n"
"\t-c checkpoint name to used named checkpoints\n"
"\t-h set a database home directory\n"
"\t-k set number of keys to load\n"
"\t-l specify a log file\n"
"\t-n set number of operations each thread does\n"
"\t-r set number of runs (0 for continuous)\n"
"\t-T specify a table configuration\n"
"\t-t set a file type ( col | mix | row | lsm )\n"
"\t-W set number of worker threads\n");
return (EXIT_FAILURE);
}
|