forked from wuxb45/remixdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdbtest.c
194 lines (168 loc) · 4.75 KB
/
xdbtest.c
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
/*
* Copyright (c) 2016--2021 Wu, Xingbo <[email protected]>
*
* All rights reserved. No warranty, explicit or implicit, provided.
*/
#define _GNU_SOURCE
#include "ctypes.h"
#include "lib.h"
#include "kv.h"
#include "sst.h"
#include "xdb.h"
struct xdb * xdb;
static u64 nkeys = 0;
static u64 nupdate = 0;
static u64 min_stale = 0;
static u8 * magics = NULL;
u32 nths_update = 0;
u32 nths_getscan = 0;
au64 all_seq;
au64 all_stale;
au64 all_found;
static void *
update_worker(void * const ptr)
{
(void)ptr;
srandom_u64(time_nsec());
const u64 seq = atomic_fetch_add(&all_seq, 1);
const u64 range = nkeys / nths_update;
const u64 mask = range - 1;
const u64 base = seq * range;
struct xdb_ref * const ref = remixdb_ref(xdb);
u8 ktmp[16];
u8 * const vtmp = calloc(1, 1lu << 16);
memset(vtmp, (int)random_u64(), 1lu << 16);
//printf("random update [%lu, %lu]\n", base, base+mask);
// set/del
for (u64 i = 0; i < nupdate; i++) {
const u64 r = random_u64();
const u64 k = base + ((r >> 8) & mask);
const u8 v = r & 0xff;
vtmp[0] = v;
magics[k] = v;
strhex_64(ktmp, k);
if (v == 0) { // delete
remixdb_del(ref, ktmp, 16);
} else { // update
const u32 vlen = ((i & 0x3fffu) != 0x1357u) ? (((u32)r & 0xf0) + 100) : ((((u32)r & 0xf0) << 6) + 4200);
remixdb_put(ref, ktmp, 16, vtmp, vlen);
}
}
remixdb_unref(ref);
free(vtmp);
return NULL;
}
static void *
getscan_worker(void * const ptr)
{
(void)ptr;
const u64 seq = atomic_fetch_add(&all_seq, 1);
const u64 unit = nkeys / nths_getscan + 1;
const u64 min = unit * seq;
const u64 max0 = min + unit;
const u64 max = nkeys < max0 ? nkeys : max0;
struct xdb_ref * const ref = remixdb_ref(xdb);
u8 ktmp[16];
u8 * const out = calloc(1, 1lu << 16);
u32 vlen_out = 0;
// get seq
u64 stale = 0;
for (u64 i = min; i < max; i++) {
strhex_64(ktmp, i);
const bool r = remixdb_get(ref, ktmp, 16, out, &vlen_out);
if ((r ? out[0] : 0) != magics[i])
stale++;
}
u32 klen_out;
u8 kend[16];
strhex_64(ktmp, min);
strhex_64(kend, max);
struct xdb_iter * const iter = remixdb_iter_create(ref);
remixdb_iter_seek(iter, ktmp, 16);
memset(ktmp, 0, 16);
// scan
u64 found = 0;
while (remixdb_iter_valid(iter)) {
remixdb_iter_peek(iter, ktmp, &klen_out, NULL, NULL);
debug_assert(klen_out == 16);
if (memcmp(ktmp, kend, 16) < 0) {
found++;
remixdb_iter_skip1(iter);
} else {
break;
}
}
//printf("get [%lu, %lu] stale %lu found %lu\n", min, max-1, stale, found);
atomic_fetch_add(&all_stale, stale);
atomic_fetch_add(&all_found, found);
remixdb_iter_destroy(iter);
remixdb_unref(ref);
free(out);
return NULL;
}
int
main(int argc, char** argv)
{
if (argc < 6) {
printf("Usage: <dirname> <cache-mb> <mt-mb> <data-power> <update-power> [<epochs>]\n");
printf(" WAL size = <mt-mb>*2\n");
return 0;
}
const u32 ncores = process_affinity_count();
if (ncores < 5) {
fprintf(stderr, "Need at least five cores on the cpu affinity list\n");
exit(0);
}
const u64 cachesz = a2u64(argv[2]);
const u64 mtsz = a2u64(argv[3]);
const u64 dpower = a2u64(argv[4]);
const u64 upower = a2u64(argv[5]);
xdb = remixdb_open(argv[1], cachesz, mtsz, true);
if (!xdb) {
fprintf(stderr, "xdb_open failed\n");
return 0;
}
nkeys = 1lu << dpower;
if (nkeys < 1024)
nkeys = 1024;
nupdate = 1lu << upower;
min_stale = nkeys;
magics = calloc(nkeys, 1);
nths_getscan = ncores - 4;
nths_update = ncores - 4;
while (__builtin_popcount(nths_update) > 1)
nths_update--;
printf("write threads %u check threads %u\n", nths_update, nths_getscan);
debug_assert(magics);
const u32 ne = (argc < 7) ? 1000000 : a2u32(argv[6]);
for (u32 e = 0; e < ne; e++) {
all_seq = 0;
const u64 dt = thread_fork_join(nths_update, update_worker, false, NULL);
if ((e & 0x3u) == 0x3u) { // close/open every 4 epochs
remixdb_close(xdb);
// turn on/off ckeys alternatively, very stressful.
xdb = (e & 4) ? remixdb_open(argv[1], cachesz, mtsz, (e & 8) != 0) : remixdb_open_compact(argv[1], cachesz, mtsz);
if (xdb) {
printf("reopen remixdb ok\n");
} else {
printf("reopen failed\n");
exit(0);
}
}
all_stale = 0;
all_found = 0;
all_seq = 0;
(void)thread_fork_join(nths_getscan, getscan_worker, false, NULL);
char ts[64];
time_stamp(ts, sizeof(ts));
const u64 nr = nupdate * nths_update;
printf("[%4u] %s put/del nr %lu mops %.3lf keyrange %lu keycount %lu stale %lu\n",
e, ts, nr, (double)nr / (double)dt * 1e3, nkeys, all_found, all_stale);
if (all_stale > min_stale)
debug_die();
min_stale = all_stale;
}
free(magics);
remixdb_close(xdb);
return 0;
}