Commit 04993002 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

update the release/examples closes[t:2556]

git-svn-id: file:///svn/toku/tokudb@19677 c7de825b-a66e-492c-adef-691d508d4ae1
parent 8055c4cf
/* -*- mode: C; c-basic-offset: 4 -*- */ /* -*- mode: C; c-basic-offset: 4 -*- */
#ident "Copyright (c) 2007, 2008 Tokutek Inc. All rights reserved." #ident "Copyright (c) 2007-2010 Tokutek Inc. All rights reserved."
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
// Define BDB if you want to compile this to use Berkeley DB // Define BDB if you want to compile this to use Berkeley DB
#include <stdint.h>
#include <inttypes.h> #include <inttypes.h>
#ifdef BDB #ifdef BDB
#include <db.h> #include <db.h>
...@@ -14,10 +18,8 @@ ...@@ -14,10 +18,8 @@
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include <string.h> #include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <sys/time.h>
static inline float toku_tdiff (struct timeval *a, struct timeval *b) { static inline float toku_tdiff (struct timeval *a, struct timeval *b) {
return (a->tv_sec - b->tv_sec) +1e-6*(a->tv_usec - b->tv_usec); return (a->tv_sec - b->tv_sec) +1e-6*(a->tv_usec - b->tv_usec);
......
/* -*- mode: C; c-basic-offset: 4 -*- */
#ident "Copyright (c) 2007-2010 Tokutek Inc. All rights reserved."
/* Scan the bench.tokudb/bench.db over and over. */ /* Scan the bench.tokudb/bench.db over and over. */
#define DONT_DEPRECATE_MALLOC #define DONT_DEPRECATE_MALLOC
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdint.h>
#include <inttypes.h> #include <inttypes.h>
#ifdef BDB #ifdef BDB
#include <db.h> #include <db.h>
...@@ -11,12 +18,11 @@ ...@@ -11,12 +18,11 @@
#endif #endif
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <sys/time.h>
const char *pname; const char *pname;
enum run_mode { RUN_HWC, RUN_LWC, RUN_VERIFY, RUN_HEAVI, RUN_RANGE} run_mode = RUN_HWC; enum run_mode { RUN_HWC, RUN_LWC, RUN_VERIFY, RUN_HEAVI, RUN_RANGE} run_mode = RUN_HWC;
...@@ -36,8 +42,9 @@ static int print_usage (const char *argv0) { ...@@ -36,8 +42,9 @@ static int print_usage (const char *argv0) {
fprintf(stderr, " --prelockflag pass DB_PRELOCKED to the the cursor get operation whenever the locks have been acquired\n"); fprintf(stderr, " --prelockflag pass DB_PRELOCKED to the the cursor get operation whenever the locks have been acquired\n");
fprintf(stderr, " --prelockwriteflag pass DB_PRELOCKED_WRITE to the cursor get operation\n"); fprintf(stderr, " --prelockwriteflag pass DB_PRELOCKED_WRITE to the cursor get operation\n");
fprintf(stderr, " --nox no transactions (no locking)\n"); fprintf(stderr, " --nox no transactions (no locking)\n");
fprintf(stderr, " --count <count> read the first COUNT rows and then stop.\n"); fprintf(stderr, " --count COUNT read the first COUNT rows and then stop.\n");
fprintf(stderr, " --cachesize <n> set the env cachesize to <n>\n"); fprintf(stderr, " --cachesize N set the env cachesize to N bytes\n");
fprintf(stderr, " --srandom N srandom(N)\n");
fprintf(stderr, " --env DIR put db files in DIR instead of default\n"); fprintf(stderr, " --env DIR put db files in DIR instead of default\n");
return 1; return 1;
} }
...@@ -100,6 +107,9 @@ static void parse_args (int argc, const char *argv[]) { ...@@ -100,6 +107,9 @@ static void parse_args (int argc, const char *argv[]) {
} else if (strcmp(*argv, "--experiments") == 0 && argc > 1) { } else if (strcmp(*argv, "--experiments") == 0 && argc > 1) {
argc--; argv++; argc--; argv++;
n_experiments = strtol(*argv, NULL, 10); n_experiments = strtol(*argv, NULL, 10);
} else if (strcmp(*argv, "--srandom") == 0 && argc > 1) {
argc--; argv++;
srandom(atoi(*argv));
} else { } else {
exit(print_usage(pname)); exit(print_usage(pname));
} }
...@@ -223,40 +233,68 @@ static void scanscan_lwc (void) { ...@@ -223,40 +233,68 @@ static void scanscan_lwc (void) {
static void scanscan_range (void) { static void scanscan_range (void) {
int r; int r;
double tstart = gettime();
DBC *dbc; double texperiments[n_experiments];
r = db->cursor(db, tid, &dbc, 0); assert(r==0); u_int64_t k = 0;
char kv[8];
DBT key, val;
int counter; int counter;
for (counter=0; counter<n_experiments; counter++) { for (counter = 0; counter < n_experiments; counter++) {
if (1) { //if ((counter&1) == 0) {
makekey:
// generate a random key in the key range // generate a random key in the key range
u_int64_t k = (start_range + (random() % (end_range - start_range))) * (1<<6); k = (start_range + (random() % (end_range - start_range))) * (1<<6);
char kv[8];
int i; int i;
for (i=0; i<8; i++) for (i = 0; i < 8; i++)
kv[i] = k >> (56-8*i); kv[i] = k >> (56-8*i);
DBT key; memset(&key, 0, sizeof key); key.data = &kv, key.size = sizeof kv; }
DBT val; memset(&val, 0, sizeof val); memset(&key, 0, sizeof key); key.data = &kv, key.size = sizeof kv;
memset(&val, 0, sizeof val);
double tstart = gettime();
DBC *dbc;
r = db->cursor(db, tid, &dbc, 0); assert(r==0);
// set the cursor to the random key // set the cursor to the random key
r = dbc->c_get(dbc, &key, &val, DB_SET_RANGE+lock_flag); assert(r==0); r = dbc->c_get(dbc, &key, &val, DB_SET_RANGE+lock_flag);
if (r != 0) {
assert(r == DB_NOTFOUND);
printf("%s:%d %"PRIu64"\n", __FUNCTION__, __LINE__, k);
goto makekey;
}
#if 0 #ifdef TOKUDB
long rowcounter=0; // do the range scan
while (0 == (r = dbc->c_getf_next(dbc, f_flags, counttotalbytes, &e))) { long rowcounter = 0;
struct extra_count e = {0,0};
while (limitcount > 0 && rowcounter < limitcount) {
r = dbc->c_getf_next(dbc, prelockflag ? lock_flag : 0, counttotalbytes, &e);
if (r != 0)
break;
rowcounter++; rowcounter++;
if (limitcount>0 && rowcounter>=limitcount) break;
} }
#endif #endif
}
r = dbc->c_close(dbc); r = dbc->c_close(dbc);
assert(r==0); assert(r==0);
double tend = gettime(); texperiments[counter] = gettime() - tstart;
double tdiff = tend-tstart; printf("%"PRIu64" %f\n", k, texperiments[counter]); fflush(stdout);
printf("Range %d %f\n", n_experiments, tdiff); }
// print the times
double tsum = 0.0, tmin = 0.0, tmax = 0.0;
for (counter = 0; counter < n_experiments; counter++) {
if (counter==0 || texperiments[counter] < tmin)
tmin = texperiments[counter];
if (counter==0 || texperiments[counter] > tmax)
tmax = texperiments[counter];
tsum += texperiments[counter];
}
printf("%f %f %f/%d = %f\n", tmin, tmax, tsum, n_experiments, tsum / n_experiments);
} }
#ifdef TOKUDB #ifdef TOKUDB
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment