This repository was archived by the owner on Dec 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathcase.libsonnet
More file actions
78 lines (78 loc) · 1.74 KB
/
case.libsonnet
File metadata and controls
78 lines (78 loc) · 1.74 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
{
'list-append'(args={ tablecount: '7', read_lock: '"FOR UPDATE"', txn_mode: 'pessimistic' })::
[
'/bin/list-append',
'-table-count=%s' % args.tablecount,
'-read-lock=%s' % args.read_lock,
'-txn-mode=%s' % args.txn_mode,
],
'rw-register'(args={ tablecount: '7', read_lock: '"FOR UPDATE"', txn_mode: 'pessimistic' })::
[
'/bin/rw-register',
'-table-count=%s' % args.tablecount,
'-read-lock=%s' % args.read_lock,
'-txn-mode=%s' % args.txn_mode,
],
ledger(args={})::
[
'/bin/ledger',
],
rawkv_linearizability(args={})::
[
'/bin/rawkv-linearizability',
],
region_available(args={})::
[
'/bin/region-available',
],
bank(args={})::
[
'/bin/bank',
],
'bank2'(args={ concurrency: '200', accounts: '1000000', tidb_replica_read: 'leader-and-follower' })::
[
'/bin/bank2',
'-concurrency=%s' % args.concurrency,
'-accounts=%s' % args.accounts,
'-tidb-replica-read=%s' % args.tidb_replica_read,
],
sqllogic(args={})::
[
'/bin/sqllogic',
],
tpcc(args={})::
[
'/bin/tpcc',
],
txn_rand_pessimistic(args={})::
[
'/bin/txn-rand-pessimistic',
],
vbank(args={ connParams: '' })::
[
'/bin/vbank',
'-conn_params=%s' % args.connParams,
],
crossregion(args={ tso_request_count: '2000' })::
[
'/bin/cross-region',
'-tso-request-count=%s' % args.tso_request_count,
],
'example'(args={})::
[
'/bin/example',
],
'block-writer'(args={})::
[
'/bin/block-writer',
],
'ttl'(args={})::
[
'/bin/tll',
],
'dynamicprivs'(args={})::
[
'/bin/dynamicprivs',
],
// +tipocket:scaffold:case_decls
}