This repository was archived by the owner on Oct 4, 2021. It is now read-only.
forked from xtreemfs/xtreemfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanual_config.py
82 lines (79 loc) · 2.92 KB
/
manual_config.py
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
# Copyright (c) 2009-2011 by Bjoern Kolbeck, Zuse Institute Berlin
# Licensed under the BSD License, see LICENSE file for details.
TestSets = {
# This configuration is used for manual test environment set-ups (option -e).
'manual' : {
'ssl': False,
'mrc_repl': False,
'dir_repl': False,
'snmp': True,
},
# This configuration is used for manual test environment set-ups with SSL enabled (option -f).
'manual-ssl' : {
'ssl': True,
'mrc_repl': False,
'dir_repl': False,
'snmp': True,
},
}
VolumeConfigs = {
'regular' : {
'stripe_size': 128,
'stripe_width': 1,
'rwr_factor': 0,
'ronly_factor': 0,
'min_osds': 3,
'mount_options': [ '-ouser_xattr' ],
'mkfs_options': [ '--max-tries=10' ]
},
'nomdcache' : {
'stripe_size': 128,
'stripe_width': 1,
'rwr_factor': 0,
'ronly_factor': 0,
'mount_options': [ '--metadata-cache-size=0', '-ouser_xattr' ],
'mkfs_options': [ '--max-tries=10' ]
},
'directio' : {
'stripe_size': 128,
'stripe_width': 1,
'rwr_factor': 0,
'ronly_factor': 0,
'mount_options': [ '-odirect_io' ],
'mkfs_options': [ '--max-tries=10']
},
'striped2' : {
'stripe_size': 128,
'stripe_width': 2,
'rwr_factor': 0,
'ronly_factor': 0,
'mount_options': [ ],
'mkfs_options': [ '--max-tries=10']
},
'replicated_wqrq' : {
'stripe_size': 128,
'stripe_width': 1,
'rwr_factor': 3,
'ronly_factor': 0,
'mount_options': [ ],
'mkfs_options': [ '--max-tries=10']
},
'replicated_wqrq_asyncwrites' : {
'stripe_size': 128,
'stripe_width': 1,
'rwr_factor': 3,
'ronly_factor': 0,
'mount_options': [ '--enable-async-writes' ],
'mkfs_options': [ '--max-tries=10']
},
'replicated_war1' : {
'stripe_size': 128,
'stripe_width': 1,
'rwr_policy': 'all',
'rwr_factor': 2,
'ronly_factor': 0,
'mount_options': [ '--max-tries=240', '--max-read-tries=240', '--max-write-tries=240' ],
'mkfs_options': [ '--max-tries=10']
},
}
Tests = [ ]