-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbtest1.c
More file actions
408 lines (371 loc) · 11.3 KB
/
dbtest1.c
File metadata and controls
408 lines (371 loc) · 11.3 KB
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/*
* Copyright (c) 2016--2021 Wu, Xingbo <wuxb45@gmail.com>
*
* All rights reserved. No warranty, explicit or implicit, provided.
*/
#define _GNU_SOURCE
#include "lib.h"
#include "kv.h"
struct priv {
void * ref;
u32 klen;
union {
u32 vlen;
u32 nscan;
};
struct kv * tmp;
struct kv * out;
};
#define XSA ((0)) // Set-All
#define XSS ((1)) // Set-Success
#define XDA ((2))
#define XDS ((3))
#define XGA ((4))
#define XGS ((5))
#define XPA ((6))
#define XPS ((7))
#define XNA ((8))
#define XNS ((9))
#define XKA ((10))
#define XKS ((11))
#define VCTRSZ ((12))
static bool
kvmap_analyze(void * const passdata[2], const u64 dt, const struct vctr * const va, struct damp * const d, char * const out)
{
(void)passdata;
size_t v[VCTRSZ];
for (u64 i = 0; i < VCTRSZ; i++)
v[i] = vctr_get(va, i);
const u64 nrop = v[XSA] + v[XDA] + v[XGA] + v[XPA] + v[XNA] + v[XKA];
const double mops = ((double)nrop) * 1e3 / ((double)dt);
const bool done = damp_add_test(d, mops);
char buf[64];
if (v[XSA]) {
sprintf(buf, " set %zu %zu", v[XSA], v[XSS]);
} else if (v[XDA]) {
sprintf(buf, " del %zu %zu", v[XDA], v[XDS]);
} else if (v[XGA]) {
sprintf(buf, " get %zu %zu", v[XGA], v[XGS]);
} else if (v[XPA]) {
sprintf(buf, " pro %zu %zu", v[XPA], v[XPS]);
} else if (v[XNA]) {
sprintf(buf, " seeknext %zu %zu", v[XNA], v[XNS]);
} else if (v[XKA]) {
sprintf(buf, " seekskip %zu %zu", v[XKA], v[XKS]);
} else {
buf[0] = '\0';
}
sprintf(out, "%s mops %.4lf avg %.4lf ravg %.4lf\n", buf, mops, damp_avg(d), damp_ravg(d));
return done;
}
static void
kvmap_batch_nop(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
(void)info;
(void)priv;
for (u64 i = 0; i < nr; i++)
cpu_pause();
}
// (parallel) load
static void
kvmap_batch_put_par(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
if (info->end_type != FORKER_END_COUNT)
return;
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
struct kv * const tmp = priv->tmp;
const u64 nr1 = nr / info->conc;
const u64 id0 = nr1 * info->worker_id;
const u64 end = (info->worker_id == (info->conc - 1)) ? nr : (id0 + nr1);
u64 ss = 0;
for (u64 i = id0; i < end; i++) {
kv_refill_hex64_klen(tmp, i, priv->klen, NULL, 0);
tmp->vlen = priv->vlen;
if (kvmap_kv_put(api, ref, tmp))
ss++;
}
vctr_add(info->vctr, XSA, end - id0);
vctr_add(info->vctr, XSS, ss);
}
// (parallel) probe
static void
kvmap_batch_probe_par(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
if (info->end_type != FORKER_END_COUNT)
return;
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
struct kv * const tmp = priv->tmp;
const u64 nr1 = nr / info->conc;
const u64 id0 = nr1 * info->worker_id;
const u64 end = (info->worker_id == (info->conc - 1)) ? nr : (id0 + nr1);
u64 ss = 0;
for (u64 i = id0; i < end; i++) {
kv_refill_hex64_klen(tmp, i, priv->klen, NULL, 0);
if (kvmap_kv_probe(api, ref, tmp))
ss++;
}
vctr_add(info->vctr, XPA, end - id0);
vctr_add(info->vctr, XPS, ss);
}
// (parallel) get
static void
kvmap_batch_get_par(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
if (info->end_type != FORKER_END_COUNT)
return;
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
struct kv * const tmp = priv->tmp;
const u64 nr1 = nr / info->conc;
const u64 id0 = nr1 * info->worker_id;
const u64 end = (info->worker_id == (info->conc - 1)) ? nr : (id0 + nr1);
u64 ss = 0;
for (u64 i = id0; i < end; i++) {
kv_refill_hex64_klen(tmp, i, priv->klen, NULL, 0);
if (kvmap_kv_get(api, ref, tmp, priv->out))
ss++;
}
vctr_add(info->vctr, XGA, end - id0);
vctr_add(info->vctr, XGS, ss);
}
// (parallel) del
static void
kvmap_batch_del_par(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
if (info->end_type != FORKER_END_COUNT)
return;
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
struct kv * const tmp = priv->tmp;
const u64 nr1 = nr / info->conc;
const u64 id0 = nr1 * info->worker_id;
const u64 end = (info->worker_id == (info->conc - 1)) ? nr : (id0 + nr1);
u64 ss = 0;
for (u64 i = id0; i < end; i++) {
kv_refill_hex64_klen(tmp, i, priv->klen, NULL, 0);
if (kvmap_kv_del(api, ref, tmp))
ss++;
}
vctr_add(info->vctr, XDA, end - id0);
vctr_add(info->vctr, XDS, ss);
}
static void
kvmap_batch_put(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
struct rgen * const gen = info->gen;
rgen_next_func next = info->rgen_next_write;
struct kv * const tmp = priv->tmp;
u64 ss = 0lu;
for (u64 i = 0; i < nr; i++) {
kv_refill_hex64_klen(tmp, next(gen), priv->klen, NULL, 0);
tmp->vlen = priv->vlen;
if (kvmap_kv_put(api, ref, tmp))
ss++;
}
vctr_add(info->vctr, XSA, nr);
vctr_add(info->vctr, XSS, ss);
}
static void
kvmap_batch_del(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
struct rgen * const gen = info->gen;
rgen_next_func next = info->rgen_next_write;
struct kv * const tmp = priv->tmp;
u64 ss = 0lu;
for (u64 i = 0; i < nr; i++) {
kv_refill_hex64_klen(tmp, next(gen), priv->klen, NULL, 0);
if (kvmap_kv_del(api, ref, tmp))
ss++;
}
vctr_add(info->vctr, XDA, nr);
vctr_add(info->vctr, XDS, ss);
}
static void
kvmap_batch_get(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
struct rgen * const gen = info->gen;
rgen_next_func next = info->rgen_next;
struct kv * const tmp = priv->tmp;
u64 ss = 0lu;
for (u64 i = 0; i < nr; i++) {
kv_refill_hex64_klen(tmp, next(gen), priv->klen, NULL, 0);
if (kvmap_kv_get(api, ref, tmp, priv->out))
ss++;
}
vctr_add(info->vctr, XGA, nr);
vctr_add(info->vctr, XGS, ss);
}
static void
kvmap_batch_probe(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
struct rgen * const gen = info->gen;
rgen_next_func next = info->rgen_next;
struct kv * const tmp = priv->tmp;
u64 ss = 0lu;
for (u64 i = 0; i < nr; i++) {
kv_refill_hex64_klen(tmp, next(gen), priv->klen, NULL, 0);
if (kvmap_kv_probe(api, ref, tmp))
ss++;
}
vctr_add(info->vctr, XPA, nr);
vctr_add(info->vctr, XPS, ss);
}
static void
kvmap_batch_seek_next(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
void * const iter = api->iter_create(ref);
const u32 nscan = priv->nscan;
debug_assert(iter);
struct rgen * const gen = info->gen;
rgen_next_func next = info->rgen_next;
u64 ss = 0lu;
for (u64 i = 0; i < nr; i++) {
kv_refill_hex64_klen(priv->tmp, next(gen), priv->klen, NULL, 0);
kvmap_kv_iter_seek(api, iter, priv->tmp);
for (u32 j = 0; j < nscan; j++)
api->iter_next(iter, priv->out);
if (api->iter_valid(iter))
ss++;
}
vctr_add(info->vctr, XNA, nr);
vctr_add(info->vctr, XNS, ss);
api->iter_destroy(iter);
}
static void
kvmap_batch_seek_skip(const struct forker_worker_info * const info,
const struct priv * const priv, const u64 nr)
{
const struct kvmap_api * const api = info->passdata[0];
void * const ref = priv->ref;
void * const iter = api->iter_create(ref);
const u32 nscan = priv->nscan;
debug_assert(iter);
struct rgen * const gen = info->gen;
rgen_next_func next = info->rgen_next;
u64 ss = 0lu;
for (u64 i = 0; i < nr; i++) {
kv_refill_hex64_klen(priv->tmp, next(gen), priv->klen, NULL, 0);
kvmap_kv_iter_seek(api, iter, priv->tmp);
api->iter_skip(iter, nscan);
if (api->iter_peek(iter, priv->out))
ss++;
}
vctr_add(info->vctr, XKA, nr);
vctr_add(info->vctr, XKS, ss);
api->iter_destroy(iter);
}
static void *
kvmap_worker(void * const ptr)
{
struct forker_worker_info * const info = (typeof(info))ptr;
srandom_u64(info->seed);
const char op = info->argv[0][0];
typeof(kvmap_batch_probe) * batch_func = NULL;
switch (op) {
case 's': batch_func = kvmap_batch_put; break;
case 'd': batch_func = kvmap_batch_del; break;
case 'p': batch_func = kvmap_batch_probe; break;
case 'g': batch_func = kvmap_batch_get; break;
case 'n': batch_func = kvmap_batch_seek_next; break;
case 'k': batch_func = kvmap_batch_seek_skip; break;
case 'S': batch_func = kvmap_batch_put_par; break;
case 'D': batch_func = kvmap_batch_del_par; break;
case 'P': batch_func = kvmap_batch_probe_par; break;
case 'G': batch_func = kvmap_batch_get_par; break;
default: batch_func = kvmap_batch_nop; break;
}
struct priv p;
p.klen = a2u32(info->argv[1]);
p.vlen = a2u32(info->argv[2]); // vlen/nscan
const struct kvmap_api * const api = info->passdata[0];
p.ref = kvmap_ref(api, info->passdata[1]);
const u64 outlen = sizeof(struct kv) + p.klen + p.vlen + 4096;
p.tmp = yalloc(outlen);
debug_assert(p.tmp);
memset(p.tmp, 0, outlen);
p.out = yalloc(outlen);
debug_assert(p.out);
if (info->end_type == FORKER_END_TIME) {
do {
batch_func(info, &p, 1lu << 14); // batch size
} while (time_nsec() < info->end_magic);
} else if (info->end_type == FORKER_END_COUNT) {
batch_func(info, &p, info->end_magic);
}
kvmap_unref(api, p.ref);
free(p.out);
free(p.tmp);
return NULL;
}
#define NARGS ((3))
static void
dbtest_help_message(void)
{
fprintf(stderr, "%s Usage: {api ... {rgen ... {pass ...}}}\n", __func__);
kvmap_api_helper_message();
forker_passes_message();
fprintf(stderr, "%s dbtest wargs[%d]: <sdgpnkSDGP> <klen> <vlen/nscan>\n", __func__, NARGS);
fprintf(stderr, "%s s:set d:del g:get p:probe n:seeknext k:seekskip\n", __func__);
fprintf(stderr, "%s S:set D:del G:get P:probe (auto-parallel: magic-type=1; magic=nr_kvs; rgen ignored)\n", __func__);
}
static int
test_kvmap(const int argc, char ** const argv)
{
const struct kvmap_api * api = NULL;
void * map = NULL;
const int n1 = kvmap_api_helper(argc, argv, NULL, &api, &map);
if (n1 < 0)
return n1;
char *pref[64] = {};
memcpy(pref, argv, sizeof(pref[0]) * (size_t)n1);
pref[n1] = NULL;
struct pass_info pi = {};
pi.passdata[0] = (void *)api;
pi.passdata[1] = map;
pi.vctr_size = VCTRSZ;
pi.wf = kvmap_worker;
pi.af = kvmap_analyze;
const int n2 = forker_passes(argc - n1, argv + n1, pref, &pi, NARGS);
if (api->fprint)
api->fprint(map, stderr);
api->destroy(map);
if (n2 < 0) {
return n2;
} else {
return n1 + n2;
}
}
int
main(int argc, char ** argv)
{
if (argc < 3) {
dbtest_help_message();
exit(0);
}
const bool r = forker_main(argc - 1, argv + 1, test_kvmap);
if (r == false)
dbtest_help_message();
return 0;
}