summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/dist/test_data.py
blob: 3fedb10b5d49b51af6119ea5ee1162a40ab4c4ad (plain)
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
# This file is a python script that describes the cpp test framework test configuration options.

class Method:
    def __init__(self, config):
        # Deal with duplicates: with complex configurations (like
        # WT_SESSION::create), it's simpler to deal with duplicates once than
        # manually as configurations are defined
        self.config = []
        lastname = None
        for c in sorted(config):
            if '.' in c.name:
                raise "Bad config key '%s'" % c.name
            if c.name == lastname:
                continue
            lastname = c.name
            self.config.append(c)

class Config:
    def __init__(self, name, default, desc, subconfig=None, **flags):
        self.name = name
        self.default = default
        self.desc = desc
        self.subconfig = subconfig
        self.flags = flags

    # Comparators for sorting.
    def __eq__(self, other):
        return self.name == other.name

    def __ne__(self, other):
        return self.name != other.name

    def __lt__(self, other):
        return self.name < other.name

    def __le__(self, other):
        return self.name <= other.name

    def __gt__(self, other):
        return self.name > other.name

    def __ge__(self, other):
        return self.name >= other.name

key_config=[
    Config('key_size', 0, r'''
        The size of the keys to be created''', min=0, max=10000),
]

value_config = [
    Config('value_size', 0, r'''
        The size of the values to be created''', min=0, max=10000),
]

scale_config = [
    Config('collection_count', 1, r'''
        The number of colections the workload generator operates over''', min=0, max=200000),
    Config('key_count', 0, r'''
        The number of keys to be operated on per colection''', min=0, max=1000000),
]

load_config = key_config + value_config + scale_config

workload_config = [
    Config('read_threads', 0, r'''
        The number of threads performing read operations''', min=0, max=100),
    Config('insert_threads', 0, r'''
        The number of threads performing insert operations''',min=0, max=20),
    Config('insert_config',0, r'''
        The definition of the record being inserted''',
        subconfig=load_config),
    Config('update_threads', 0, r'''
        The number of threads performing update operations''',min=0, max=20),
    Config('update_config',0,r''',
        The definition of the record being updated''', subconfig=load_config)
]

methods = {
'poc_test' : Method(load_config + workload_config),
}